:root {
    --brand: #15847a;
    --text: #045B4C;
    --muted: #64748b;
    --bg: #ffffff;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: #F5F5F5;
}

/* ===== Header ===== */
.site-header {
    background: var(--brand);
    color: #fff;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 16px
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px
}

.container.topbar {
    padding-top: 16px;
    padding-bottom: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.phones {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    font-weight: 600
}

.phones a {
    color: #fff;
    text-decoration: none
}

.desk-search {
    display: flex;
    align-items: center;
    gap: 8px
}

.desk-search .search-wrap {
    position: relative;
    flex: 1
}

.desk-search input {
    flex: 1;
    min-width: 240px;
    border: 1.5px solid transparent;
    outline: none;
    padding: 10px 12px 10px 40px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .04)
}

.desk-search svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .6
}

.desk-search input:focus {
    border-color: #c7f3ea;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .15)
}

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

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: .2s
}

.icon-btn:hover {
    background: rgba(255, 255, 255, .25)
}

.login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px 6px 6px;
    border-radius: 999px;
    background: #08766A;
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, .06);
    text-decoration: none;
    margin-right: 40px;
}

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .12);
    cursor: pointer;
    margin-left: 8px
}

/* ===== Nav ===== */
.nav {
    background: #fff;
    z-index: 49;
    position: relative
}

@media (min-width: 993px) {
    .nav {
        position: sticky;
        top: 0;
    }

    .nav.is-stuck {
        box-shadow: 0 6px 22px rgba(2, 6, 23, .08)
    }
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative
}

.menu {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0
}

.menu > li {
    position: relative
}

.menu a, .menu button.mega-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    opacity: .85;
    border-bottom: 2px solid transparent;
    background: none;
    border: none;
    cursor: pointer
}

.menu a:hover, .menu button.mega-toggle:hover {
    opacity: 1;
    border-bottom-color: var(--brand)
}

.cta {
    margin-left: auto
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 40px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--brand);
    font-size: 13px;
}

/* ===== Mega menu (desktop) ===== */
.has-mega {
    position: static
}

.has-mega:hover .mega, .has-mega:focus-within .mega {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #eef2f7;
    box-shadow: 0 14px 26px rgba(2, 6, 23, .08);
    border-radius: 14px;
    padding: 24px;
    display: block;
    opacity: 0;
    transform: translateY(6px);
    transition: .18s ease;
    pointer-events: none;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 100
}

.mega .mega-grid {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 20px
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text)
}

.mega-item:hover {
    background: #f8fafc
}

.mega-ico {
    flex: 0 0 40px;
    height: 40px;
    border-radius: 10px;
    background: #e6f6f3;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.mega-ico svg {
    width: 20px;
    height: 20px
}

.mega-title {
    font-weight: 600
}

.mega-desc {
    font-size: 12px;
    color: #64748b
}

.menu .has-mega > .mega-toggle svg:first-of-type {
    display: none
}

.menu .has-mega > .mega-toggle .chev {
    margin-left: 6px
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .phones {
        display: none
    }

    .actions {
        display: none
    }

    .menu, .cta {
        display: none
    }

    .desk-search {
        display: none
    }

    .hamburger {
        display: inline-flex
    }

    header {
        position: fixed;
        width: 100%;
        z-index: 1000;
    }
}

.drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 420px);
    background: #fff;
    color: var(--text);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 6000;
    display: flex;
    flex-direction: column
}

.drawer.open {
    transform: translateX(0)
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #eef2f7
}

.drawer-body {
    padding: 16px;
    overflow: auto
}

.m-search .search-wrap {
    position: relative
}

.m-search input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 12px 12px 40px;
    outline: none
}

.m-search input:focus {
    border-color: #c7f3ea;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .15)
}

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

.m-menu {
    list-style: none;
    margin: 8px 0 0;
    padding: 0
}

.m-menu > li {
    border-bottom: 1px dashed #e5e7eb
}

.m-menu a, .m-menu button.sub-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 6px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.m-menu .chev {
    margin-left: auto;
    transition: transform .18s ease
}

.m-sub {
    display: none;
    padding: 6px 0 10px 8px
}

.m-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 6px;
    font-weight: 500
}

.m-ico {
    flex: 0 0 28px;
    height: 28px;
    border-radius: 8px;
    background: #e6f6f3;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.m-ico svg {
    width: 16px;
    height: 16px
}

.m-open > .sub-toggle .chev {
    transform: rotate(180deg)
}

.m-open > .m-sub {
    display: block
}

