:root {
    --accent: #D53834;
    --text: #3B3B3B;
    --main: #38535E;
    --light-blue: #BBD7E0;
    --dark: #3B3B3B;
    --muted: #7a7a7a;
    --bg: #ffffff;
    --line: #ececec;
    --pill: #E3E2E3;
    --hover: #EEEEEE;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --font: "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html {
    touch-action: auto;
}

* {
    box-sizing: border-box;
}

form {

}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 1024;
    background: var(--bg);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow);
}

.header-top {
    position: relative;
}

.header-top::after {
    content: '';
    display: block;
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px solid var(--line);
}


.header-grid {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    min-width: 240px;
}

.nav-logo {
    max-width: 200px;
    height: auto;
    object-fit: cover;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--accent) 100%, white 0%);
    position: relative;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-name {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -.2px;
}

.brand-sub {
    font-weight: 500;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .12em;
    margin-top: 4px;
}

.search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--pill);
    border-radius: 20px;
    padding: 10px 14px;
    max-width: 520px;
    width: 100%;
}

.search-ico {
    opacity: .6
}

.search-input {
    border: 0;
    outline: 0;
    background: transparent;
    width: 100%;
    font-family: var(--font);
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
}

.search-input::placeholder {
    color: #9a9a9a
}

.actions {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
}

.info {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    white-space: nowrap;
}

.info-ico {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #f0f0f0;
    display: grid;
    place-items: center;
    color: var(--accent);
    background: #fff;
}

.cart-icon,
.phone-icon,
.address-icon {
    width: 25px;
}

.info-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1
}

.pill {
    border: 1px solid #f0f0f0;
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    white-space: nowrap;
    height: 40px;
}

.pill-ico {
    opacity: .8
}

.pill-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.lang {
    cursor: pointer;
}

.cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid transparent;
}

.cta:hover {
    filter: brightness(.98)
}

.cta-ico {
    filter: grayscale(1) brightness(2)
}

.burger {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
    border-radius: 12px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px;
}

.header-bottom {
    background: var(--bg);
}

.nav-row {
    padding: 10px 0 14px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 999px;
}

.nav-link:hover {
    background: #f6f6f6
}

.nav-link:hover {
    background: #ededed;
    color: #3B3B3B;
}

.nav-dropdown {
    position: relative
}

.nav-dd-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.chev {
    opacity: .7;
    margin-left: 6px
}


.nav-dd-link {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.nav-dd-link:hover {
    background: #f7f7f7
}

@media (max-width: 1100px) {
    .header-grid {
        grid-template-columns:auto 1fr;
        grid-auto-rows: auto
    }

    .actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
        flex-wrap: wrap
    }
}

@media (max-width: 991px) {
    .brand {
        min-width: auto
    }

    .brand-name {
        font-size: 22px
    }

    .search {
        max-width: none
    }

    .actions {
        display: none
    }

    .burger {
        display: block
    }

    .header-grid {
        grid-template-columns:auto 1fr auto
    }

    .header-bottom {
        display: none
    }

    .header-bottom.is-open {
        display: block
    }

    .nav {
        flex-direction: column;
        align-items: stretch
    }

    .nav-link {
        justify-content: space-between
    }
}

.section {
    padding: 3rem 0;
}

.section__title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.29;
    margin: 1.5rem 0;
}

.section__sub__title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.29;
    margin: 1.5rem 0;
}

.white__sub__title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.29;
    margin: 1.5rem 0;
}

.about__section__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.29;
    margin: 1.5rem 0;
}

.about__pill img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}


.herro__block {
    background: #F3F3F3;
    border-radius: 18px;
    padding: 38px 44px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.brand__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: #D53834;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.brand__pill img {
    width: 16px;
    height: 16px;
}

.hero__h1 {
    margin: 3rem 0 0rem;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.05;
    color: #3B3B3B;
}

.hero__h1 .hero__span {
    color: #D53834;
}

.red__span {
    color: #D53834;
    font-weight: 500;
}

.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    width: 100%;
    margin: 1.5rem 0;
}

.herro__text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(59, 59, 59, 0.75);
    max-width: 520px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-top: .5rem;
}

.cta_secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 54px;
    border-radius: 12px;
    background: #0F3D4C;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.cta_secondary:hover {
    filter: brightness(0.95);
}

.footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 210px;
    height: 54px;
    border-radius: 12px;
    background: #D53834;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.footer__cta img {
    width: 18px;
    height: 18px;
}

.footer__cta:hover {
    filter: brightness(0.95);
}


.hero_team {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 1rem;

}

.hero_team__avatars {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.hero_team__img {
    height: 44px;
    width: auto;
    border-radius: 999px;
}


.hero_team__desc {
    font-size: 13px;
    line-height: 1.35;
    color: rgba(59, 59, 59, 0.75);
    max-width: 260px;
}

.herro__img__block {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.herro__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.herro__img__block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 61, 76, 0.18);
    pointer-events: none;
}

