/********** Template CSS **********/
:root {
    /* Primary brand color used across the template */
    --primary: #87eff3;
    /*#87eff3 is a bright cyan that complements the harp's elegance and adds a modern touch. It works well for accents, buttons, and highlights, providing a fresh and inviting feel to the website.*/  
    /* Backward-compat (older typo used in some places) */
    --PRprimary: var(--primary);

    --secondary: #5B8C51;
    --light: #F7F7F7;
    --dark: #404A3D;
}

/* Brand green background helper (uses project --secondary) */
.bg-brand-green {
    background-color: var(--secondary) !important;
    color: #fff;
}

/* Ensure text inside the experience tile is readable on green */
.bg-brand-green h1,
.bg-brand-green small,
.bg-brand-green p {
    color: #fff !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: rgba(135, 239, 243, 0.6) !important;
    border-color: rgba(135, 239, 243, 0.6) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}

.text-prprimary {
    color: var(--primary) !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary {
    color: var(--light);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    color: var(--light);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary {
    color: var(--dark);
}

.btn-outline-secondary {
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-secondary:hover {
    color: var(--dark);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover{
    color: var(--secondary);
}
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/*** Language Selector ***/
.language-dropdown {
    display:flex;
    align-items: center;
}

.language-dropdown .language-toggle {
    padding: 25px 0 !important;
    font-size: 24px !important;
    color: var(--secondary) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    margin: 0;
}

.language-dropdown .language-toggle:hover {
    transform: scale(1.2);
    color: var(--secondary) !important;
}

.language-dropdown .language-toggle::after {
    border: none;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.language-dropdown .language-menu {
    min-width: 180px;
    border: 2px solid #87eff376 !important;
}

/* Add a subtle gap between the language selector (right-side group) and the nav links on large screens */
@media (min-width: 992px) {
    #navbarCollapse {
        margin-left: 12px;
    }
}

/* Prevent the language dropdown from being cut off on small screens */
@media (max-width: 991.98px) {
    .language-dropdown .language-menu {
        right: 0;
        left: auto;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }
}

.language-dropdown .language-item {
    display: flex;
    align-items: center;
    padding: 12px 20px !important;
    font-size: 15px;
    color: var(--dark) !important;
    transition: all 0.3s ease;
}

.language-dropdown .language-item:hover {
    background-color: rgba(232, 167, 223, 0.1) !important;
    color: var(--secondary) !important;
    padding-left: 25px !important;
}

.language-dropdown .language-item.active-language {
    background-color: rgba(232, 167, 223, 0.2) !important;
    color: var(--secondary) !important;
    font-weight: 600;
    cursor: not-allowed !important;
    position: relative;
}

.language-dropdown .language-item.active-language:hover {
    background-color: rgba(232, 167, 223, 0.2) !important;
    padding-left: 20px !important;
}

.language-dropdown .language-item.active-language::after {
    content: "✓";
    margin-left: auto;
    font-weight: bold;
    color: var(--secondary);
}

.language-dropdown .flag-emoji {
    font-size: 20px;
    margin-right: 10px;
    display: inline-block;
}

@media (max-width: 991.98px) {
    .language-dropdown {
        display: flex;
        align-items: center;
    }

    .language-dropdown .language-toggle {
        padding: 25px 0 !important;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item:not(.language-dropdown) .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:not(.language-dropdown):hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

#header-carousel .carousel-caption h1,
#header-carousel .carousel-caption p {
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.75),
                 0 2px 12px rgba(0, 0, 0, 0.45);
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (min-width: 769px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 800px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.vertical {
    object-position: 50% 20%;
}

.top-space {
    padding-top: 5%;
}

.top-align {
    align-items: flex-start;
}

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-position: center 32%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-header .container {
    position: relative;
    z-index: 1;
}

/* Make page headers feel more like a "hero" (applies to all pages that use .page-header) */
.page-header {
    min-height: 55vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .page-header {
        min-height: 320px !important;
        height: 320px;
    }

    .page-header.py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .page-header .container.py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* END hero adjustment */

.page-header.page-header-about{
  /* Very subtle overlay for readability, without making the photo look dark */
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url(../img/Hed_omnie.jpg) center center no-repeat;
  background-size: cover;
  background-position: center 0%;
}

/* O mnie: hero typography (premium look) */
.page-header.page-header-about h1 {
    color: #fff !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

/* Brand accent underline under the title */
.page-header.page-header-about h1::after {
    content:string("");
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 92px;
    height: 3px;
    background: rgba(135, 239, 243, 0.95);
    border-radius: 2px;
}

.page-header.page-header-about .breadcrumb-item,
.page-header.page-header-about .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}
/* Global hero text styles for page headers */
.page-header .page-header-title {
    color: #fff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.page-header .page-header-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

.page-header.text-center .page-header-subtitle,
.page-header .text-center .page-header-subtitle {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .page-header .page-header-title {
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.55);
    }

    .page-header .page-header-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 92%;
    }
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-grid-anchor {
    position: relative;
}

.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    box-sizing: border-box;
}

.about-experience .display-1 {
    line-height: 0.95;
    font-size: clamp(3.2rem, 8vw, 5.5rem);
}

.about-experience small {
    display: block;
    line-height: 1.15;
    font-size: clamp(0.95rem, 2.3vw, 1.25rem);
}

.about-experience p {
    margin-top: 0.35rem;
    margin-bottom: 0;
    line-height: 1.2;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

@media (max-width: 767.98px) {
    .about-experience {
        right: -20px;
        bottom: -20px;
        padding: 12px;
    }

    .about-experience .display-1 {
        font-size: clamp(2.4rem, 11vw, 3.5rem);
    }

    .about-experience small {
        font-size: 0.95rem;
    }

    .about-experience p {
        font-size: 0.82rem;
        line-height: 1.15;
    }
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}


/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

/* Opis section images */
.opis-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.opis-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.opis-carousel .owl-nav .owl-prev,
.opis-carousel .owl-nav .owl-next {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s;
    margin: 0 10px;
}

.opis-carousel .owl-nav .owl-prev:hover,
.opis-carousel .owl-nav .owl-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* --- O harfie: hero background --- */
.page-header--harfa {
  /* css/style.css is in /css, image is in /podstr */
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    url("../img/hero_o_harfie.jpg") center/cover no-repeat;

  /* Slightly better framing for portraits/subjects */
  background-position: center 35%;
}

@media (max-width: 768px) {
  .page-header--harfa {
    background-position: center 25%;
  }
}

/* Optional: nicer image card */
.harp-photo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.page-header-gallery {
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),
                url(../img/Galeria/Hero.jpg) center center no-repeat;
    background-size: cover;
}

/* --- Banner stability fix: keep natural flow, avoid vertical jumping --- */
/*
.banner {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.banner .container,
.banner .container-fluid,
.banner .row,
.banner [class*="col-"] {
    position: relative;
    z-index: 1;
}

.banner .row {
    align-items: flex-start;
}

.banner [class*="col-"] {
    display: block;
    float: none;
}

.banner img,
.banner .img-fluid,
.banner .rounded {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
}

.banner .img-fluid.rounded {
    margin-left: auto;
    margin-right: auto;
}

.banner .row > [class*="col-"] > * {
    position: relative;
    top: auto;
    bottom: auto;
    transform: none;
}

.banner h1,
.banner h2,
.banner h3,
.banner h4,
.banner h5,
.banner p,
.banner .btn {
    position: relative;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .banner {
        overflow: visible;
    }

    .banner .row {
        row-gap: 24px;
        align-items: flex-start;
    }

    .banner [class*="col-"] {
        text-align: center;
    }

    .banner .img-fluid.rounded {
        margin-left: auto;
        margin-right: auto;
    }
}
*/
.banner {
    position: relative;
    overflow: hidden;
    background: none;
    --banner-shift: 0px;
}

.banner::before {
    content: "";
    position: absolute;
    inset: -220px 0;
    background: url("../img/banner-bg.jpg") center center / cover no-repeat;
    transform: translate3d(0, var(--banner-shift, 0px), 0) scale(1.22);
    transform-origin: center;
    will-change: transform;
    z-index: 0;
}

.banner > .container {
    position: relative;
    z-index: 1;
}

.banner .img-fluid.rounded {
    width: 100%;
    max-width: 220px;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
}

.banner h2 {
    line-height: 1.15;
}

@media (max-width: 991.98px) {
    .banner {
        overflow: hidden;
    }

    .banner.my-5.py-5 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .banner > .container.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .banner .row.g-5 {
        row-gap: 2rem !important;
    }

    .banner .col-lg-6 > .row {
        align-items: center !important;
        row-gap: 1rem;
    }

    .banner .col-sm-4,
    .banner .col-sm-8 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }

    .banner .img-fluid.rounded {
        max-width: 240px;
        height: 320px;
    }

    .banner h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem !important;
    }

    .banner p {
        font-size: 1rem;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 575.98px) {
    .banner::before {
        inset: -120px 0;
    }

    .banner.my-5.py-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .banner .img-fluid.rounded {
        max-width: 170px;
        height: 220px;
        border-radius: 14px !important;
    }

    .banner h2 {
        font-size: 1.55rem;
    }

    .banner p {
        font-size: 0.98rem;
    }

    .banner .btn {
        padding-top: 0.7rem !important;
        padding-bottom: 0.7rem !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

.harp-navbar {

width: 100%;

max-width: 100%;

}



.harp-navbar .language-toggle {

padding-left: 0.35rem;

padding-right: 0.35rem;

}



.harp-navbar .language-toggle .flag-emoji {

font-size: 1.35rem;

line-height: 1;

}



.harp-navbar .navbar-toggler {

flex-shrink: 0;

}



@media (max-width: 991.98px) {
    .harp-navbar {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .harp-navbar .harp-navbar-controls {
    display: contents;
}

.harp-navbar .navbar-toggler {
    flex-shrink: 0;
    padding: 0.25rem 0.5rem;
    margin-right: 0 !important;
}

.harp-navbar .harp-navbar-brand-wrap {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
}

.harp-navbar .navbar-brand {
    margin-right: 0 !important;
}

.harp-navbar .navbar-brand h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.harp-navbar #navbarCollapse {
    width: 100%;
    flex-basis: 100%;
    margin-top: 0.5rem;
}
.harp-navbar .language-dropdown {
    margin-left: auto !important;
    margin-right: 0 !important;
    flex-shrink: 0;
    padding-right: 0.5rem !important;
}
.harp-navbar .language-toggle {
    padding: 0.25rem 0.2rem !important;
}

.harp-navbar .language-toggle .flag-emoji {
    font-size: 1.05rem;
}
}



@media (max-width: 575.98px) {

.harp-navbar .navbar-brand h1 {

font-size: 1.8rem;

}

.harp-navbar .language-toggle .flag-emoji {

    font-size: 0.95rem;

}

}