.m-social {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.m-social .icon-btn {
    width: 30px;
    height: 30px;
    background: var(--brand);
    border: 1px solid var(--brand);
}

.m-actions {
    display: grid;
    gap: 10px;
    margin-top: 14px
}

.m-phones {
    margin-top: 10px;
}

.m-phones a {
    font-size: 14px;
    font-weight: 600;
}

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .5);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 55
}

.backdrop.show {
    opacity: 1;
    pointer-events: auto
}

.login-inner {
    opacity: 0.75;
}

.m-phones a {
    color: var(--brand);
    text-decoration: none;
}

#mainNav {
    padding: 8px 0;
}

@media (max-width: 992px) {
    #mainNav {
        padding: 0px 0;
    }
}

.btn {
    transition: all .3s ease;
}

.btn:hover {
    color: var(--brand);
    background: #fff;
    transition: all .3s ease;
}

/* ===== Hero slider ===== */

.hero{ background:#f4f6f7 }
.hero-splide{ width:100%; overflow:visible }
.hero-slide{ background:var(--hero-bg,#15847a); color:#fff;height: 100% }

.hero-inner{ padding:72px 0 84px }
.hero-copy{ max-width:820px;padding: 0 120px; }
.hero-copy h2{
    margin:0 0 16px;
    letter-spacing:.3px;
    text-transform:uppercase;
    line-height:1.15;
    font-size:44px;
}
.hero-copy p{ margin:0 24px 22px 0; opacity:.92; font-size:16px }
.hero-btn{
    display:inline-block;
    background:#fff;
    color:#0b5b53;
    text-decoration:none;
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
}

#heroSplide .splide__arrow {
    background: transparent;
    width: 40px;
    height: 40px;
}

#product-slider .splide__arrow {
    background: transparent;
    width: 34px;
    height: 34px;
}

#heroSplide .splide__arrow:hover,
#product-slider .splide__arrow:hover {
    border-color: #fff
}

#heroSplide .splide__arrow:focus,
#product-slider .splide__arrow:focus {
    outline: 2px solid #fff;
    outline-offset: 2px
}

#heroSplide .splide__arrow--prev,
#product-slider .splide__arrow--prev {
    left: 24px
}

#heroSplide .splide__arrow--next,
#product-slider .splide__arrow--next {
    right: 24px
}

#heroSplide .splide__arrow svg,
#product-slider .splide__arrow svg {
    fill: none;
    stroke: #fff;
    stroke-width: 2
}

#heroSplide .splide__pagination {
    display: none
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-inner {
        padding: 56px 0 68px
    }

    .hero-copy h2 {
        font-size: 38px
    }
}

@media (max-width: 992px) {
    .hero-inner {
        padding: 44px 0 56px
    }

    .hero-copy {
        max-width: 540px
    }

    .hero-copy h2 {
        font-size: 30px
    }

    .hero-copy p {
        font-size: 14px
    }

    #heroSplide .splide__arrow {
        width: 36px;
        height: 36px
    }

    #heroSplide .splide__arrow--prev {
        left: 14px
    }

    #heroSplide .splide__arrow--next {
        right: 14px
    }
}

#heroSplide .splide__arrow {
    filter: brightness(0) invert(1);
}

@media (max-width: 560px) {
    .hero-inner {
        padding: 32px 0 40px
    }

    .hero-copy h2 {
        font-size: 22px
    }

    .hero-copy p {
        font-size: 13px
    }

    .hero-btn {
        padding: 9px 16px
    }

    #heroSplide .splide__arrow {
        width: 32px;
        height: 32px
    }
}

.hero {
    margin-bottom: 100px;
}

.company-left {
    max-width: 640px;
    width: 100%;
    margin-right: 20px;
}

.company-wrapper {
    display: flex;
    align-items: center;
}

.company-left h1,
.company-left h2,
.company-left h3,
.company-left h4,
.company-left h5,
.company-left h6 {
    color: #045B4C;
}

.company-left h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
}

.company-left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #000;
}

.company-left a {
    background-color: #149284;
    border: 1px solid #149284;
    color: #fff;
    padding: 7px 15px;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .3s ease;
    display: inline-block
}

.company-left a:hover {
    transition: all .3s ease;
    background: transparent;
    color: #149284;
}

.company {
    margin-bottom: 100px;
}

.direct {
    min-height: 530px;
    padding: 80px 0;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.75);
    z-index: 10;
}

.title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 75px;
}

.direct-wrapper {
    position: relative;
    z-index: 11;
}

.direct-items {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto 75px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 20px;
}

.direct-item {
    background-color: #fff;
    transition: all .3s ease;
}

.direct-item a {
    text-decoration: none;
    color: #004237;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.direct-item img {
    margin-bottom: 20px;
}

.direct-inner {
    padding: 16px;
}