.herro_img_content {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 2;
    padding: 22px 24px;
    border-radius: 16px;

    background: rgba(213, 56, 52, 0.79);
    backdrop-filter: blur(5px);
    color: #fff;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.herro_img_content .brand__pill {
    margin-bottom: 12px;
}

.herro_img_content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.herro_img_content a::after {
    content: "→";
    font-size: 14px;
}

.herro_img_content a:hover {
    color: #fff;
    text-decoration: underline;
}

.heroSlider {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.heroTrack {
    display: flex;
    transition: transform .55s ease;
    will-change: transform;
}

.heroSlide {
    flex: 0 0 100%;
}

.herro__img__block {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.herro__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.herro__img__block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 61, 76, 0.18);
    pointer-events: none;
}

.herro_img_content {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 58px;
    z-index: 2;
    padding: 22px 24px;
    border-radius: 16px;
    background: rgba(213, 56, 52, 0.84);
    backdrop-filter: blur(6px);
    color: #fff;
}

.heroDots {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 22px;
    z-index: 3;

    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: center;

}

.heroDot {
    width: 130px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.heroDot::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.95);
}

.heroDot.is-active::after {
    animation: heroDotProgress var(--dur, 4500ms) linear forwards;
}

@keyframes heroDotProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .heroDot {
        width: 70px;
    }

    .herro__img__block {
        min-height: 420px;
    }
}

@media (max-width: 992px) {
    .herro__block {
        padding: 28px 22px;
    }

    .hero__h1 {
        font-size: 42px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .cta_secondary, .footer__cta {
        width: 100%;
    }

    .herro__img__block {
        min-height: 420px;
    }
}

.promo_slider {
    padding-bottom: 44px;
}

.promo_slider .carousel {
    margin-top: 10px;
}

.promotion__text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.promo_slider .carousel-item {
    min-height: 86px;
}

.promo_dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -34px;
    margin: 0;
    gap: 10px;
}

.promo_dots [data-bs-target] {
    width: 44px;
    height: 2px;
    border-radius: 2px;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.promo_dots .active {
    background: rgba(255, 255, 255, 0.95);
}

.counter__block {
    background-color: var(--hover);
    border-radius: var(--radius);
    padding: 2rem;
    height: 220px;
    margin-bottom: 1rem;
}

.counter__number {
    font-size: 3rem;
    font-weight: 700;
    padding-bottom: 1rem;
}


.services .row.mb-5 {
    align-items: flex-start;
}

.section_btn {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #D53834;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 6px;
    white-space: nowrap;
    justify-content: end;
}


.section_btn:hover {
    text-decoration: underline;
}

.section__text {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 1);
}

.service__slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 44px;
}

.service__slider-track {
    display: flex;
    gap: var(--svc-gap, 28px);
    transition: transform .55s ease;
    will-change: transform;
}

.service__slider .slider {
    flex: 0 0 calc((100% - (var(--svc-gap, 28px) * (var(--svc-per-view, 3) - 1))) / var(--svc-per-view, 3));
}

.service__block {
    position: relative;
    height: 520px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
}

.service__block a {
    text-decoration: none;
}

.service__block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.service__block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 61, 76, 0.22);
    transition: opacity .35s ease;
    pointer-events: none;
}

.service_title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

    color: #fff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    width: calc(100% - 48px);
    transition: opacity .25s ease, transform .45s ease;
}

.service__content {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 3;

    padding: 18px 18px 16px;
    border-radius: 14px;
    background: rgba(213, 56, 52, 0.79);
    backdrop-filter: blur(6px);

    transform: translateY(120%);
    transition: transform .45s ease;
}

.service__desc {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
}

.service__content p {
    color: white !important;
}

.service__details {
    color: var(--dark);
    font-size: 14px;
}

.view__details {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.view__details:hover {
    text-decoration: underline;
}

.service__block:hover img {
    transform: scale(1.06);
}

.service__block:hover::after {
    opacity: 0.06;
}

.service__block:hover .service__content {
    transform: translateY(0);
}


.servicesBars {
    position: absolute;
    left: 1%;
    right: 1%;
    width: 98%;
    bottom: 10px;
    display: flex;
    gap: 34px;
    justify-content: center;
    padding: 0 4px;
}

.servicesBar {
    appearance: none;
    border: 0;
    height: 2px;
    width: 220px;
    border-radius: 2px;
    background: rgba(59, 59, 59, 0.12);
    cursor: pointer;
    padding: 0;
    position: relative;
}

.servicesBar.is-active {
    background: rgba(213, 56, 52, 0.35);
}

.servicesBar.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: #D53834;
}

.service_detail_img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    height: 650px;
}

