:root {
  color-scheme: dark;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bg: #040405;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #f4f6f8;
  --muted: rgba(244, 246, 248, 0.72);
  --accent: #ff1f2b;
  --accent-soft: rgba(255, 31, 43, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #040405;
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  z-index: 1030;
}

.navbar {
  background: rgba(5, 6, 10, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scrolled {
  background: rgba(5, 6, 10, 0.95) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #9b0000);
  box-shadow: 0 18px 40px rgba(255, 31, 43, 0.15);
}

.brand-text {
  letter-spacing: 0.12em;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease;
 padding-right: 18px !important;
 padding-left: 18px !important;
}

.hero-title,
.section-title,
.btn-brand,
.btn-brand:hover,
.btn-brand:focus {
  font-family: 'Oswald', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Finlandica:wght@300;400;500;600;700&display=swap');

.hero-copy,
.contact-details span,
.captcha-box,
.form-control,
.nav-link {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

p,
.lead {
  font-family: 'Finlandica', 'Finlandica Headline', sans-serif;
  text-transform: none;
}


.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--accent);
}

.navbar-toggler {
  border: none;
  width: 46px;
  height: 46px;
  background: var(--accent);
  border-radius: 0;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 16px;
  background: transparent;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-toggler-icon span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler-icon::after {
  bottom: 0;
}

.navbar-toggler.open .navbar-toggler-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.open .navbar-toggler-icon span {
  opacity: 0;
}

.navbar-toggler.open .navbar-toggler-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-banner {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1526403224740-7e7f0a3a6c0b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.banner-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-banner .hero-overlay {
  background: linear-gradient(180deg, rgba(2, 4, 6, 0.55), rgba(2, 4, 6, 0.9)),
    radial-gradient(circle at 20% 20%, rgba(255, 31, 43, 0.18), transparent 20%),
    radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.08), transparent 18%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 4, 6, 0.25), rgba(2, 4, 6, 0.7)),
    radial-gradient(circle at 20% 20%, rgba(255, 31, 43, 0.18), transparent 20%),
    radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.08), transparent 18%);
  z-index: 1;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 50px;
  font-style: italic;
  margin: 0;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
}

.hero-title-line--accent {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hero-title-mark {
  width: 60px;
  height: 6px;
  display: inline-block;
  background: var(--accent);
}

.hero-copy {
  max-width: 540px;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Oswald', sans-serif;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: capitalize;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.text-red {
  color: var(--accent) !important;
}

.btn-brand {
  background: var(--accent);
  border: 1px solid rgba(255, 31, 43, 0.9);
  color: #0d0705;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 18px 40px rgba(255, 31, 43, 0.24);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0;
  font-family: 'Oswald', sans-serif;
}

.btn-brand:hover,
.btn-brand:focus {
  background: #ff2b35;
  color: #0d0705;
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(255, 31, 43, 0.3);
}

.btn-outline-light {
  background: var(--accent);
  color: #0d0705;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(255, 31, 43, 0.16);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: #ff2b35;
  color: #0d0705;
  border-color: transparent;
}

.hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-down {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, background 0.3s ease;
}

.scroll-down:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.page-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.py-70{
  padding: 70px 0;
}

.page-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 0.75rem;
  transition: 0.25s ease;
}

.page-dots li.active {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 31, 43, 0.12);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-section,
.ready-section,
.work-section {
  background: #020203;
  position: relative;
  overflow: hidden;
}

.work-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.work-section-bg2{
  background-image: url('https://plus.unsplash.com/premium_photo-1661700234501-56b4a5deec63?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.work-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 2, 3, 0.75) 0%, rgba(2, 2, 3, 0.85) 50%, rgba(2, 2, 3, 0.75) 100%);
  z-index: 1;
}

.z-2 {
  position: relative;
  z-index: 2;
}

.contact-section,
.footer {
  background: #020203;
}

.image-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-stats {
  gap: 1rem;
}

.stat-pill {
  flex: 1 1 130px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
}

.stat-pill strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
}