.direct-item:hover {
    background: #149284;
    transition: all .3s ease;
}

.direct-item:hover img {
    filter: brightness(0) invert(1);
    transition: all .3s ease;
}

.direct-item:hover {
    transform: scale(1.2);
    transition: all .3s ease;
}

.direct-item:hover .direct-text {
    color: #fff;
}

.link-main {
    background-color: #149284;
    border: 1px solid #149284;
    color: #fff;
    padding: 7px 40px;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .3s ease;
    margin: 0 auto;
    display: inline-block;
}

.link-main:hover {
    transition: all .3s ease;
    background: transparent;
    color: #149284;
}

.link-wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.direct {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position:center;
    background-attachment: fixed;
}

.company-right img {
    max-width: 100%;
}



@media (max-width: 992px) {
    .whitespace {
        height: 84px;
        margin-bottom: 10px;
    }
    .direct-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .company-wrapper {
        flex-direction: column;
    }
    .company-left {
        margin-bottom: 15px;
    }
    .hero,
    .company {
        margin-bottom: 50px;
    }
    .direct-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 577px) {
    .direct-items {
        grid-template-columns: repeat(1, 1fr);
    }
}


.propose-inner {
    display: flex;
    align-items: center;
}

.propose-left {
    max-width: 197px;
    width: 100%;
    margin-right: 23px;
}

.propose-wrapper a {
    color: #004237;
    text-decoration: none;
}

.propose-right h2,
.propose-right h1 {
    font-size: 33px;
    font-weight: 700;
    line-height: 120%;
    color: #149284;
    margin-bottom: 30px;
    margin-top: 0;
}

.propose-right h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    color: #149284;
    margin-bottom: 25px;
    margin-top: 0;
}

.propose-right,
.propose-right p {
    font-size: 22px;
    font-weight: 400;
    line-height: 120%;
    color: #004237;
    margin: 0;
}



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

p {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
    padding: 0;
}

.public-item {
    max-width: 420px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 8px 19px rgba(0,0,0, 0.1);
    height: 100%;
}

.public-item a {
    text-decoration: none;
}

.public-item__inner img {
    width: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.public-item__inner figure {
    overflow: hidden;
    max-height: 235px;
    height: 100%;
}

.public-item__inner figure:hover img {
    transform: scale(1.05);
    overflow: hidden;
    transition: all .3s ease;
}

.public-item__content h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    color: #045B4C;
    margin-bottom: 20px;
}

.public-item__content,
.public-item__content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: #000;
}

.public-item__content p {
    margin-bottom: 35px;
}