@media (max-width: 992px) {
    .service__block {
        height: 460px;
    }

    .service_title {
        font-size: 22px;
    }

    .servicesBar {
        width: 140px;
    }

    .section_btn {
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .servicesBar {
        width: 90px;
    }
}

.view__details {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.service__block:hover img {
    transform: scale(1.06);
}

.service__block:hover::after {
    opacity: 0;
}

.service__block:hover .service__content {
    transform: translateY(0);
}

.service__block:hover .service_title {
    /*bottom: calc(22px + 120px);*/
    transition: bottom .45s ease;
}

@media (max-width: 992px) {
    .service__slider .slider {
        flex: 0 0 280px;
    }

    .service__block {
        height: 400px;
    }
}

.category__block {
    position: relative;
    display: block;
    background: #F3F3F3;
    border-radius: 18px;
    padding: 26px 26px 34px;
    min-height: 165px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: #3B3B3B;

    transition: transform .25s ease, box-shadow .25s ease;
}

.category_icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.category__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.15;
    max-width: 270px;
}

.category__btn {
    position: absolute;
    right: 22px;
    bottom: 22px;

    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #D53834;
    display: grid;
    place-items: center;
}

.category__btn::before {
    content: "→";
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.category__block:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.category__block:hover .category__btn {
    filter: brightness(0.95);
}


.about__img__block {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__img__block {
    cursor: pointer;
}

.about__img__block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 70, 90, 0.45);
    pointer-events: none;
}

.play__btn {
    position: absolute;
    inset: 0;
    margin: auto;

    width: 84px;
    height: 84px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);

    display: grid;
    place-items: center;
    z-index: 2;

    transition: transform .25s ease, background .25s ease;
}

.play__btn::before {
    content: "";
    margin-left: 4px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent white;
}

.play__btn:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.5);
}


.team__slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 44px;
}

.team__track {
    display: flex;
    gap: 28px;
    transition: transform .55s ease;
    will-change: transform;
}

.team__slide {
    flex: 0 0 calc((100% - (28px * (var(--team-per-view, 3) - 1))) / var(--team-per-view, 3));
    height: 520px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.team__slide:active {
    cursor: grabbing;
}

.team__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s;
}

.team__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 61, 76, 0.20);
    pointer-events: none;
}

.team__slide:hover img {
    transform: scale(1.06);
}


.team__details {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.team__name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center;
    color: white;
}

.team_position {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(238, 238, 238, 1);
    color: #3B3B3B;
    padding: 10px 12px;
    border-radius: 999px;
    margin: 0 1rem;
    font-size: 12px;
    font-weight: 500;
}

.team_position img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.teamBars {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    gap: 34px;
    justify-content: center;
}

.teamBar {
    appearance: none;
    border: 0;
    height: 2px;
    width: 220px;
    border-radius: 2px;
    background: rgba(59, 59, 59, 0.12);
    cursor: pointer;
    padding: 0;
    position: relative;
}

.teamBar.is-active {
    background: rgba(213, 56, 52, 0.35);
}

.teamBar.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: #D53834;
}

@media (max-width: 992px) {
    .team__slide {
        height: 520px;
    }

    .teamBar {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .teamBar {
        width: 90px;
    }
}


.benefits__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    max-width: 270px;
    margin: 1rem 0;
}

.benefits_desc {
    font-size: 12px;
}

.benefits__block {
    position: relative;
    display: block;
    background: #F3F3F3;
    border-radius: 18px;
    padding: 26px 26px 34px;
    min-height: 310px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: #3B3B3B;

    transition: transform .25s ease, box-shadow .25s ease;
}

.benefits__block:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.value__block_last {
    position: relative;
    display: block;
    background: var(--accent);
    border-radius: 18px;
    padding: 26px 26px 34px;
    min-height: 310px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: #fff;

    transition: transform .25s ease, box-shadow .25s ease;
}

.value__title {
    position: absolute;
    bottom: 22px;
    font-size: 18px;
    font-weight: 700;
}

.value__block_last .value__title {
    max-width: 230px !important;
}


.benefits__block__last {
    position: relative;
    display: block;
    background: var(--accent);
    border-radius: 18px;
    padding: 26px 26px 34px;
    min-height: 310px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: #fff;

    transition: transform .25s ease, box-shadow .25s ease;
}