.stat-pill span {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.lead {
  font-size: 1rem;
}

.video-thumbs {
  gap: 1rem;
}

.thumb-img {
  width: calc(33.333% - 0.66rem);
  min-width: 100px;
  object-fit: cover;
  height: 120px;
}

.ready-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-control {
  background: #f3f3f3;
  border: none;
  color: #111;
  border-radius: 0;
  padding: 1.25rem 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(15, 15, 15, 0.08);
  transition:  0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-control:focus {
  background: transparent;
  color: #111;
  box-shadow:none;
  outline: none;
}
.footer-input:focus {
  background: transparent;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 31, 43, 0.14);
  outline: none;
}

.form-control::placeholder {
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: normal;
  opacity: 1;
}

.ready-form .form-control,
.contact-form .form-control {
  font-family: 'Poppins', sans-serif;
}

.work-card {
  background: transparent;
  border: none;
  padding: 2rem 1rem 0;
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.work-card:hover {
  transform: translateY(-8px);
}

.work-circle {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.work-circle::before,
.work-circle::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.work-circle::before {
  inset: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.work-circle::after {
  inset: -12px;
  border: 4px solid rgba(255, 255, 255, 0.08);
}

.work-circle--one::after {
  border-color: rgba(255, 31, 43, 0.85);
}

.work-circle--two::after {
  border-color: rgba(255, 31, 43, 0.8);
}

.work-circle--three::after {
  border-color: rgba(255, 31, 43, 0.75);
}

.work-circle--four::after {
  border-color: rgba(255, 31, 43, 0.7);
}

.work-circle i {
  font-size: 3rem;
  color: #fff;
  position: relative;
  z-index: 2;
}

.work-card-title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #fff;
}

.work-card-stats {
  display: grid;
  gap: 0.35rem;
}

.stat-main {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legend-pills {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.work-summary {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-block,
.summary-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.summary-block {
  min-width: 160px;
  min-height: 160px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  padding: 1.75rem;
  flex-direction: column;
}

.summary-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.summary-label {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.summary-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 6px solid rgba(255, 31, 43, 0.9);
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
}

.summary-ring i {
  font-size: 2.5rem;
  color: #ff1f2b;
}

.stats-circle {
  display: none;
}

.contact-details strong {
  color: #fff;
}

  .contact-detail-item span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.78);
  }


.contact-form .form-control {
  background: #f3f3f3;
  border: none;
  color: #111;
  border-radius: 0;
  padding: 1.25rem 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(15, 15, 15, 0.08);
}

.contact-form .form-control:focus {
  background: #ffffff;
  color: #111;
  box-shadow: 0 0 0 0.2rem rgba(255, 31, 43, 0.14);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: normal;
  opacity: 1;
}

.captcha-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 90px;
  text-align: center;
}

.footer {
    background: #181818;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.18em;
    font-weight: 800;
  }

  .footer-heading {
    font-size: clamp(2rem, 2.5vw, 3.5rem);
    line-height: 1.05;
    max-width: 520px;
    margin: 0;
  }

  .footer-newsletter {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-column-title {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
  }

  .footer-input-group {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.95rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    min-height: 56px;
  }

  .footer-input-group i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
  }

  .footer-input {
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
    padding: 0;
    box-shadow: none;
    width: 100%;
  }

  .footer-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .footer-privacy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
  }

  .footer-link-list li {
    margin-bottom: 0.8rem;
  }

  .footer-link-list li:last-child {
    margin-bottom: 0;
  }

  .footer-link-list a {
    color: rgba(255, 255, 255, 0.65);
    display: inline-block;
    transition: color 0.2s ease;
  }

  .footer-link-list a:hover {
    color: #fff;
  }

  .footer-privacy a {
    color: #fff;
  }

  .footer-links {
    gap: 2rem;
  }

  .footer-links ul {
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: #fff;
  }

  .footer-bottom {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
  }

  .social-footer a {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.25s ease, 0.25s ease;
    color: #fff;
  }

  .social-footer a:hover {
    background: var(--accent);
    transform: translateY(-3px);
  }
  .logo-pill {
    padding: 0.9rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 0.95rem;
    transition: transform 0.25s ease,  0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    opacity: 0.5;
  }

  .logo-pill:hover {
    transform: translateY(-3px);
    opacity: 9;
  }

  .brand-logo {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
  }

  .pricing-card,
  .news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .pricing-card:hover,
  .news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 31, 43, 0.35);
  }

  .price-display {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .price-sign {
    font-size: 1.1rem;
    opacity: 0.7;
  }

  .price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
  }

  .price-period {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    align-self: flex-end;
  }

  .featured-card {
    background: rgba(255, 31, 43, 0.1);
    border-color: rgba(255, 31, 43, 0.25);
  }

  .news-card h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .news-card span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
  }

  .news-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
  }

  .news-card-img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 190px;
  }

  .news-card > .p-4 {
    background: rgba(3, 4, 6, 0.7);
  }

  .news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 31, 43, 0.35);
  }

  .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 31, 43, 0.6);
    background: rgba(255, 31, 43, 0.95);
    color: #fff;
  }

  .feature-card:hover .feature-icon {
    background: #fff;
    color: var(--accent);
  }

  .feature-card:hover h5,
  .feature-card:hover p {
    color: #fff;
  }

  .feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .feature-card h5 {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
  }

  .feature-card p.small {
    line-height: 1.35;
    color: rgba(255,255,255,0.72);
  }

  .testimonial-carousel {
    margin-top: 2rem;
  }

  .carousel-inner {
    border-radius: 1rem;
  }

  .carousel-item {
    transition: opacity 0.6s ease-in-out !important;
  }

  .testimonial {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

p{
  font-size: 15px;
}
.ma-400{
  max-height: 400px;
}
  .testimonial-quote {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
  }

  .testimonial-name {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
  }

  .testimonial-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none;
    border: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    opacity: 1;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-image: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
  }

  .carousel-control-prev-icon::before {
    content: '❮';
  }

  .carousel-control-next-icon::before {
    content: '❯';
  }


.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-bg{
  object-position: 0px -230px;
}
.lh-75{
  line-height: 75px;
}

@media (max-width: 991.98px) {
  .hero-footer,
  .page-dots {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: clamp(2.75rem, 10vw, 4.5rem);
  }
  .thumb-img {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .navbar .btn-outline-light {
    display: none;
  }
  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .page-banner {
    min-height: 200px;
  }
  .about-bg {
    object-position:center;
  }
  .breadcrumb{
    margin-bottom: 0 !important;
  }
}

html {
  scroll-behavior: smooth;
}