.public-item__content {
    padding: 25px 35px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.public-item__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.btn--more {
    display: inline-block;
    max-width: 170px;
    margin: 0px 20px 20px auto;
    text-transform: uppercase;
    cursor: pointer;
}

.public {
    margin-bottom: 150px;
}

.public-items {
    padding-bottom: 25px;
}

.public-items .splide__track {
    padding-bottom: 35px;
}

.public-items .splide__pagination__page.is-active {
    background: rgba(20,146,132,0.5);
    height: 14px;
    width: 14px;
    transform: scale(1);
}

.public-items .splide__pagination__page {
    background: rgba(20,146,132,0.15);
    height: 14px;
    width: 14px;
    margin: 0px 18px;
}

.btn--center {
    margin: 0 auto;
    display: inline-block;
}

.btn-cta {
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
}

.advantage-items {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.advantage-item {
    padding: 35px;
}

.advantage-item:nth-child(8n+1),
.advantage-item:nth-child(8n+3),
.advantage-item:nth-child(8n+6),
.advantage-item:nth-child(8n+8) {
    background: #149284;
}

.advantage-item:nth-child(8n+2),
.advantage-item:nth-child(8n+4),
.advantage-item:nth-child(8n+5),
.advantage-item:nth-child(8n+7) {
    background: #0C897B;
}

.advantage-item img {
    width: 125px;
    height: 125px;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.advantage-item:nth-child(8n+1) .reveal,
.advantage-item:nth-child(8n+3) .reveal,
.advantage-item:nth-child(8n+6) .reveal,
.advantage-item:nth-child(8n+8) .reveal {
    background: #149284;
}

.advantage-item:nth-child(8n+2) .reveal,
.advantage-item:nth-child(8n+4) .reveal,
.advantage-item:nth-child(8n+5) .reveal,
.advantage-item:nth-child(8n+7) .reveal {
    background: #0C897B;
}


.advantage-item{
    position: relative;
    overflow: hidden;
    min-height: 260px;
    background: linear-gradient(0deg,#0f8c82,#179487);
    color:#fff;
    cursor: pointer;
    isolation: isolate;
}


.advantage-item .card-front{
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}

.advantage-item .card-front h3{
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}


.advantage-item .reveal {
    position: absolute;
    inset: 12px;
    border-radius: 12px;
    background: rgba(0,0,0,.58);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: 400;

    opacity: 0;
    transform: translateY(22%) scale(.96);
    transform-origin: center bottom;
    transition:
            transform .45s cubic-bezier(.2,.7,.2,1),
            opacity .35s ease;
    z-index: 2;
}


.advantage-item:hover .reveal,
.advantage-item:focus-within .reveal{
    opacity: 1;
    transform: translateY(0) scale(1);
}


.advantage-item:hover .card-front,
.advantage-item:focus-within .card-front{
    transform: scale(.985);
    filter: brightness(.92);
}


@media (prefers-reduced-motion: reduce){
    .advantage-item .card-front,
    .advantage-item .reveal{ transition: none !important; }
}

.advantage {
    margin-bottom: 100px;
}

.partner-splide .splide__track {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

.partner-splide .splide__arrow {
    background: unset;
    width: 40px;
    height: 40px;
}

.footer {
    background: #149284;
    padding: 30px 0 70px;
}

.footer-logo {
    max-width: 90px;
    width: 100%;
    margin-bottom: 20px;
}

.footer-social {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.social-menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
}

.footer-social li {
    margin-right: 3px;
}

.footer-social li:last-child {
    margin-right: 0;
}

.social-menu li a {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    color: #BAE2DE;
    text-decoration: none;
}

.footer-social li a img {
    width: 30px;
    height: 30px;
}

.footer-inn__menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-inn__menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: block;
    transition: all .3s ease;
}

.footer-inn__menu li a:hover {
    color: #d5d5d5;
    transition: all .3s ease;
}

.footer-inn__menu li {
    margin-bottom: 16px;
}

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

.footer-inner {
    display: flex;
}

.footer-inn__left {
    margin-right: 50px;
}

.footer-inn__center {
    margin-right: 50px;
}

ul {
    margin: 0;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
}

.footer-right__item ul {
    padding: 0;
    list-style: none;
}

.footer-right__item {
    display: flex;
    align-items: start;
}

.footer-right__item img {
    margin-right: 16px;
}

.footer-right__item {
    margin-bottom: 15px;
}

.footer-right__item:last-child {
    margin-bottom: 0;
}

.footer-right__item a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
    transition: all .3s ease;
}

.footer-right__item a:hover {
    color: #d5d5d5;
    transition: all .3s ease;
}

.company-left h2 {
    margin-bottom: 35px;
}

.company-left p {
    margin-bottom: 35px;
}

.map img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 768px) {
    .advantage-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-wrapper,
    .footer-inner {
        flex-direction: column;
    }
    .footer-inn__left,
    .footer-inn__center {
        margin-bottom: 20px;
        margin-right: 0;
    }
    .footer-inn__right {
        margin-bottom: 20px;
    }
    .partner-splide li {
        max-height: 200px;
    }

    .partner-splide li img {
        object-fit: contain;
        height: 100%;
    }
    .company-left {
        margin-right: 0;
    }
}

@media (max-width: 577px) {
    .propose-inner {
        flex-direction: column;
    }
    .propose-left {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .advantage-items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .public-item {
        max-width: 600px;
    }
    .partner-splide li {
        max-height: 120px;
    }
    .advantage,
    .public {
        margin-bottom: 50px;
    }
    .company-left a,
    .link-main,
    .btn--center {
        width: 100%;
        text-align: center;
    }
    .company-left {
        margin-right: 0;
    }
    .title {
        margin-bottom: 50px;
    }
    .direct {
        padding: 40px 0;
    }
    .direct-items {
        margin-bottom: 40px;
    }
    .btn--more {
        max-width: unset;
        width: 100%;
        text-align: center;
        margin: 0 0px 20px;
    }
    .footer {
        padding-bottom: 30px;
    }
}

.phones a,
.login {
    transition: all .3s ease;
}

.phones a:hover {
    color: #d5d5d5;
    transition: all .3s ease;
}

.login span {
    transition: all .3s ease;
}

.login:hover span {
    opacity: 1;
    transition: all .3s ease;
}

.tal {
    text-align: left;
}

.catalog {
    padding: 45px 0 200px;
}

.catalog-item {
    background: #fff;
    box-shadow: 0 8px 19px rgba(0,0,0, 0.1);
}

.catalog-item a {
    text-decoration: none;
    color: #004237;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
}

.catalog-inner {
    padding: 7px 22px;
    display: flex;
    align-items: center;
}

.catalog-item img {
    margin-right: 20px;
    object-fit: contain;
    width: 46px;
    height: 46px;
}

.catalog-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.catalog-item {
    transition: all .3s ease;
}

.catalog-item:hover {
    transform: scale(1.1);
    background: #149284;
    transition: all .3s ease;
}

.catalog-item img {
    transition: all .2s ease;
}

.catalog-item:hover img {
    filter: brightness(0) invert(1);
    transition: all .2s ease;
}

.catalog-item a {
    transition: all .2s ease;
}

.catalog-item:hover a {
    color: #fff;
    transition: all .2s ease;
}

@media (max-width: 768px) {
    .catalog-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 577px) {
    .catalog-items {
        grid-template-columns: repeat(1, 1fr);
    }
}

.main {
    min-height: 90vh;
}

.product-hero{
    margin: 30px 0 100px;
}

.hero-grid{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: start;
}

/* GALLERY */
.product-gallery{
    background: white;
    max-width: 530px;
    width: 100%;
}
.product-gallery .splide{
    border-radius: 12px;
    overflow:hidden;
}
#product-slider .splide__slide{
    display:flex; align-items:center; justify-content:center;
    height: 380px;
    background: var(--bg);
}
#product-slider img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}

/* INFO SIDE */
.product-info h1{
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    color: #045B4C;
    margin-bottom: 35px;
}
.meta{
    font-size: 16px;
    color: #A1A1A1;
    margin-bottom: 20px;
    font-weight: 500;
}
.meta b {
    color: #A1A1A1;
    font-weight:700;
}
.desc{
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
    color: #000;
}

.product-info__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-info {
    height: 100%;
}

.product-info__bottom {
    display: flex;
    align-items: center;
}

.actions__left {
    margin-right: 40px;
}

/* ---------- TABS ROW ---------- */
.ptabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    overflow: auto hidden;
    border-bottom: 2px solid #149284;
    scrollbar-width: none;
}
.ptabs::-webkit-scrollbar { display: none; }

/* ---------- TAB BUTTON ---------- */
.ptab {
    appearance: none;
    border: none;
    background: #fff;
    cursor: pointer;
    padding: 14px 18px;
    min-width: 180px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .02em;
    font-weight: 500;
    color: #045B4C;
    white-space: nowrap;
    transition: color .15s ease, background .15s ease, box-shadow .15s ease, transform .1s ease;
    margin: 0;
}
.ptab:focus-visible {
    outline: none;
}

.underline {
    height: 0;
}

.ptab[aria-selected="true"] {
    color: #fff;
    background: #15847a;
    font-weight: 700;
}

.product-tabs { padding: 0 16px 24px; }


.ptab-panel {
    display: none;
    opacity: 0;
    background: #fff;
    color: #1e293b;
    line-height: 1.6;
    font-size: 15px;
    padding: 45px;
    transition: opacity .3s ease, transform .3s ease;
}
.ptab-panel.is-active {
    display: block;
    opacity: 1;
}

/* ---------- TYPO INSIDE PANEL ---------- */
.ptab-panel h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #1e293b;
}
.ptab-panel ul { margin: 8px 0 0 18px; }
.ptab-panel li { margin: 6px 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .ptabs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
    .ptabs { grid-template-columns: repeat(2, 1fr); }
    .ptab { min-width: 160px; padding: 12px 16px; font-size: 12px; }
}
@media (max-width: 420px) {
    .ptabs { grid-template-columns: 1fr; }
}