.benefits__block__last:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.benefits__block__last img,
.benefits__block img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.value__btn,
.benefits__btn {
    position: absolute;
    right: 22px;
    bottom: 22px;

    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.value__btn::before,
.benefits__btn::before {
    content: "→";
    color: var(--accent);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.blog__block {
    position: relative;
    display: block;
    background: #F3F3F3;
    border-radius: 18px;
    padding: 26px 26px 34px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: #3B3B3B;
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
}

.blog__detail__img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: var(--radius);
}

.blog__category {
    margin: .5rem 0;
}

.blog__date {
    background-color: rgba(217, 217, 217, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    color: rgba(59, 59, 59, 1);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

.blog__date img {
    width: 16px;
    height: 16px;
}

.blog__details__desc {
    font-size: 14px;
}

.breadcrumbs_link {
    color: var(--dark);
    text-decoration: none;
}

.breadcrumbs_link:hover {
    color: var(--accent);

}

.breadcrumbs__current {
    color: var(--accent);
}

.blog_title {
    font-size: 18px;
    font-weight: 800;
    padding: .5rem 0;
}

.blog__desc {
    font-size: 12px;
    font-weight: 400;
}

.notification-cookies {
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 70%;
    padding: 30px;
    background-color: #E7E8F5FF;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(231, 232, 245);
    border-radius: 25px;
    z-index: 99;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

.policy__details {
    color: #aa2f27;
}

.notification-cookies .row {
    display: flex;
    align-items: center;
}

@-webkit-keyframes slide {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 50px;
        opacity: 1;
    }
}

@keyframes slide {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 50px;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .notification-cookies {
        width: 80%;
    }
}

@media (max-width: 540px) {
    .notification-cookies {
        width: 90%;
    }
}

.floating-chat-cart.is-hidden {
    display: none !important;
}

.floating-chat {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    width: 40px;
    height: 40px;
    right: 50px;
    z-index: 1024;
    cursor: pointer;
    animation: pulse-chat 2s infinite;
}

.floating-chat img {
    max-width: 60px;
}

.floating-chat-call {
    bottom: 40px;
}

.floating-chat-cart {
    bottom: 110px;
}

.floating-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


@keyframes pulse-chat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 211, 85, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 211, 85, 0);
    }
}

@media (max-width: 991px) {
    .floating-chat {
        right: 20px;
    }
}

@media (max-width: 540px) {
    .floating-chat {
        right: 5px;
    }
}


.footer {
    width: min(1400px, calc(100% - 64px));
    margin: 28px auto 0;
    background: #5F6A6E;
    border-radius: 16px;
    overflow: hidden;
    font-family: "Onest", sans-serif;
    color: #fff;
}

.footer__one {
    padding: 34px 40px 22px;
}

.logo-footer {
    max-height: 40px;
}

.social__media {
    gap: 18px !important;
}

.social__link {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 22px;
    text-decoration: none;
}

.social__link i,
.social__link span {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social__link:hover {
    background: rgba(255, 255, 255, 0.16);
}

.cta_secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    background: #0D4358;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    background: #D53834;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    border: none;
}

.footer__cta i {
    font-size: 16px;
}

.footer__cta:hover {
    filter: brightness(0.95);
}

.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
}

.footer__two {
    padding: 0 40px;
}

.footer__two .footer__divider {
    margin: 18px 0 26px;
}

.footer__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__item {
    margin-bottom: 10px;
}

.footer__item a {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.90);
    text-decoration: none;
    line-height: 1.45;
}

.footer__item a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__two .footer__divider:last-child {
    margin: 26px 0 0;
    background: rgba(255, 255, 255, 0.35);
}

.footer__three {
    padding: 24px 40px 28px;
}

.footer__help {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.help__link a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.help__link a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__four {
    width: min(1400px, calc(100% - 64px));
    margin: 14px auto 0;
}

.footer__four .footer__container {
    padding: 0;
}

.footer__four .row {
    padding: 10px 0;
}

.rights, .powered, .policy__url {
    color: #3B3B3B;
    font-size: 14px;
    text-align: center;
}

.policy__url {
    text-decoration: none;
}

.policy__url:hover {
    text-decoration: underline;
}

.powered__by {
    color: #3B3B3B;
    font-weight: 600;
    text-decoration: none;
}

.powered__by:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer__one,
    .footer__two,
    .footer__three {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer__help {
        justify-content: center;
    }

    .footer {
        width: calc(100% - 32px);
    }

    .footer__four {
        width: calc(100% - 32px);
    }
}


.pickServices {
    padding: 40px 0;
}

.ps-category-title {
    font-weight: 700;
    font-size: 18px;
    padding: 24px;
    color: white;
    background-color: var(--accent);
}

.ps-card {
    background: #fff;
    border: 1px solid rgba(60, 120, 150, 0.25);
    border-radius: 12px;
    overflow: hidden;
}

.ps-head {
    display: grid;
    grid-template-columns: 1fr 160px 72px;
    gap: 0;
    padding: 14px 18px;
    background: rgba(243, 246, 248, 0.95);
    border-bottom: 1px solid rgba(60, 120, 150, 0.25);
    font-weight: 700;
    color: #3B3B3B;
    align-items: center;
}

.ps-head .ps-col {
    font-size: 14px;
}

.ps-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
}

.ps-row {
    display: grid;
    grid-template-columns: 1fr 160px 72px;
    align-items: center;

    border: 1px solid rgba(60, 120, 150, 0.25);
    border-radius: 10px;
    padding: 14px 16px;
    background: #fff;
}

.ps-name {
    font-size: 14px;
    font-weight: 600;
    color: #3B3B3B;
    padding-right: 18px;
    border-right: 1px solid rgba(60, 120, 150, 0.25);
}

.ps-price {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #3B3B3B;
    padding: 0 18px;
    border-right: 1px solid rgba(60, 120, 150, 0.25);
}

.ps-add {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 2px solid rgba(25, 55, 75, 0.65);
    background: #fff;
    margin-left: auto;
    position: relative;
    cursor: pointer;
    color: var(--dark);
}


