html {
  font-size: 14px;
}



@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.navbar {
    min-height: 90px;
    padding-left: 20px;
    padding-right: 20px;
    background: white;
}

.nav-center-links {
    gap: 18px;
}

    .nav-center-links .nav-link {
        font-weight: 700;
        color: #0b1f4d !important;
        position: relative;
        transition: 0.25s ease;
    }

        .nav-center-links .nav-link:hover {
            color: #f97316 !important;
        }

.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border: 1px solid #dbe4ef;
    border-radius: 999px;
    background: white;
    text-decoration: none;
    transition: 0.25s ease;
}

    .navbar-phone:hover {
        border-color: #f97316;
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    .navbar-phone svg {
        width: 22px;
        height: 22px;
        color: #f97316;
    }

    .navbar-phone span {
        display: block;
        font-size: 0.72rem;
        color: #64748b;
        font-weight: 700;
        line-height: 1;
    }

    .navbar-phone strong {
        display: block;
        color: #0b1f4d;
        font-size: 1rem;
        font-weight: 800;
        line-height: 1.2;
    }