.ptab-panel h1,
.ptab-panel h2,
.ptab-panel h3,
.ptab-panel h4,
.ptab-panel h5,
.ptab-panel h6 {
    color: #045B4C;
}

.ptab-panel h3,
.ptab-panel h4,
.ptab-panel h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 20px;
}

.ptab-panel ul,
.ptab-panel ol {
    padding-left: 22px;
    margin: 0;
}

.ptab-panel li {
    font-size: 16px;
    font-weight: 400;
}


#product-slider .splide__pagination__page.is-active {
    background: rgba(20,146,132,0.5);
    height: 8px;
    width: 8px;
}

#product-slider .splide__pagination__page {
    background: rgba(20,146,132,0.15);
    height: 8px;
    width: 8px;
}

#product-slider .splide__pagination li {
    margin: 0 10px;
}

@media (max-width: 768px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
        align-items: start;
    }
    .product-gallery {
        max-width: 800px;
        margin-bottom: 20px;
    }
    .desc {
        margin-bottom: 20px;
    }
    .product-hero {
        margin-bottom: 50px;
    }
}

/* ====== Обгортка ====== */
.table-wrap{
    background:#fff;
    border-radius:12px;
    box-shadow:0 6px 24px rgba(2,6,23,.06);
    padding:10px;
}