.ps-category-title-btn {
    font-weight: 700;
    font-size: 18px;
    padding: 24px;
    color: white;
    background-color: var(--accent);
}

.ps-category-title-btn.collapsed {
    color: white;
    background-color: var(--accent);
}


.accordion-button:not(.collapsed) {
    box-shadow: none;
    color: white;
    background-color: var(--accent);
}

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

.accordion-button {
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent);
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button {
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform .2s ease;
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.ps-add::before {
    width: 18px;
    height: 2px;
}

.ps-add::after {
    width: 2px;
    height: 18px;
}

.ps-row.is-selected {
    border-color: rgba(213, 56, 52, 0.45);
    box-shadow: 0 10px 22px rgba(213, 56, 52, 0.08);
}

.ps-row.is-selected .ps-add {
    border-color: rgba(213, 56, 52, 0.8);
}

.ps-selected .ps-head {
    grid-template-columns: 1fr;
}

.ps-selected-body {
    padding: 16px;
    min-height: 240px;
}

.ps-empty {
    color: rgba(59, 59, 59, 0.7);
    font-size: 14px;
    padding: 8px 2px;
}

.ps-selected-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.ps-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    border: 1px solid rgba(60, 120, 150, 0.25);
    border-radius: 10px;
    padding: 12px 12px 12px 14px;
    background: #fff;
}

.ps-chip .title {
    font-size: 13px;
    font-weight: 600;
    color: #3B3B3B;
}

.ps-chip .price {
    font-size: 13px;
    font-weight: 800;
    color: #3B3B3B;
    white-space: nowrap;
}

.ps-remove {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(60, 120, 150, 0.25);
    background: #fff;
    cursor: pointer;
    position: relative;
}

.ps-remove::before,
.ps-remove::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    background: rgba(25, 55, 75, 0.9);
    border-radius: 2px;
}

.ps-remove::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.ps-remove::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.ps-total {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(60, 120, 150, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3B3B3B;
    font-size: 14px;
}

#selectedTotal {
    width: 100%;

}

.ps-add::before {
    content: "+";
}

.ps-add[data-state="remove"]::before {
    content: "–";
}

@media (max-width: 992px) {
    .ps-head, .ps-row {
        grid-template-columns: 1fr 120px 60px;
    }
}

@media (max-width: 576px) {
    .ps-head, .ps-row {
        grid-template-columns: 1fr 90px 56px;
    }

    .ps-name {
        font-size: 13px;
    }

    .ps-price {
        font-size: 13px;
    }
}

.share__block {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 2rem;
}

.share__label {
    font-size: 20px;
    font-weight: 500;
    color: #3B3B3B;
}

.share_icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 14px;

    display: grid;
    place-items: center;

    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.share_icon i {
    font-size: 30px;
    color: var(--accent);
    line-height: 1;
}

.share_icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact__block,
.contact__form {
    border-radius: var(--radius);
}

.contact__block {
    background: #f3f3f3;
    padding: 22px 28px;
}

.section__sub__title {
    font-family: var(--font);
    font-size: 34px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.herro__text {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 22px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 26px;
}

.contact__details .phone {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
}

.contact__details .phone img {
    width: 20px;
    height: 20px;
}

.contact__subtitle {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin: 12px 0 10px;
}

.work__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 26px;
}

.work__chip {
    width: 72px;
    height: 66px;
    border-radius: 6px;
    background: var(--main);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.work__chip--split {
    background: linear-gradient(
        to bottom,
        var(--main) 0%,
        var(--main) 50%,
        var(--accent) 50%,
        var(--accent) 100%
    );
}

.work__chip--accent {
    background: var(--accent);
}

.work__day {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 6px;
}

.work__hours {
    font-size: 8px;
    opacity: .95;
}

.transport__grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.transport__card {
    background: var(--main);
    border-radius: 6px;
    padding: 14px 12px;
    color: #fff;
    text-align: center;
}

.transport__card img {
    width: 36px;
    height: 24px;
    margin-bottom: 10px;
}

.transport__name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.transport__number {
    font-size: 11px;
    opacity: .9;
}

.contact__form {
    background: rgba(56, 83, 94, .75);
    padding: 22px;
}

.white__sub__title img {
    width: 34px;
    height: 34px;
}

.contact_input,
.contact_textarea {
    width: 100%;
    background: #f2f2f2;
    border: 0;
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 14px;
    outline: none;
    margin-bottom: 1rem;
}

.contact_textarea {
    margin-top: 14px;
}

.contact_input {
    height: 55px;
}

.contact_textarea {
    height: 140px;
    resize: none;
    margin-bottom: 14px;
}

.form-terms {
    margin: 6px 0 18px;
}

.terms__label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 13px;
}

.terms__text a {
    color: #fff;
    text-decoration: underline;
}

.contact__form button {
    height: 62px;
    border-radius: 12px;
    background: var(--accent);
    border: 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

#contact-map {
    margin-top: 22px;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    opacity: 08;
}

