@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --bs-body-font-family: "Inter", sans-serif;
    --bs-body-color: #121212;
    --bs-danger: #d42422;
    --bs-danger-rgb: 212, 36, 34;
    --bs-border-color: #e5e5e5;
}


html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    padding-top: 89px;
}

section[id],
footer[id] {
    scroll-margin-top: 105px;
}
.fs-12 {
    font-size: 12px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
}

.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-brand img {
    width: 175px;
    height: auto;
}

.btn-danger {
    --bs-btn-bg: #d42422;
    --bs-btn-border-color: #d42422;
    --bs-btn-hover-bg: #ad1918;
    --bs-btn-hover-border-color: #ad1918;
    --bs-btn-active-bg: #ad1918;
    --bs-btn-active-border-color: #ad1918;
}

.hero {
    min-height: calc(100vh - 89px);
}

.hero-image img {
    width: 100%;
    min-height: 600px;
    object-fit: cover;
    filter: grayscale(100%);
}

.hero-badge {
    position: absolute;
    right: auto;
    bottom: 28px;
    left: -35px;
    max-width: 230px;
}

.service-card {
    min-height: 320px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.service-card:hover {
    border-color: #d42422 !important;
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #ededed;
    font-size: 3.5rem;
    line-height: 1;
}

.service-icon {
    width: 82px;
    height: 82px;
}

.service-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.about-image {
    display: block;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.step-number {
    width: 54px;
    height: 54px;
}

.footer-logo {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 991.98px) {
    body {
        padding-top: 85px;
    }

    .navbar {
        background: #ffffff;
    }

    .navbar-collapse {
        max-height: calc(100vh - 85px);
        overflow-y: auto;
    }

    .hero {
        min-height: auto;
    }

    .hero-image img {
        min-height: 480px;
    }

    .hero-badge {
        left: 20px;
    }

    .about-image {
        min-height: 480px;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        width: 145px;
    }

    .hero-image img {
        min-height: 390px;
    }

    .hero-badge {
        right: 16px;
        bottom: 16px;
        left: 16px;
        max-width: none;
    }

    .about-image {
        min-height: 380px;
    }
}

@media (max-width: 575.98px) {
    .hero-image img {
        min-height: 340px;
    }

    .display-1 {
        font-size: calc(2.5rem + 1.5vw);
    }

    .display-3,
    .display-4 {
        font-size: calc(2rem + 1vw);
    }
}

.cookie-banner{
  position:fixed;
  bottom:24px;
  left:24px;
  z-index:1080;
  max-width:480px;
  width:calc(100% - 48px);
  padding:16px 20px;
  background: #fff;
  border-radius:10px;
  box-shadow:0 12px 24px rgba(38,38,38,.16);
}

.cookie-banner__inner{
  flex-wrap:nowrap;
}

.cookie-banner a{
  text-decoration:underline;
}

.cookie-banner a:hover,
.cookie-banner a:focus{
  text-decoration:none;
}

@media(max-width:767.98px){
  .cookie-banner{
    left:50%;
    transform:translateX(-50%);
    bottom:12px;
    width:calc(100% - 32px);
    max-width:100%;
  }

  .cookie-banner__text{
    font-size:12px;
  }
}