/* ====== Базова таблиця ====== */
.table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    font-size:15px;
    color:#1e293b;
}
.table thead th{
    background:#f8fafb;
    font-weight:700;
    text-align:left;
    padding:14px 16px;
    border-bottom:1px solid #e6eaee;
    white-space:nowrap;
}
.table tbody td,
.table tbody th{
    padding:14px 16px;
    border-bottom:1px solid #e6eaee;
    vertical-align:top;
}
.table tbody tr:last-child td,
.table tbody tr:last-child th{ border-bottom:none; }

.table a{
    color:#149284;
    font-weight:700;
    text-decoration:none;
    border-bottom:1px dashed rgba(20,146,132,.4);
}
.table a:hover{ border-bottom-color:transparent; }

/* ====== Варіант 1: "ключ-значення" (2 колонки з th у tbody) ====== */
.table-kv tbody th{
    width:260px;
    white-space:nowrap;
    color:#045B4C;
    font-weight:700;
    background:#f9fbfb;
    border-right:1px solid #e6eaee;
}

/* ====== Мобільна адаптація без скролів ====== */
@media (max-width: 760px){

    /* KV-таблиця: кожен рядок стає карткою */
    .table-kv thead{ display:none; }
    .table-kv, .table-kv tbody, .table-kv tr{ display:block; width:100%; }
    .table-kv tr{
        border:1px solid #e6eaee;
        border-radius:12px;
        padding:8px 0;
        margin-bottom:12px;
        background:#fff;
    }
    .table-kv tbody th{
        display:block;
        width:auto;
        background:transparent;
        border-right:none;
        border-bottom:0;
        padding:10px 12px 4px;
        color:#045B4C;
        font-size:13px;
    }
    .table-kv tbody td{
        display:block;
        padding:4px 12px 10px;
        border-bottom:0;
    }

    /* Грід-таблиця (багатоколонкова, напр. Реагенти) → картки з лейблами */
    .table-grid thead{ display:none; }
    .table-grid, .table-grid tbody, .table-grid tr, .table-grid td{ display:block; width:100%; }
    .table-grid tr{
        border:1px solid #e6eaee;
        border-radius:12px;
        padding:6px 0 8px;
        margin-bottom:12px;
        background:#fff;
    }
    .table-grid td{
        display:grid;
        grid-template-columns: 140px 1fr;
        gap:8px;
        padding:10px 12px;
        border-bottom:1px solid #eef2f6;
    }
    .table-grid td:last-child{ border-bottom:0; }

    /* лейбл підтягується через data-label, яке JS додасть сам */
    .table-grid td::before{
        content: attr(data-label);
        font-weight:700;
        color:#045B4C;
        white-space:nowrap;
    }
    .table-grid td,
    .table-kv td,
    .ptab-panel li {
        font-size: 13px;
    }
}

@media (max-width: 577px) {
    .ptab-panel {
        padding: 14px 7px;
    }
    .table-grid td {
        font-size: 12px;
    }
    .table-kv td {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .login {
        margin-right: 0;
        justify-content: center;
    }
    .btn {
        justify-content: center;
    }
}

.hero-slide {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top center;
}

.propose-inner {
    background-size: cover;
    padding: 100px 0;
}

.prop-wrapper {
    background: linear-gradient(to right, #149284, #69B9B1);
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 8px 19px rgba(0,0,0,0.1);
    border-radius: 100px;
    padding: 30px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s ease;

}

.propose-wrapper a:hover .prop-wrapper {

}

.propose-wrapper a .prop-right img {
    transition: all .3s ease;
}

.propose-wrapper a:hover .prop-right img {
    transform: translateX(10px);
    transition: all .3s ease;
}

.prop-left {
    max-width: 750px;
    width: 100%;
    margin-right: 20px;
}

.prop-left h2 {
    font-size: 33px;
    font-weight: 700;
    line-height: 120%;
    color: #fff;
    margin-bottom: 13px;
}

.prop-left,
.prop-left p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #fff;
}

@media (max-width: 992px) {
    .propose-inner {
        -webkit-background-size: contain;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

@media (max-width: 768px) {
    .prop-left h2 {
        font-size: 25px;
    }
    .prop-wrapper {
        border-radius: 30px;
        padding: 20px 20px;
        transition: all .3s ease;
    }
    .propose-wrapper a .prop-right img {
        width: 40px;
    }
    .propose-inner {
        padding: 50px 0;
    }
    .prop-left h2 {
        font-size: 22px;
    }

}

@media (max-width: 577px) {
    .public-item__inner figure {
        max-height: 170px;
    }
    .hero-copy {
        max-width: 820px;
        padding: 0 40px;
    }
}

/* Sale page */

.sale {
    padding: 30px 0 100px;
}

.btn {
    cursor: pointer;
}

.sale-items {
    display: flex;
    flex-direction: column;
}

.sale-item {
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    background: #fff;
}

.sale-inner {
    padding: 20px 110px 20px 20px;
    display: flex;
}

.sale-left {
    max-width: 360px;
    margin-right: 60px;
    width: 100%;
}

.sale-left img {
    max-width: 360px;
    width: 100%;
    object-fit: cover;
}

.sale-item a {
    color: #000;
    text-decoration: none;
}

.sale-right h1,
.sale-right h2,
.sale-right h3,
.sale-right h4,
.sale-right h5,
.sale-right h6 {
    color: #045B4C;
}

.sale-right h1,
.sale-right h2,
.sale-right h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 35px;
}

.sale-right h4,
.sale-right h5,
.sale-right h6 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 25px;
}

.sale-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sale-right,
.sale-right p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #000;
}