.leaflet-touch .leaflet-control-attribution {
    display: none;
}

@media (max-width: 992px) {
    .work__chip {
        width: 74px;
    }
}

.info-page,
.error-page {
    padding: 4rem 0;
}

.nfo-block,
.error__block {
    max-width: 760px;
    margin: 0 auto;
    padding: 10px 0;
}

.numbers {
    margin: 18px 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.numbers .number {
    font-family: var(--font);
    font-weight: 900;
    font-size: 160px;
    line-height: 1;
    color: var(--main);
    letter-spacing: -4px;
}

.error__img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    transform: translateY(6px);
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .12));
}

.error-page .herro__text {
    margin: 12px auto 22px;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
}


@media (max-width: 992px) {
    .numbers .number {
        font-size: 120px;
    }

    .error__img {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 576px) {
    .numbers {
        gap: 12px;
    }

    .numbers .number {
        font-size: 92px;
        letter-spacing: -2px;
    }

    .error__img {
        width: 58px;
        height: 58px;
    }

    .brand__pill {
        font-size: 13px;
    }
}

.info__list {
    text-align: center;
    list-style-position: inside;
}

.info__list li {

}

.info__text {
    font-size: 16px;
    color: rgba(59, 59, 59, 1);
}


.site-header {
    position: relative;
    z-index: 1000;
}

.nav {
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.nav-dd-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-dd {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    padding: 18px;
    min-width: 320px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
    z-index: 2000;
}

@media (min-width: 992px) {
    .nav-dropdown:hover > .nav-dd,
    .nav-dropdown:focus-within > .nav-dd {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.nav-dropdown.is-open > .nav-dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dd-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    /*white-space: nowrap;*/
}

.nav-dd-link:hover {
    background: #F8FAFC;
    color: #E11D48;
}

.nav-dd-link img {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.nav-dd--mega {
    width: min(980px, calc(100vw - 40px));
    padding: 22px;
    border-radius: 22px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 16px;

    left: 0;
    right: auto;
}

.nav-dropdown.is-open > .nav-dd--mega {
    /*transform: translate(-20%, 0);*/
}

@media (min-width: 992px) {
    .nav-dropdown:hover > .nav-dd--mega,
    .nav-dropdown:focus-within > .nav-dd--mega {
        /*transform: translate(-20%, 0);*/
    }
}

.nav-dd--simple {
    min-width: 330px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.m-ico {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #EEF2F7;
}

.m-ico img {
    width: 25px;
    height: 25px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .header-top::after {
        display: none;
    }

    .header-grid {
        display: none;
    }

    .mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;

        position: fixed;
        top: 0;
        left: 0;
        width: 100%;

        padding: .75rem .5rem;
        z-index: 9999;
        background: #fff;
        border-bottom: 1px solid #EEF2F7;
    }

    body {
        padding-top: 64px;
    }

    .nav-logo {
        max-width: 150px;
    }
}

.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
    z-index: 9998;
}

.offcanvas {
    visibility: visible;
}

.offcanvas.is-open {
    transform: translateX(0);
}

.offcanvas-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.offcanvas-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEF2F7;
}

.offcanvas-head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-close {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid #EEF2F7;
    background: #fff;
    font-size: 18px;
    line-height: 1;
    color: rgba(59, 59, 59, 1);
}

.m-nav {
    padding: 10px 0;
}

.m-link {
    width: 100%;
    padding: 14px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #EEF2F7;
    text-align: left;
}

.m-arrow {
    font-size: 20px;
    opacity: .6;
}

.m-langs {
    display: flex;
    gap: 10px;
    padding: 16px 0;
}

.m-lang {
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid #EEF2F7;
    background: #fff;
    font-weight: 700;
    color: rgba(59, 59, 59, 1);
    text-decoration: none;
}

.m-lang.is-active {
    background: var(--accent);;
    color: #fff;
    border-color: var(--accent);;
}

.m-search {
    position: relative;
    margin-top: 6px;
}

.m-search input {
    width: 100%;
    border: 0;
    background: #F3F4F6;
    border-radius: 16px;
    padding: 14px 14px 14px 44px;
    outline: none;
}

.m-search-ico {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
}

.m-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #EEF2F7;
}

.m-contact a {
    display: flex;
    gap: 5px;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
    padding: 10px 0;
    font-size: 10px;
    margin: 0 .5rem;
    font-weight: 700;
}

.m-cta {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
    margin-bottom: 20%;
}

#mobileMenu.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: min(380px, 98vw);
    height: 100vh;
    background: #fff;
    transform: translateX(-110%);
    transition: .25s ease;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
}

#mobileMenu.offcanvas.is-open {
    transform: translateX(0);
}

#mobileMenu .m-submenu {
    position: absolute;
    inset: 0;
    background: #fff;
    padding: 14px 16px;
    transform: translateX(110%);
    transition: .25s ease;
    z-index: 5;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#mobileMenu .m-submenu.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown.is-open > .nav-dd--mega {
    /*transform: translate(-50%, 0);*/
}

