@charset "utf-8";
/* CSS Document */

:root {
      --primary: #0b2341;
      --secondary: #ff8a00;
      --accent: #24b6d9;
      --light: #f5f7fb;
      --dark: #081421;
      --muted: #6f7d8c;
      --white: #ffffff;
      --card-shadow: 0 18px 45px rgba(8, 20, 33, 0.08);
      --radius-lg: 28px;
      --radius-md: 18px;
      --radius-sm: 12px;
    }

    * { box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: #fff;
      line-height: 1.7;
    }

    a { text-decoration: none; }
    img { max-width: 100%; display: block; }
    .text-orange { color: var(--secondary); }
    .text-muted-custom { color: var(--muted); }
    .bg-light-custom { background: var(--light); }
    .section-padding { padding: 100px 0; }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 18px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 16px;
    }
    .eyebrow::before {
      content: "";
      width: 36px;
      height: 2px;
      background: var(--secondary);
      display: inline-block;
    }

    .btn-theme {
      background: linear-gradient(90deg, var(--secondary), #ff9f2f);
      border: none;
      color: #fff;
      padding: 14px 28px;
      font-weight: 700;
      border-radius: 999px;
      box-shadow: 0 12px 24px rgba(255, 138, 0, 0.25);
      transition: 0.3s ease;
    }
    .btn-theme:hover { transform: translateY(-2px); color: #fff; }
    .btn-outline-theme {
      border: 2px solid rgba(255,255,255,0.4);
      color: #fff;
      padding: 12px 26px;
      border-radius: 999px;
      font-weight: 700;
    }
    .btn-outline-theme:hover {
      background: #fff;
      color: var(--primary);
    }

    .topbar {
      background: var(--primary);
      color: rgba(255,255,255,0.88);
      font-size: 0.92rem;
      padding: 10px 0;
    }
    .topbar i { color: var(--secondary); }

    .navbar {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(10px);
      box-shadow: 0 12px 34px rgba(0,0,0,0.05);
    }
    .navbar-brand {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--primary) !important;
    }
    .navbar-brand span { color: var(--secondary); }
    .nav-link {
      color: var(--primary);
      font-weight: 600;
      margin: 0 8px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(8,20,33,0.92) 0%, rgba(8,20,33,0.78) 42%, rgba(8,20,33,0.22) 100%),
        url('img/air-duct-cleaning-irving-tx.webp') center top/cover no-repeat;
      min-height: 780px;
      display: flex;
      align-items: center;
      color: #fff;
    }
    .hero::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -80px;
      width: 280px;
      height: 280px;
      background: rgba(255, 138, 0, 0.12);
      border-radius: 50%;
      filter: blur(10px);
    }
    .hero-card {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(16px);
      border-radius: var(--radius-lg);
      padding: 22px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,138,0,0.14);
      border: 1px solid rgba(255,138,0,0.32);
      color: #fff;
      padding: 10px 16px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-size: clamp(2.7rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1.05;
      margin-bottom: 18px;
      max-width: 700px;
    }
    .hero p {
      max-width: 620px;
      font-size: 1.08rem;
      color: rgba(255,255,255,0.86);
      margin-bottom: 32px;
    }
    .hero-stats {
      margin-top: 36px;
    }
    .stat-box {
      background: #fff;
      border-radius: 22px;
      padding: 24px 20px;
      box-shadow: var(--card-shadow);
      height: 100%;
      text-align: center;
    }
    .stat-box h3 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .contact-strip {
      margin-top: -60px;
      position: relative;
      z-index: 4;
    }
    .contact-pill {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
    }
    .contact-pill .left,
    .contact-pill .right {
      padding: 28px 32px;
    }
    .contact-pill .left {
      background: linear-gradient(135deg, #121826, #222a3c);
      color: #fff;
    }
    .contact-pill .right {
      background: linear-gradient(135deg, var(--secondary), #ffaf4d);
      color: #fff;
    }

    .about-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .about-img-grid img {
      border-radius: 22px;
      height: 100%;
      min-height: 350px;
      object-fit: cover;
      box-shadow: var(--card-shadow);
    }

    .feature-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: var(--card-shadow);
      padding: 26px;
      height: 100%;
      transition: 0.3s ease;
    }
    .feature-card:hover { transform: translateY(-8px); }
    .feature-icon {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(255, 138, 0, 0.12);
      color: var(--secondary);
      font-size: 1.4rem;
      margin-bottom: 18px;
    }

    .service-panel {
      border-radius: 30px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      margin-bottom: 28px;
    }
    .service-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 520px;
    }
    .service-content {
      padding: 42px;
      height: 100%;
    }
    .service-content h3 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .service-list {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
    }
    .service-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
    }
    .service-list i {
      color: var(--secondary);
      margin-top: 4px;
    }

    .service-blue { background: linear-gradient(135deg, #eef5ff, #ffffff); }
    .service-orange { background: linear-gradient(135deg, #fff4e8, #ffffff); }
    .service-cyan { background: linear-gradient(135deg, #eafcff, #ffffff); }
    .service-dark { background: linear-gradient(135deg, #0a1f39, #122948); color: #fff; }
    .service-dark .service-list i,
    .service-dark .eyebrow,
    .service-dark .text-muted-custom { color: #ffd08a !important; }
    .service-green { background: linear-gradient(135deg, #edfff9, #ffffff); }
    .service-slate { background: linear-gradient(135deg, #f2f5f9, #ffffff); }

    .coupon-section {
      background: linear-gradient(135deg, var(--primary) 0%, #112c4f 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .coupon-section::before,
    .coupon-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    .coupon-section::before {
      width: 280px; height: 280px; top: -100px; left: -80px;
    }
    .coupon-section::after {
      width: 220px; height: 220px; bottom: -80px; right: -60px;
    }
    .coupon-card {
      position: relative;
      background: #fff;
      color: var(--dark);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 25px 70px rgba(0,0,0,0.18);
      height: 100%;
    }
    .coupon-top {
      background: linear-gradient(90deg, var(--secondary), #ffb247);
      color: #fff;
      padding: 18px 24px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .coupon-body {
      padding: 32px 28px;
      position: relative;
    }
    .coupon-price {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }
    .coupon-body::before,
    .coupon-body::after {
      content: "";
      position: absolute;
      width: 44px;
      height: 44px;
      background: var(--primary);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
    }
    .coupon-body::before { left: -22px; }
    .coupon-body::after { right: -22px; }
    .coupon-code {
      display: inline-block;
      padding: 9px 16px;
      background: #eef3f8;
      border-radius: 999px;
      font-weight: 700;
      color: var(--primary);
      margin-top: 18px;
    }

    .steps-wrap {
      background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
    }
    .step-card {
      background: #fff;
      border-radius: 24px;
      padding: 28px 24px;
      box-shadow: var(--card-shadow);
      position: relative;
      height: 100%;
      text-align: center;
    }
    .step-number {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: rgba(255, 138, 0, 0.12);
      color: var(--secondary);
      display: grid;
      place-items: center;
      margin: 0 auto 18px;
      font-weight: 800;
      font-size: 1.2rem;
    }

    .cta-banner {
      background:
        linear-gradient(90deg, rgba(8,20,33,0.9), rgba(8,20,33,0.75)),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      color: #fff;
      border-radius: 32px;
      padding: 56px 50px;
      overflow: hidden;
    }

    .why-box {
      background: #fff;
      border-radius: 24px;
      padding: 24px;
      box-shadow: var(--card-shadow);
      height: 100%;
    }

    .gallery-card img {
      height: 260px;
      object-fit: cover;
      border-radius: 20px;
      width: 100%;
    }

    .testimonial-section {
      background: #0a0f18;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .metric-circle {
      width: 190px;
      height: 190px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0 auto;
      text-align: center;
      background: radial-gradient(circle at 30% 30%, rgba(255,138,0,0.12), rgba(255,255,255,0.02));
    }
    .review-card {
      background: #111926;
      border-left: 4px solid var(--secondary);
      padding: 34px;
      border-radius: 24px;
      box-shadow: var(--card-shadow);
    }

    .contact-card {
      background: #fff;
      border-radius: 28px;
      box-shadow: var(--card-shadow);
      overflow: hidden;
    }
    .contact-form-wrap {
      padding: 40px;
    }
    .form-control,
    .form-select {
      background: #f6f8fb;
      border: 1px solid #e7ebf1;
      min-height: 52px;
      border-radius: 14px;
      padding: 14px 16px;
    }
    textarea.form-control { min-height: 140px; resize: none; }
    .map-frame {
      min-height: 100%;
      width: 100%;
      border: 0;
    }

    footer {
      background: #09111d;
      color: rgba(255,255,255,0.78);
      padding-top: 90px;
    }
    .footer-title {
      color: #fff;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .footer-link {
      display: block;
      color: rgba(255,255,255,0.72);
      margin-bottom: 10px;
      transition: 0.3s ease;
    }
    .footer-link:hover { color: #fff; transform: translateX(4px); }
    .social-link {
      width: 40px;
      height: 40px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      color: #fff;
      margin-right: 8px;
    }
    .social-link:hover { background: var(--secondary); color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      margin-top: 60px;
    }

    @media (max-width: 991.98px) {
      .hero { min-height: auto; padding: 140px 0 100px; }
      .service-content { padding: 30px; }
      .cta-banner { padding: 40px 28px; }
      .contact-form-wrap { padding: 28px; }
    }

    @media (max-width: 767.98px) {
      .section-padding { padding: 75px 0; }
      .hero h1 { font-size: 2.5rem; }
      .contact-pill .left,
      .contact-pill .right { padding: 22px; }
      .service-content h3 { font-size: 1.6rem; }
      .coupon-price { font-size: 2.3rem; }
    }
a {
  color: inherit !important;
  text-decoration: none;
}
.subject{display:none}
.btn:hover{color:#172029 !important}
/*faqs*/
.faq-section {
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

.faq-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ff8a00;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-title {
  font-size: 38px;
  font-weight: 700;
  color: #0b1f3a;
}

.faq-text {
  max-width: 700px;
  color: #6c757d;
  font-size: 16px;
}

.custom-faq .faq-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.08);
  animation: fadeUp 0.7s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-faq .faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.15);
}

.custom-faq .accordion-button {
  background: #ffffff;
  color: #0b1f3a;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 25px;
  box-shadow: none;
  border: none;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: #ff8a00;
  color: #fff;
}

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

.custom-faq .accordion-body {
  background: #fff;
  color: #6c757d;
  font-size: 16px;
  line-height: 1.8;
  padding: 20px 25px;
}

.custom-faq .accordion-button::after {
  filter: brightness(0.3);
}

.custom-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional stagger animation */
.custom-faq .faq-card:nth-child(1) { animation-delay: 0.1s; }
.custom-faq .faq-card:nth-child(2) { animation-delay: 0.2s; }
.custom-faq .faq-card:nth-child(3) { animation-delay: 0.3s; }
.custom-faq .faq-card:nth-child(4) { animation-delay: 0.4s; }
.custom-faq .faq-card:nth-child(5) { animation-delay: 0.5s; }
/*faqs*/
/*fonts*/
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0I5nvwU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0I5nvwU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0I5nvwU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0I5nvwU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0I5nvwUgHU.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0I5nvwU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}




@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url("fonts/bootstrap-icons.woff2?dd67030699838ea613ee6dbda90effa6") format("woff2"),
url("fonts/bootstrap-icons.woff?dd67030699838ea613ee6dbda90effa6") format("woff");
}

.bi::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bi-award::before { content: "\f154"; }
.bi-building::before { content: "\f1dd"; }
.bi-chat-dots-fill::before { content: "\f249"; }
.bi-check-circle-fill::before { content: "\f26a"; }
.bi-check2-circle::before { content: "\f270"; }
.bi-clock-fill::before { content: "\f291"; }
.bi-facebook::before { content: "\f344"; }
.bi-geo-alt-fill::before { content: "\f3e7"; }
.bi-instagram::before { content: "\f437"; }
.bi-lightning-charge-fill::before { content: "\f46c"; }
.bi-patch-check-fill::before { content: "\f4b5"; }
.bi-shield-check::before { content: "\f52f"; }
.bi-star-fill::before { content: "\f586"; }
.bi-stars::before { content: "\f589"; }
.bi-telephone-fill::before { content: "\f5b4"; }
.bi-telephone-forward-fill::before { content: "\f5b5"; }
.bi-wind::before { content: "\f61d"; }
.bi-youtube::before { content: "\f62b"; }
.bi-fan::before { content: "\f670"; }
.bi-clipboard2-pulse::before { content: "\f730"; }
.bi-envelope-paper-fill::before { content: "\f73a"; }
.bi-house-heart::before { content: "\f776"; }
.bi-twitter-x::before { content: "\f8db"; }
.bi-fire::before{content:"\f7f6"}
.bi-snow::before{content:"\f56d"}
.bi-funnel-fill::before{content:"\f3e0"}