.sale-right .sale-button {
    margin-left: auto;
}

.sale-item {
    margin-bottom: 50px;
}

.sale-item:last-child {
    margin-bottom: 0;
}

.sale-content {
    margin-bottom: 30px;
}

@media (max-width: 993px) {
    .sale-inner {
        padding: 20px 20px 20px 20px;
    }
    .sale-content {
        max-width: 450px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .sale-inner {
        flex-direction: column;
        align-items: center;
    }
    .sale-left {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .sale-right,
    .sale-content {
        max-width: 800px;
        width: 100%;
    }
}

@media (max-width: 577px) {
    .sale-right h1, .sale-right h2, .sale-right h3 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 15px;
    }
    .sale-right .sale-button {
        margin-left: unset;
        width: 100%;
    }
    .sale-right .sale-button .btn {
        width: 100%;
    }
    .sale {
        padding: 30px 0 30px;
    }
}

.singlesale-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    position: relative;
}

.singlesale-box__img {
    max-width: 310px;
    width: 100%;
}
.singlesale-box__img img {
    width: 100%;
    height: auto;
    display: block;
}

.singlesale-box__body {
    flex: 1;
}

.singlesale-box__title {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 700;
    color: #045B4C;
}

.singlesale-box ul {
    margin: 0;
    padding-left: 24px;
    font-size: 16px;
    font-weight: 400;
}
.singlesale-box ul li {
    margin-bottom: 6px;
}

.singlesale-box__badge {
    display: inline-block;
    background: #D9D9D9;
    color: #149284;
    padding: 10px 10px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 11px;
    width: 90px;
    height: 90px;
    text-align: center;
    display: flex;
    align-items: center;
}



.singlesale {
    padding: 30px 0 40px;
}

.singlesale-content h1,
.singlesale-content h2,
.singlesale-content h3 {
    margin-bottom: 35px;
    color: #045B4C;
}

.singlesale-content,
.singlesale-content p {
    color: #000;
}

.singlesale-box {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .singlesale-box {
        flex-direction: column;
        margin-top: 20px;
    }
    .singlesale-box__img {
        max-width: 100%;
    }
}

@media (max-width: 577px) {
    .singlesale-content h1, .singlesale-content h2, .singlesale-content h3 {
        margin-bottom: 20px;
        color: #045B4C;
        font-size: 22px;
    }
    .singlesale-box {
        padding: 0;
    }
}

/* Direct Items */

.direct-wrapper {
    position: relative;
    z-index: 11;
}

.direct-items{
    max-width:100%;
    width:100%;
    margin:0 auto 75px;
    display:grid;
    grid-template-columns:repeat(5, minmax(0,1fr));
    gap:20px;
    overflow:visible;
}

.direct-item{
    background:#fff;
    min-height:120px;
    box-sizing:border-box;
    position:relative;
    z-index:0;
    will-change:transform;
    transition:
            transform .25s ease,
            background-color .25s ease,
            box-shadow .25s ease;
    transform-origin:center;
}

.direct-item a{
    display:block;
    height:100%;
    text-decoration:none;
    color:#004237;
    text-transform:uppercase;
    font-size:13px;
    font-weight:600;
}

.direct-inner{
    height:100%;
    padding: 16px 16px 16px 16px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:14px;
}

.direct-icon img{
    width:56px;
    height:56px;
    object-fit:contain;
    display:block;
    transition:filter .25s ease;
}

.direct-text{
    line-height:1.2;
    min-height:2.4em;
    transition:color .25s ease;
    word-break: break-word;
    font-size: 12px;
}


.direct-item:hover{
    transform:scale(1.12);
    background:#149284;
    box-shadow:0 16px 36px rgba(0,0,0,.12);
    z-index:10;
}