@media (min-width: 992px) {
    .nav-dropdown:hover > .nav-dd--mega,
    .nav-dropdown:focus-within > .nav-dd--mega {
        /*transform: translate(-20%, 0);*/
    }
}

#mobileMenu {
    position: fixed;
}

#mobileMenu .m-nav,
#mobileMenu .m-langs,
#mobileMenu .m-search,
#mobileMenu .m-footer {
    transition: .22s ease;
}

.m-submenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 14px 16px;
    transform: translateX(110%);
    transition: .25s ease;
    z-index: 2;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.m-submenu.is-open {
    transform: translateX(0);
}

.m-submenu-back {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 12px 0;
    font-weight: 700;
    border-bottom: 1px solid #EEF2F7;
    color: var(--dark);
}

.m-submenu-title {
    padding: 14px 0 10px;
    font-weight: 800;
    font-size: 16px;
}

.m-submenu-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 6px;
}

.m-submenu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 14px;
    text-decoration: none;
    color: #111827;
}

.m-submenu-link:hover {
    background: #F8FAFC;
}

.m-submenu-link img {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.info-layout {
    margin-top: 16px;
}

.info-content {
    padding-top: 6px;
}

.info-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-link {
    display: block;
    padding: 16px 18px;
    border-radius: 12px;
    background: #eeeeee;
    color: #3B3B3B;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    transition: .2s ease;
}

.info-link:hover {
    background: #e7e7e7;
    transform: translateY(-1px);
}

.info-link.active {
    background: #D53834;
    color: #fff;
}

.info-title {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 14px 0;
    color: #3B3B3B;
}

.info-paragraph {
    margin: 0 0 14px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #3B3B3B;
}

.info-subtitle {
    margin: 14px 0 10px 0;
    font-size: 14px;
    font-weight: 800;
    color: #3B3B3B;
}

.info-list {
    margin: 0 0 14px 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #3B3B3B;
}

.info-list li {
    margin: 6px 0;
}

@media (max-width: 991px) {
    .info-nav {
        margin-bottom: 18px;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    padding: 30px;
    position: relative;
    animation: scaleIn 0.2s ease;
    overflow-y: auto;

}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}

.programare-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width: 768px) {
    .programare-form .form-grid {
        grid-template-columns: 1fr;
    }
}

#programareModal .terms__label,
#programareModal .terms__text,
#programareModal .terms__text a {
    color: #111827;
}

#programareModal .terms__text a {
    text-decoration: underline;
}

#programareModal .date-field {
    position: relative;
}

#programareModal .date-field .contact_input {
    padding-right: 48px;
}

#programareModal .date-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    opacity: .7;
    pointer-events: none;
}

@media (max-width: 767px) {
    .modal-box {
        margin-top: 5rem;
    }
}

.checkout__block {
    background-color: rgba(238, 238, 238, 1);
    padding: 2rem;
    border-radius: var(--radius);
}

.custom-check {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.custom-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-check .checkmark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.custom-check .checkmark::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    transform: scale(0);
    transition: transform .2s ease;
}

.custom-check input:checked + .checkmark::after {
    transform: scale(1);
}

.checkout__block .contact_input,
.checkout__block .contact_textarea {
    background: white;
}

.terms__text {
    font-size: 12px;
    line-height: 1;
}

@media (max-width: 1300px) {
    .hero__h1 {
        margin: 1.2rem 0 0;
        font-size: 2.3rem;
    }
}