.direct-item:hover .direct-text{ color:#fff; }
.direct-item:hover .direct-icon img{ filter:brightness(0) invert(1); }

.link-main {
    background-color: #149284;
    border: 1px solid #149284;
    color: #fff;
    padding: 7px 40px;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .3s ease;
    margin: 0 auto;
    display: inline-block;
}

.link-main:hover {
    transition: all .3s ease;
    background: transparent;
    color: #149284;
}

.link-wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.direct {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position:center;
    background-attachment: fixed;
}

.company-right img {
    max-width: 100%;
}



@media (max-width: 992px) {
    .whitespace {
        height: 84px;
        margin-bottom: 10px;
    }
    .direct-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .company-wrapper {
        flex-direction: column;
    }
    .company-left {
        margin-bottom: 15px;
    }
    .hero,
    .company {
        margin-bottom: 50px;
    }
    .direct-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 577px) {
    .direct-items {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 577px) {
    .propose-inner {
        flex-direction: column;
    }
    .propose-left {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .advantage-items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .public-item {
        max-width: 600px;
    }
    .partner-splide li {
        max-height: 120px;
    }
    .advantage,
    .public {
        margin-bottom: 50px;
    }
    .company-left a,
    .link-main,
    .btn--center {
        width: 100%;
        text-align: center;
    }
    .company-left {
        margin-right: 0;
    }
    .title {
        margin-bottom: 50px;
    }
    .direct {
        padding: 40px 0;
    }
    .direct-items {
        margin-bottom: 40px;
    }
    .btn--more {
        max-width: unset;
        width: 100%;
        text-align: center;
        margin: 0 0px 20px;
    }
    .footer {
        padding-bottom: 30px;
    }
}

/* Modal */

.modal {
  display: none;
  width: 100%;
  height: 100%;
  padding: 30px 15px;
  overflow-y: auto;

  background-color: rgba(0, 0, 0, 0.9);

  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
}

.modal.show {
  display: block;
}

.modal__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.modal__content {
  width: 100%;
  max-width: 400px;
  padding: 25px;
  position: relative;

  background-color: #fff;
  opacity: 0;

  transform: scale(0.5);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.modal__header {
  margin-bottom: 25px;

  text-align: center;
}

.modal__icon {
  margin-bottom: 10px;
}

.modal__title {
  padding-bottom: 10px;

  font-size: 18px;
  color: #045B4C;
  font-weight: 600;
  line-height: 1.2;
border-bottom: 1px solid #045B4C;
}


.modal__footer {
  margin-top: 25px;
  padding-top: 25px;

  border-top: 1px solid #e8e8e8;

  text-align: center;
}

.modal__footer-title {
  margin-bottom: 10px;

  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #2c2c2c;
}

.modal__contacts {
  font-size: 14px;
  color: #2c2c2c;
  font-style: normal;
}

.modal__contacts p {
  margin-bottom: 3px;
}

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

.modal__contacts a:hover {
  text-decoration: underline;
}

.modal__close {
  width: 20px;
  height: 20px;
  padding: 0;

  background: none;
  border: none;
  cursor: pointer;

  position: absolute;
  top: -20px;
  right: -30px;
  z-index: 1;

  transition: transform 0.2s linear;
}

.modal__close:focus {
  outline: none;
}

.modal__close:hover {
  transform: rotate(90deg);
}

.modal__close img {
  display: block;
}

@media (max-width: 992px) {
	.asp_w_container {
		display: none;
}
}

.form-inner label,
.form-inner input,
.form-inner textarea {
	font-family: 'Montserrat', sans-serif;
}

.form-inner label {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: #045B4C;
	margin-bottom: 30px;
}

.form-inner input,
.form-inner textarea {
	border: none;
	border-bottom: 2px solid #D9D9D9;
	color: #939598;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.2;
	width: 100%;
	padding: 5px 0;
}

.form-inner textarea {
	resize: vertical;
	min-height: 30px;
	max-height: 30px;
}

.form-inner {
	margin-bottom: 40px;
}

.form-inner:last-child {
	margin-botton: 20px;
}

.form-text,
.form-text a {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2;
	color: #939598;
}

.form-text a {
	text-decoration: underline;
}

.form-text {
	margin-bottom: 10px;
	text-align: center;
}

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

.text-center p {
	    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.form-inner__span {
	display: block;
	margin-bottom: 10px;
}

.form-inner input:focus, .form-inner textarea:focus {
  outline: none;
  border-bottom: 2px solid #045B4C; 
}

.form-inner input, .form-inner textarea {
	color: #045B4C;
}

.form-inner input:placeholder, .form-inner textarea:placeholder {
	color: #939598;
}