@media (max-width: 1300px) {
    .section__title {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    .herro__block {
        padding: 20px;
    }

    .herro__img {
        min-height: 520px;
        width: 100%;
        object-fit: cover;
    }

    .section__title {
        font-size: 1.6rem;
    }
}

.dropdown-menu {
    border-radius: var(--radius);
}

.dropdown-item {
    color: rgba(59, 59, 59, 1);
    font-weight: 700;
    font-family: var(--font);
    border-radius: var(--radius);
}

.dropdown-item:hover {
    color: rgba(59, 59, 59, 1);
    border-radius: var(--radius);
}

@media (min-width: 992px) {

    .hero-row {
        display: flex;
        align-items: stretch;
    }

    .hero_height,
    .promo_height {
        display: flex;
        flex-direction: column;
    }

    .promo_height .heroSlider,
    .hero_height .herro__block {
        flex: 1;
    }

    .herro__img__block,
    .heroSlide,
    .heroTrack,
    .heroSlider {
        height: 100%;
    }

    .herro__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}

@media (min-width: 992px) {

    .about-row {
        display: flex;
        align-items: stretch;
    }

    .about_content_height,
    .about_img_height {
        display: flex;
        flex-direction: column;
    }

    .about_content_height .herro__block,
    .about_img_height .about__img__block {
        flex: 1;
    }

    .about__img__block {
        height: 100%;
        position: relative;
    }

    .about__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .play__btn {
        position: absolute;
        left: 24px;
        bottom: 24px;
        z-index: 2;
    }
}

@media (max-width: 767px) {
    .footer__title,
    .footer__item a {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .footer__logo {
        display: flex;
        justify-content: center;
    }

    .footer__four .col-12 {
        display: flex;
        justify-content: center;
    }

    .servicesBars {
        left: 2%;
        right: 2%;
        width: 96%;
    }
}

.service-arrow {
    max-width: 25%;
    object-fit: cover;
}

.benefits__text__white {
    color: white;
    text-decoration: none;
    cursor: pointer;
}


.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.video-modal.is-open {
    display: block;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.video-modal__content {
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 20vh auto;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
}

.video-modal__iframe-wrap {
    position: relative;
    padding-top: 56.25%;
}

.video-modal__iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 991px) {
    .herro__text {
        max-width: 100%;
    }
}


.cp-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.cp-modal.is-open {
    display: block;
}

.cp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.cp-modal__dialog {
    position: relative;
    width: min(520px, calc(100% - 32px));
    margin: 20vh auto 0;
    background: #fff;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.cp-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--dark);
}

.cp-modal__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.cp-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
}

.cp-btn--primary {
    background: #0d6efd;
    color: #fff;
}

.cp-btn--secondary {
    background: #f1f3f5;
    color: #111;
    border-color: #e5e7eb;
}

.service__slider-track,
.team__track {
    pointer-events: none;
}

.service__slider-track > *,
.team__track > * {
    pointer-events: auto;
}

.offcanvas[aria-hidden="true"] {
    display: none;
}

@media (max-width: 767px) {
    .footer__list {
        text-align: center;
    }
}

.feedback-card {
    background: #f3f3f3;
    border-radius: 10px;
    padding: 28px;
}

.fb-q {
    margin-bottom: 2.5rem;
}

.fb-label {
    display: block;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 1.5rem;
    color: #222;
}

.fb-textarea {
    width: 100%;
    background: #fff;
    border: 0;
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 14px;
    outline: none;
    margin-bottom: 1rem;
}

.fb-textarea:focus {
    border-color: #d9d9d9;
    box-shadow: none;
}

.fb-options {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 26px;
}

.fb-radio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #444;
    cursor: pointer;
    user-select: none;
}

.fb-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fb-radio span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid #d64545;
    display: inline-block;
    position: relative;
    flex: 0 0 16px;
}

.fb-radio input:checked + span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d64545;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fb-optional-title {
    margin-top: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 13px;
    color: #222;
}

.fb-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 18px;
}

.fb-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fb-input {
    width: 100%;
    background: #fff;
    border: 0;
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 14px;
    outline: none;
    margin-bottom: 1rem;
}

.fb-submit {
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: #d64545;
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;
}

@media (max-width: 768px) {
    .fb-grid {
        grid-template-columns:1fr;
    }

    .fb-options {
        display: grid;
    }
}

.fb-header {
    margin-bottom: 18px;
}

.fb-title {
    font-weight: 800;
    font-size: 16px;
    color: #222;
}

.fb-subtitle {
    font-weight: 700;
    font-size: 13px;
    color: #444;
    margin-top: 4px;
}

.fb-intro {
    margin-top: 10px;
    font-size: 12.5px;
    color: #555;
    line-height: 1.5;
}

.fb-section {
    margin-top: 18px;
}

.fb-section-title {
    font-weight: 800;
    font-size: 13px;
    color: #222;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fb-hint {
    font-weight: 500;
    color: #666;
    margin-left: 6px;
    font-size: 12px;
}

.fb-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #444;
    cursor: pointer;
    user-select: none;
}

.fb-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fb-check span {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid #d64545;
    display: inline-block;
    position: relative;
    flex: 0 0 16px;
}

.fb-check input:checked + span::after {
    content: "";
    width: 9px;
    height: 9px;
    background: #d64545;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.fb-input--inline {
    /*max-width:320px;*/
}

.fb-error {
    border: 1px solid #d53834;
    padding: 12px;
    border-radius: 8px;
}

.team__slider,
.service__slider {
    position: relative;
    padding-top: 64px;
}

.team__nav,
.service__nav {
    position: absolute;
    top: 0;
    left: 1rem;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.team__nav button,
.service__nav button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: var(--accent);
    backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 200;
    line-height: 1;
    color: #fff;

    cursor: pointer;
    transition: background .25s ease, transform .2s ease;
}

.team__nav button:hover,
.service__nav button:hover {
    background: rgba(0, 0, 0, .55);
    transform: translateY(-1px);
}

.team__nav button:active,
.service__nav button:active {
    transform: translateY(0);
}


@media (min-width: 992px) {
    .header-bottom {
        position: relative;
        z-index: 2000;
        background: #fff;
    }

    .header-bottom.is-fixed {
        position: fixed;
        left: 0;
        width: 100%;
        z-index: 2000;
        border-bottom: 1px solid #EEF2F7;

    }

    .header-bottom-spacer {
        height: 0;
    }
}
.dropdown-menu-end{
    z-index: 9999;
}
