/* START HEADER */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --site-header-height: 104px;
    --site-header-side-gap: 24px;
    --site-header-inner-gap: 20px;
    --site-shell-max-width: 1336px;
    --site-dropdown-content-offset: 28px;
}
html{
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    width: 100%;
    overflow-x: clip;
    padding-top: var(--site-header-height);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(18, 24, 39, 0.08);
    backdrop-filter: blur(12px);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, background 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, opacity;
}

header.hide {
    transform: translate3d(0, calc(-100% - 28px), 0);
    opacity: 0.01;
    pointer-events: none;
}

body.nav-open {
    overflow: hidden;
}

header .container {
    width: 100%;
    max-width: var(--site-shell-max-width);
    margin: 0 auto;
    min-height: var(--site-header-height);
    padding: 12px var(--site-header-side-gap);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--site-header-inner-gap);
    height: 100%;
    position: relative;
    overflow: visible;
    transition: min-height 0.28s ease, padding 0.28s ease, gap 0.28s ease;
}

/* LOGO */
.logo {
    flex-shrink: 0;
    display: block;
    position: relative;
    z-index: 20;
    margin: 0;
    transition: transform 0.25s ease, margin 0.28s ease, flex-basis 0.28s ease;
}

.logo img {
    display: block;
    width: 132px;
    height: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    transition: width 0.28s ease, margin 0.28s ease;
}
@media (min-width: 769px) {
    header{
        height: 105px;
    }
    .logo img{
        margin-top: 60px;
    }
}

/* NAV */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    padding-left: 0;
    margin-top: 0;
    transition: opacity 0.25s ease;
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px;
    margin-bottom: 0px;
}

.menu > li {
    position: relative;
    font-weight: 800;
}

.menu > li.has-children::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: var(--site-dropdown-content-offset);
    display: none;
}

.menu > li.has-children:hover::after {
    display: block;
}

.menu > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 15px;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 800;
    font-variation-settings: "wght" 800;
    color: #000000;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.menu a.is-not-clickable {
    cursor: default;
    pointer-events: none;
}

.menu > li.current-menu-item > a,
.menu > li:hover > a {
    background: #f1f1f1;
}

/* PHONE BOX */
.nav-menu-phone {
    flex-shrink: 0;
    margin-top: 0;
    align-self: center;
    transition: transform 0.25s ease, max-width 0.28s ease;
}

.nav-menu-phone a {
    min-width: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 46px;
    padding: 0 18px;
    background: #f3c400;
    color: #000000;
    text-decoration: none;
    font-family: "Roboto Flex", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    transition: min-height 0.28s ease, padding 0.28s ease, gap 0.28s ease, font-size 0.28s ease, width 0.28s ease;
}

@media (min-width: 1280px) {
    header .container {
        align-items: center;
    }

    .nav-menu,
    .nav-menu-phone {
        align-self: center;
        margin-top: 0;
    }

    .menu {
        min-height: 58px;
    }

    .menu > li {
        display: flex;
        align-items: center;
    }

    .menu > li > a,
    .nav-menu-phone a {
        height: 46px;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
    }
}

.nav-menu-phone:hover img {
    filter: brightness(0) saturate(100%);
}

.nav-menu-phone img {
    width: 23px;
    height: 23px;
    object-fit: contain;
    transition: 0.3s;
}

.nav-menu-phone span {
    white-space: nowrap;
    font-size: 20px;
}

.nav-toggle,
.nav-backdrop {
    display: none;
}

.menu__toggle {
    display: none;
}

/* DROPDOWN */
.sub-menu,
.sub-sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-menu {
    position: absolute;
    top: calc(100% + var(--site-dropdown-content-offset));
    left: 0;
    width: max-content;
    min-width: max-content;
    max-width: 90vw;
    background: rgba(0, 0, 0, 0.96);
    display: none;
    z-index: 999;
    padding: 0;
}

.menu > li:hover > .sub-menu {
    display: block;
}

.sub-menu > li {
    position: relative;
    width: 100%;
}

.sub-menu > li > a,
.sub-sub-menu li a
{
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    margin: 0;
    text-decoration: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    transition: background 0.25s ease;
}

.sub-menu > li:hover > a,
.sub-menu > li.current-menu-item > a {
    background: #F3BF01;
    color: #000;
}

/* DRUGI NIVO */
.sub-sub-menu {
    position: absolute;
    top: 0;
    left: calc(100% - 1px);
    width: max-content;
    min-width: max-content;
    max-width: 90vw;
    background: rgba(0, 0, 0, 0.96);
    display: none;
    padding: 0;
    z-index: 1000;
}

.sub-menu > li:hover > .sub-sub-menu,
.sub-menu > li > .sub-sub-menu:hover {
    display: block;
}

.sub-sub-menu li {
    width: 100%;
}

.sub-sub-menu li a:hover,
.sub-sub-menu li.current-menu-item > a {
    background: #F3BF01;
    color: #000;
}

header.is-scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 16px 35px rgba(18, 24, 39, 0.14);
}

header.is-scrolled .container {
    min-height: calc(var(--site-header-height) - 8px);
}

/* RESPONSIVE */
@media (max-width: 1500px) {
    .nav-menu,
    .nav-menu-phone {
        align-self: center;
    }

    .nav-menu-phone {
        display: flex;
        align-items: center;
    }

    .menu > li > a {
        font-size: 14px;
        padding: 0 12px;
        min-height: 58px;
    }

    .nav-menu-phone a {
        font-size: 16px;
        min-height: 58px;
        padding: 0 14px;
    }

    .sub-menu {
        width: max-content;
        min-width: max-content;
        max-width: 90vw;
    }

    .sub-menu > li > a {
        font-size: 18px;
        padding: 20px;
    }

    .sub-sub-menu {
        width: max-content;
        min-width: max-content;
        max-width: 90vw;
    }

    /*.sub-sub-menu li a {*/
    /*    font-size: 16px;*/
    /*    font-family: 'Inter', sans-serif;*/
    /*}*/
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .nav-menu,
    .nav-menu-phone {
        align-self: center;
    }

    .nav-menu-phone {
        display: flex;
        align-items: center;
    }

    .nav-menu-phone a {
        min-height: 58px;
    }
}

@media (max-width: 1279px) {
    :root{
        --site-header-height: 88px;
        --site-header-side-gap: 18px;
        --site-header-inner-gap: 12px;
    }

    header {
        overflow: visible;
    }

    .hero-banner-with-overlay {
        margin-top: 0;
    }

    header .container {
        max-width: none;
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 0;
        padding-right: 0;
        gap: 10px;
        overflow: visible;
        position: static;
    }

    .logo {
        margin-bottom: 0;
        order: 1;
        flex: 0 0 104px;
        margin-left: var(--site-header-side-gap);
    }

    .logo img {
        width: 100px;
        max-width: 100%;
    }

    header.is-scrolled .container {
        min-height: 72px;
        padding-top: 8px;
        padding-bottom: 8px;
        gap: 8px;
    }

    header.is-scrolled .logo {
        flex: 0 0 88px;
        margin-left: 12px;
    }

    header.is-scrolled .logo img {
        width: 82px;
    }

    .nav-menu-phone {
        display: flex;
        justify-content: center;
        order: 2;
        flex: 1 1 auto;
        max-width: 240px;
        min-width: 0;
    }

    header.is-scrolled .nav-menu-phone {
        max-width: 196px;
    }

    .nav-menu-phone a {
        min-height: 50px;
        padding: 0 12px;
        gap: 10px;
        width: 100%;
        justify-content: center;
        font-size: 16px;
        border-radius: 0;
    }

    header.is-scrolled .nav-menu-phone a {
        min-height: 42px;
        padding: 0 10px;
        gap: 8px;
    }

    .nav-menu-phone img {
        width: 18px;
        height: 18px;
    }

    header.is-scrolled .nav-menu-phone img {
        width: 16px;
        height: 16px;
    }

    .nav-menu-phone span {
        font-size: 14px;
        line-height: 1.15;
    }

    header.is-scrolled .nav-menu-phone span {
        font-size: 13px;
    }

    .nav-toggle {
        order: 3;
        width: 48px;
        height: 48px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: #D10005;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-left: 0;
        position: relative;
        z-index: 1201;
        cursor: pointer;
        flex: 0 0 48px;
        margin-right: var(--site-header-side-gap);
        transition: width 0.28s ease, height 0.28s ease, margin 0.28s ease;
    }

    header.is-scrolled .nav-toggle {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        margin-right: 12px;
    }

    body.nav-open .nav-toggle {
        background: #d10005;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    header.is-scrolled .nav-toggle span {
        width: 20px;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - var(--site-header-height));
        margin-top: 0;
        padding: 0;
        background: #000000;
        box-shadow: 0 18px 45px rgba(18, 24, 39, 0.16);
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
        z-index: 1200;
    }

    body.nav-open .nav-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-backdrop {
        display: none !important;
    }

    .menu {
        width: 100%;
        margin: 0;
        min-width: 0;
        padding-top: 0;
        padding-left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        position: relative;
    }

    .menu > li.has-children::after {
        display: none;
    }

    .menu > li > a {
        min-height: 0;
        display: block;
        padding: 13px 22px;
        font-size: 18px;
        line-height: 1.3;
        background: transparent !important;
        color: #ffffff;
    }

    .menu a.is-not-clickable[data-menu-toggle] {
        pointer-events: auto;
        cursor: pointer;
    }

    .menu > li.current-menu-item > a {
        background: #f3c400 !important;
        color: #111111;
    }

    .menu li.is-open > a {
        background: #f3c400 !important;
        color: #111111 !important;
    }

    .menu li:focus-within > a {
        background: #f3c400 !important;
        color: #111111 !important;
    }

    .sub-menu,
    .sub-sub-menu {
        position: static;
        display: none !important;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        background: #000000;
        padding: 0;
        border-left: 0;
        margin-left: 0;
    }

    .sub-menu > li > a,
    .sub-sub-menu li a {
        color: rgba(255, 255, 255, 0.78);
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        padding: 12px 28px;
        line-height: 1.35;
        background: #000000;
        white-space: normal;
    }

    .sub-sub-menu {
        padding: 0;
        margin-top: 0;
    }

    .sub-sub-menu li a {
        padding-left: 36px;
    }

    .menu li.is-open > ul {
        display: block !important;
    }

    .menu li:focus-within > ul {
        display: block !important;
    }

    .menu__toggle {
        display: none !important;
    }

    .sub-menu > li:hover > a,
    .sub-sub-menu li a:hover {
        background: transparent;
        color: #ffffff;
    }
}

@media (max-width: 768px) {
    :root{
        --site-header-height: 76px;
        --site-header-side-gap: 14px;
        --site-header-inner-gap: 10px;
    }

    header .container {
        gap: 10px;
    }

    .logo {
        margin-left: var(--site-header-side-gap);
    }

    .nav-toggle {
        margin-right: var(--site-header-side-gap);
    }

    .logo img {
        width: 88px;
    }

    .nav-menu-phone {
        max-width: 156px;
    }

    .nav-toggle {
        width: 46px;
        height: 46px;
        border-radius: 0;
        flex-basis: 46px;
    }

    .nav-menu-phone a {
        min-height: 46px;
        padding: 0 12px;
    }

    .nav-menu-phone span {
        font-size: 15px;
    }

}

@media (max-width: 420px) {
    :root{
        --site-header-height: 70px;
        --site-header-side-gap: 12px;
        --site-header-inner-gap: 8px;
    }

    header .container {
        gap: 8px;
    }

    .logo {
        flex-basis: 64px;
    }

    .logo img {
        width: 64px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 0;
    }

    .nav-toggle span {
        width: 20px;
    }

    .nav-menu-phone a {
        min-height: 42px;
        padding: 0 8px;
        gap: 6px;
    }

    .nav-menu-phone {
        max-width: 132px;
    }

    .nav-menu-phone img {
        width: 14px;
        height: 14px;
    }

    .nav-menu-phone span {
        display: inline;
        font-size: 10px;
        line-height: 1.1;
        white-space: normal;
        text-align: center;
    }

    .menu > li > a {
        padding-left: 18px;
        font-size: 17px;
    }
}
/* END HEADER */

/* START HERO BANNER WITH OVERLAY */
.hero-banner-with-overlay{
    position: relative;
    height: 700px;
    margin-top: 0;
    overflow: hidden;
    background: #140707;
    font-family:'Inter', sans-serif;
}

.hero-banner-with-overlay::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.28) 0%,
                    rgba(0, 0, 0, 0.12) 38%,
                    rgba(0, 0, 0, 0.22) 100%
            ),
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.08) 0%,
                    rgba(0, 0, 0, 0.22) 100%
            );
}

/* pozadina iza */
.hbwo__bg-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    transform: scale(1.04);
    pointer-events: none;
}

/* overlay preko cele sekcije */
.hbwo__overlay{
    position: relative;
    z-index: 2;
    min-height: 100%;
    padding-top: 118px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.76) 0%,
                    rgba(8, 4, 4, 0.60) 30%,
                    rgba(12, 6, 6, 0.56) 56%,
                    rgba(8, 4, 4, 0.82) 100%
            ),
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.18) 0%,
                    rgba(0, 0, 0, 0.30) 100%
            );
}

.hbwo__panel{
    position: absolute;
    left: max(var(--site-header-side-gap), calc((100vw - var(--site-shell-max-width)) / 2 + var(--site-header-side-gap)));
    top: 0;
    bottom: 0;
    width: min(660px, 44vw);
    display: flex;
    align-items: center;
    background:
            url("/template/trosador/assets/images/bg4.svg") top left / auto no-repeat,
            linear-gradient(180deg, rgba(120, 0, 0, 0.72) 0%, rgba(230, 0, 0, 0.78) 100%);
    z-index: 1;
    overflow: hidden;
}

.hbwo__content{
    position: relative;
    z-index: 2;
    max-width: 100%;
    color: #fff;
    padding: 45px 40px 45px 45px;
}

.hbwo__pretitle{
    display: inline-block;
    padding: 12px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.34);
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.hbwo__title{
    max-width: 680px;
    margin: 0 0 22px;
    color: #FFFFFF;
    font-size: 36px;
    font-family: 'Inter', sans-serif;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0;
}

.home-banner___text{
    max-width: 610px;
    margin: 0;
    color: #FFFFFFDE;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    line-height: 1.62;
}

.hbwo__bottom{
    margin-top: 34px;
}

.hbwo__call,
.hbwo__hours{
    min-height: 92px;
    padding: 16px 24px;
    color: #fff;
}

.hbwo__call{
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    border-left: 2px solid rgba(255,255,255,0.82);
    background: transparent;
}

.hbwo__call:hover{
    color: #fff;
    text-decoration: none;
}

.hbwo__call-label{
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.hbwo__call-number{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 35px;
    font-family:'Inter Tight', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.hbwo__call-icon{
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    filter: brightness(0) invert(1);
}

.hbwo__hours{
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
}

.hbwo__hours-day{
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.hbwo__hours-time{
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255,255,255,0.96);
}

@media (max-width: 1199px){
    .hbwo__overlay{
        padding-top: 114px;
        padding-bottom: 38px;
    }

    .hbwo__title{
        font-size: 36px;
    }

    .hbwo__panel{
        width: min(620px, 50vw);
    }

    .hbwo__content{
        padding-right: 24px;
    }
}

@media (min-width: 768px){
    .hero-banner-with-overlay{
        height: 630px;
    }

    .hbwo__bg-video{
        height: 630px;
        transform: none;
    }

    .hbwo__overlay{
        min-height: 630px;
        padding-top: 0;
        padding-bottom: 0;
        display:flex;
        align-items: stretch;
    }

    .hbwo__panel{
        position:absolute;
        left: 0;
        width: 80%;
        top:0;
        bottom:0;
        min-height:0;
    }

    .hbwo__content{
        padding: 82px 36px 64px 36px;
    }

    .hbwo__title{
        max-width: 680px;
        font-size: 44px;
        line-height: 0.98;
    }

    .home-banner___text{
        max-width: 660px;
        font-size: 18px;
        line-height: 1.48;
    }

    .hbwo__bottom{
        margin-top:34px;
        padding-top:0;
        border-top:0;
    }

    .hbwo__call{
        align-items:flex-start;
        border-left:2px solid rgba(255,255,255,0.82);
        text-align:left;
    }

    .hbwo__call-number{
        font-size:35px;
    }

    .hbwo__hours-day{
        font-size:16px;
    }

    .hbwo__hours-time{
        font-size:14px;
    }

    .hbwo__bottom .row{
        align-items: stretch;
    }
}

@media (min-width: 768px) and (max-width: 1024px){
    .hero-banner-with-overlay{
        height: 630px;
    }

    .hbwo__bg-video{
        display:block;
        height: 630px;
    }

    .hbwo__panel{
        width:80%;
    }

    .hbwo__content{
        padding: 82px 36px 64px 36px;
    }

    .hbwo__title{
        font-size:36px;
        line-height:1.05;
        letter-spacing:0;
    }
}

@media (min-width: 1025px){
    .hero-banner-with-overlay{
        height: 640px;
    }

    .hbwo__bg-video{
        height: 640px;
        transform:none;
    }

    .hbwo__overlay{
        min-height:640px;
        padding-top:0;
        padding-bottom:0;
        align-items:stretch;
    }

    .hbwo__panel{
        left:0;
        width:80%;
    }

    .hbwo__content{
        padding: 90px 36px 64px 36px;
    }
}

@media (max-width: 991px){
    .hero-banner-with-overlay,
    .hbwo__overlay{
        height: auto;
        min-height: 0;
    }

    .hero-banner-with-overlay{
        margin-top: 0;
    }

    .hbwo__overlay{
        padding-top: 0;
        padding-bottom: 0;
        display:block;
    }

    .hbwo__content{
        padding: 48px 16px 42px 16px;
    }

    .hbwo__title{
        max-width: 680px;
        font-size: 44px;
        line-height: 0.98;
        letter-spacing: -1px;
    }

    .home-banner___text{
        max-width: 100%;
        font-size: 16px;
    }

    .hbwo__bottom{
        margin-top: 28px;
        padding-top: 22px;
        border-top: 1px solid rgba(255,255,255,0.82);
    }

    .hbwo__call,
    .hbwo__hours{
        min-height: 88px;
        padding: 16px 18px;
    }

    .hbwo__call{
        align-items:center;
        border-left:0;
        text-align:center;
    }

    .hbwo__call-number{
        font-size: 32px;
    }

    .hbwo__hours-day{
        font-size: 18px;
    }

    .hbwo__hours-time{
        font-size: 16px;
    }

    .hbwo__panel{
        position:relative;
        left:auto;
        top:auto;
        bottom:auto;
        width:100%;
        min-height:0;
    }

}

@media (max-width: 575px){
    .hbwo__bg-video{
        display:none;
    }

    .hbwo__overlay{
        min-height: 560px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hbwo__pretitle{
        font-size: 14px;
        padding: 9px 14px;
        margin-bottom: 18px;
    }

    .hbwo__title{
        font-size: 34px;
        line-height: 1.02;
        letter-spacing: -0.8px;
        margin-bottom: 18px;
    }

    .home-banner___text{
        font-size: 15px;
        line-height: 1.6;
    }

    .hbwo__bottom{
        margin-top: 22px;
        padding-top: 20px;
    }

    .hbwo__call,
    .hbwo__hours{
        min-height: auto;
        padding: 18px 16px;
    }

    .hbwo__call-label{
        font-size: 16px;
    }

    .hbwo__call-number{
        font-size: 26px;
    }

    .hbwo__hours-day{
        font-size: 18px;
    }

    .hbwo__hours-time{
        font-size: 15px;
    }

    .hbwo__hours{
        width:max-content;
        max-width:100%;
        min-width:112px;
    }

    .hbwo__panel{
        left:auto;
        width:100%;
    }

    .hbwo__content{
        padding: 45px 15px 40px 15px;
    }
}

@media (min-width: 768px) and (max-width: 1024px){
    .hero-banner-with-overlay{
        height:630px;
    }

    .hero-banner-with-overlay,
    .hbwo__overlay{
        min-height:630px;
    }

    .hbwo__bg-video{
        display:block;
        height:630px;
        transform:none;
    }

    .hbwo__overlay{
        display:flex;
        align-items:stretch;
        padding-top:0;
        padding-bottom:0;
    }

    .hbwo__panel{
        position:absolute;
        left:0;
        top:0;
        bottom:0;
        width:80%;
        min-height:0;
    }

    .hbwo__content{
        padding:82px 36px 64px;
    }

    .hbwo__pretitle{
        font-size:16px;
    }

    .hbwo__title{
        max-width:680px;
        font-size:36px;
        line-height:1.05;
        letter-spacing:0;
    }

    .home-banner___text{
        max-width:660px;
        font-size:18px;
        line-height:1.48;
    }

    .hbwo__bottom{
        margin-top:34px;
        padding-top:0;
        border-top:0;
    }

    .hbwo__call,
    .hbwo__hours{
        min-height:92px;
        padding:16px 24px;
    }

    .hbwo__call{
        align-items:flex-start;
        border-left:2px solid rgba(255,255,255,0.82);
        text-align:left;
    }

    .hbwo__call-label{
        font-size:16px;
    }

    .hbwo__call-number{
        font-size:35px;
    }

    .hbwo__hours{
        width:auto;
        max-width:none;
        min-width:0;
    }

    .hbwo__hours-day{
        font-size:16px;
    }

    .hbwo__hours-time{
        font-size:14px;
    }
}

@media (min-width: 1025px){
    .hero-banner-with-overlay{
        height:640px;
    }

    .hero-banner-with-overlay,
    .hbwo__overlay{
        min-height:640px;
    }

    .hbwo__bg-video{
        height:640px;
        transform:none;
    }

    .hbwo__overlay{
        display:flex;
        align-items:stretch;
        padding-top:0;
        padding-bottom:0;
    }

    .hbwo__panel{
        left:0;
        width:80%;
    }

    .hbwo__content{
        padding:90px 36px 64px;
    }

    .hbwo__pretitle{
        font-size:16px;
    }

    .hbwo__title{
        font-size:36px;
        line-height:1.05;
        letter-spacing:0;
    }

    .home-banner___text{
        font-size:18px;
    }

    .hbwo__call-label,
    .hbwo__hours-day{
        font-size:16px;
    }

    .hbwo__call-number{
        font-size:35px;
    }

    .hbwo__hours-time{
        font-size:14px;
    }
}

.hero-banner-with-overlay .hbwo__pretitle{
    font-family:'Inter', sans-serif !important;
    font-size:16px !important;
}

.hero-banner-with-overlay .hbwo__title{
    font-family:'Inter', sans-serif !important;
    font-size:36px !important;
}

.hero-banner-with-overlay .home-banner__text,
.hero-banner-with-overlay .home-banner___text{
    font-family:'Inter', sans-serif !important;
    font-size:18px !important;
}

.hero-banner-with-overlay .hbwo__call-label,
.hero-banner-with-overlay .hbwo-call__label{
    font-family:'Inter', sans-serif !important;
    font-size:16px !important;
}

.hero-banner-with-overlay .hbwo__call-number,
.hero-banner-with-overlay .hbwo-call__number{
    font-family:'Inter Tight', 'Inter', sans-serif !important;
    font-size:35px !important;
}

.hero-banner-with-overlay .hbwo__hours-day{
    font-family:'Inter', sans-serif !important;
    font-size:16px !important;
}

.hero-banner-with-overlay .hbwo__hours-time,
.hero-banner-with-overlay .hbwo-hours-time{
    font-family:'Inter', sans-serif !important;
    font-size:14px !important;
}

@media (min-width: 1200px){
    .hero-banner-with-overlay{
        height:700px;
    }

    .hero-banner-with-overlay,
    .hbwo__overlay{
        min-height:700px;
    }

    .hbwo__bg-video{
        height:700px;
        transform:scale(1.04);
    }

    .hbwo__overlay{
        display:flex;
        align-items:center;
        padding-top:118px;
        padding-bottom:40px;
    }

    .hbwo__panel{
        left:max(var(--site-header-side-gap), calc((100vw - var(--site-shell-max-width)) / 2 + var(--site-header-side-gap)));
        width:min(660px, 44vw);
    }

    .hbwo__content{
        padding:45px 40px 45px 45px;
    }

    .hero-banner-with-overlay .hbwo__title{
        font-size:50px !important;
        line-height:0.94;
        letter-spacing:-1.6px;
    }

    .hbwo__bottom{
        margin-top:34px;
        padding-top:0;
        border-top:0;
    }

    .hbwo__call{
        align-items:flex-start;
        border-left:2px solid rgba(255,255,255,0.82);
        text-align:left;
    }

    .hbwo__hours{
        width:auto;
        max-width:none;
        min-width:0;
    }
}

@keyframes heroZoom{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.08);
    }
}
/* END HERO BANNER WITH OVERLAY */

/* START CARD SECTION */
.card-section{
    background-image:linear-gradient(180deg, #FFDADA 0%, #FFFFFF 10%);
    padding-top: 78px;
    padding-bottom: 72px;
    font-family:'Inter', sans-serif;
}

.card-section .container{
    max-width:1356px;
}

.card-section__title{
    font-family: 'Inter', sans-serif;
    max-width:920px;
    margin:0 auto 18px;
    font-size:42px;
    font-weight:600;
    letter-spacing:0.2px;
    text-align:center;
    color:#000;
}

.card-section__text{
    font-family: 'Inter', sans-serif;
    width:min(100%, 663px);
    max-width:663px;
    margin:0 auto 30px;
    font-weight: 400;
    font-size:18px;
    line-height:1.55;
    color:rgba(13, 13, 13, 0.46);
    text-align:center;
}

.card-section__divider{
    width:68px;
    height:3px;
    background:#d10005;
    border-radius:999px;
    margin:0 auto 35px;
}

.card-section .row{
    --bs-gutter-x:18px;
    --bs-gutter-y:18px;
}

@media (max-width: 991px){
    .card-section{
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .card-section__title{
        max-width: 680px;
        font-size: 34px;
        line-height: 1.12;
    }

    .card-section__divider{
        margin-bottom: 34px;
    }
}

@media (max-width: 575px){
    .card-section{
        padding-top: 42px;
        padding-bottom: 46px;
    }

    .card-section__title{
        max-width: 100%;
        font-size: 30px;
        margin-bottom: 14px;
    }

    .card-section__text{
        width:100%;
        max-width: 100%;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .card-section__divider{
        width: 64px;
        margin-bottom: 28px;
    }
}

.card-section__box{
    background:#fff;
    border:2px solid #e5e5e5;
    padding:24px 22px 26px;
    height:100%;
    min-height:502px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-decoration:none;
    transition:border-color .25s ease, box-shadow .25s ease;
}

.card-section__box:hover{
    border-color:#e10600;
    box-shadow:0 0 14px rgba(225,6,0,0.22);
}

.card-section__box img{
    width:100%;
    max-width:368px;
    height:252px;
    object-fit:cover;
    object-position:center;
    display:block;
    margin:0 auto 12px;
}

.card-box__label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding: 5px 15px 5px 15px;
    margin:0 0 12px;
    background:#d10005;
    color:#FFFFFF;
    border-radius: 0px 60px 60px 60px;
    font-size:16px;
    font-weight:400;
    text-align: start;
}
.card-box__title{
    margin:0 0 8px;
    font-size:28px;
    line-height:1.12;
    font-weight:700;
    color:#000;
}

.card-box__desc{
    text-align: center;
    margin:0;
    font-size:18px;
    line-height:1.4;
    color:#0D0D0D80;
}

/*!* large desktop *!*/
/*@media (max-width: 1399.98px){*/

/*    .card-section__box{*/
/*        padding:32px 24px 36px;*/
/*    }*/

/*    .card-box__title{*/
/*        font-size:28px;*/
/*    }*/
/*}*/

/*!* laptop / tablet horizontal *!*/
/*@media (max-width: 1199.98px){*/
/*    .card-section{*/
/*        padding:80px 0 90px;*/
/*    }*/

/*    .card-section .container{*/
/*        max-width:1140px;*/
/*    }*/


/*    .card-section__text{*/
/*        max-width:820px;*/
/*        font-size:19px;*/
/*    }*/

/*    .card-section .row{*/
/*        --bs-gutter-x:24px;*/
/*        --bs-gutter-y:24px;*/
/*    }*/

/*    .card-section__box{*/
/*        padding:28px 20px 32px;*/
/*    }*/

/*    .card-section__box img{*/
/*        max-width:220px;*/
/*        height:190px;*/
/*        margin-bottom:20px;*/
/*    }*/

/*    .card-box__label{*/
/*        font-size:15px;*/
/*        padding:9px 18px;*/
/*        min-height:40px;*/
/*        margin-bottom:18px;*/
/*    }*/

/*    .card-box__title{*/
/*        font-size:24px;*/
/*    }*/

/*    .card-box__desc{*/
/*        font-size:16px;*/
/*        line-height:1.6;*/
/*    }*/
/*}*/

/*!* tablet *!*/
/*@media (max-width: 991.98px){*/
/*    .card-section{*/
/*        padding:70px 0 80px;*/
/*    }*/


/*    .card-section__text{*/
/*        max-width:700px;*/
/*        font-size:18px;*/
/*        line-height:1.55;*/
/*    }*/

/*    .card-section__divider{*/
/*        margin-bottom:36px;*/
/*    }*/

/*    .card-section .row{*/
/*        --bs-gutter-x:20px;*/
/*        --bs-gutter-y:20px;*/
/*    }*/

/*    .card-section__box{*/
/*        padding:26px 18px 28px;*/
/*    }*/

/*    .card-section__box img{*/
/*        max-width:190px;*/
/*        height:170px;*/
/*    }*/

/*    .card-box__label{*/
/*        font-size:14px;*/
/*        padding:8px 16px;*/
/*    }*/

/*    .card-box__title{*/
/*        font-size:22px;*/
/*        margin-bottom:12px;*/
/*    }*/

/*    .card-box__desc{*/
/*        font-size:15px;*/
/*    }*/
/*}*/

/*!* mobile *!*/
/*@media (max-width: 767.98px){*/
/*    .card-section{*/
/*        padding:56px 0 64px;*/
/*    }*/

/*    .card-section__title{*/
/*        line-height:1.15;*/
/*    }*/

/*    .card-section__text{*/
/*        max-width:100%;*/
/*        font-size:16px;*/
/*        line-height:1.55;*/
/*        margin-bottom:20px;*/
/*    }*/

/*    .card-section__divider{*/
/*        width:72px;*/
/*        height:4px;*/
/*        margin-bottom:28px;*/
/*    }*/

/*    .card-section .row{*/
/*        --bs-gutter-x:0;*/
/*        --bs-gutter-y:18px;*/
/*    }*/

/*    .card-section__box{*/
/*        padding:24px 16px 26px;*/
/*    }*/

/*    .card-section__box img{*/
/*        max-width:170px;*/
/*        height:150px;*/
/*        margin-bottom:18px;*/
/*    }*/

/*    .card-box__label{*/
/*        min-height:auto;*/
/*        font-size:13px;*/
/*        padding:8px 14px;*/
/*        margin-bottom:16px;*/
/*    }*/

/*    .card-box__title{*/
/*        font-size:20px;*/
/*        line-height:1.2;*/
/*    }*/

/*    .card-box__desc{*/
/*        font-size:14px;*/
/*        line-height:1.55;*/
/*    }*/
/*}*/

/*!* small mobile *!*/
/*@media (max-width: 575.98px){*/
/*    .card-section{*/
/*        padding:48px 0 54px;*/
/*    }*/

/*    .card-section__text{*/
/*        font-size:15px;*/
/*    }*/

/*    .card-section__box{*/
/*        padding:22px 14px 24px;*/
/*    }*/

/*    .card-section__box img{*/
/*        max-width:150px;*/
/*        height:135px;*/
/*    }*/

/*    .card-box__label{*/
/*        font-size:12px;*/
/*        padding:7px 12px;*/
/*    }*/

/*    .card-box__title{*/
/*        font-size:18px;*/
/*    }*/

/*    .card-box__desc{*/
/*        font-size:13px;*/
/*    }*/
/*}*/
/* END CARD SECTION */

/* START FEATURE WITH METRICS */
.features-with-metrics{
    background: radial-gradient(at center center, #FFFFFF 0%, #FFDBDB 100%);;
    padding: 4%;
    /*padding:80px 0 58px;*/
    overflow:hidden;
    font-family:'Inter', sans-serif;
}


.features-with-metrics .container{
    max-width:1320px;
}

.fwm__top{
    align-items:flex-start;
    margin-bottom:18px;
}

.fwm__title{
    margin:0;
    max-width:620px;
    font-size:40px;
    line-height:1.1;
    font-weight:700;
    color:#000000;
    letter-spacing:0.01em;
}

.fwm__intro p{
    text-align: justify;
    width:calc(100% + 70px);
    max-width:none;
    margin:2px 0 0 10px;
    font-size:18px;
    line-height:1.38;
    color:#0D0D0D80;
}

.fwm__content{
    align-items:stretch;
    --bs-gutter-x: 0;
}

.fwm__content > .col-lg-6:first-child{
    width:600px;
    min-width:600px;
    flex:0 0 600px;
    max-width:600px;
}

.fwm__content > .col-lg-6:last-child{
    width:calc(100% - 600px);
    flex:1 1 calc(100% - 600px);
    max-width:calc(100% - 600px);
}

.fwm__image-wrap{
    width:auto;
    min-width:0;
    max-width:none;
    height:auto;
    min-height:0;
    overflow:visible;
    background:transparent;
}

.fwm__image-wrap img{
    width:600px;
    height:auto;
    display:block;
    object-fit:contain;
    object-position:top center;
}


.fwm__features{
    padding-left:10%;
    padding-bottom: 5%;
    /*padding-top:11px;*/
}

.fwm__item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:24px;
}

.fwm__icon-wrap{
    width:84px;
    min-width:84px;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    line-height:0;
    flex-shrink:0;
}

.fwm__icon{
    width:82px;
    height:82px;
    object-fit:contain;
    display:block;
}

.fwm__item-content{
    flex:1;
}

.fwm__item-title{
    margin:0 0 6px;
    font-size:20px;
    line-height:1.2;
    font-weight:700;
    color:#111;
}

.fwm__item-text{
    margin:0;
    font-size:15px;
    line-height:1.5;
    color:#9a8d8d;
}

.fwm__stats{
    margin-top:-22px;
    margin-left:-24px;
    width:calc(100% - 18px);
    background:#d10005;
    display:flex;
    align-items:stretch;
    position:relative;
    z-index:2;
}

.fwm__stat{
    flex:1 1 33.333%;
    padding:34px 20px 30px;
    position:relative;
    color:#fff;
    text-align:left;
}

.fwm__stat:first-child{
    padding-left:32px;
}

.fwm__stat:not(:last-child)::after{
    content:'';
    position:absolute;
    top:16px;
    right:0;
    width:1px;
    height:calc(100% - 32px);
    background:rgba(255,255,255,0.45);
}

.fwm__stat strong{
    display:block;
    margin-bottom:10px;
    font-size:42px;
    line-height:1;
    font-weight:600;
    color:#fff;
}

.fwm__stat span{
    display:block;
    max-width:180px;
    font-size:16px;
    line-height:1.3;
    color:#fff;
}

/* laptop */
@media (max-width: 1199.98px){
    .features-with-metrics{
        height:auto;
        padding:46px 0 52px;
    }

    .fwm__title{
        font-size:34px;
    }

    .fwm__intro p{
        font-size:16px;
    }

    .fwm__image-wrap{
        max-width:none;
        height:auto;
        min-height:0;
    }

    .fwm__features{
        padding-left:8px;
    }

    .fwm__stats{
        margin-left:-18px;
    }

    .fwm__stat{
        padding:18px 16px;
    }

    .fwm__stat strong{
        font-size:28px;
    }
}

/* tablet */
@media (max-width: 1024.98px){
    .features-with-metrics{
        height:auto;
        padding:52px 0;
    }

    .fwm__top{
        margin-bottom:24px;
    }

    .fwm__top > .col-lg-6{
        width:100%;
        flex:0 0 100%;
        max-width:100%;
    }

    .fwm__title{
        font-size:32px;
        margin-bottom:16px;
        max-width:none;
    }

    .fwm__intro p{
        width:100%;
        max-width:none;
        margin:0;
        margin-left:auto;
        margin-right:auto;
        font-size:17px;
        line-height:1.65;
        text-align:left;
    }

    .fwm__content > .col-lg-6:first-child,
    .fwm__content > .col-lg-6:last-child{
        width:100%;
        min-width:0;
        flex:0 0 100%;
        max-width:100%;
    }

    .fwm__image-wrap{
        max-width:none;
        height:auto;
        min-height:0;
        margin-bottom:24px;
    }

    .fwm__features{
        width:100%;
        padding-left:0;
        padding-right:0;
        padding-top:0;
        padding-bottom:0;
    }

    .fwm__item{
        display:grid;
        grid-template-columns:minmax(0, 1fr);
        grid-template-areas:
            "icon"
            "title"
            "content";
        align-items:start;
        column-gap:0;
        row-gap:10px;
        margin-bottom:24px;
    }

    .fwm__icon-wrap{
        grid-area:icon;
        width:58px;
        min-width:58px;
        justify-content:flex-start;
        align-self:start;
    }

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

    .fwm__item-title{
        grid-area:title;
        margin:0;
        font-size:20px;
    }

    .fwm__item-content{
        display:contents;
    }

    .fwm__item-text{
        grid-area:content;
        font-size:15px;
        line-height:1.55;
        width:100%;
    }

    .fwm__stats{
        margin:30px 0 0;
        flex-direction:column;
    }

    .fwm__stat{
        padding:20px 18px;
    }

    .fwm__stat:not(:last-child)::after{
        top:auto;
        bottom:0;
        right:22px;
        width:calc(100% - 44px);
        height:1px;
    }

    .fwm__stat strong{
        font-size:30px;
    }

    .fwm__stat span{
        max-width:100%;
        font-size:13px;
    }
}

/* mobile */
@media (max-width: 575.98px){
    .features-with-metrics{
        height:auto;
        padding:38px 0 42px;
    }

    .fwm__title{
        text-align: left;
        margin-left: 10px;
        margin-right: 10px;
        font-size:30px;
        line-height:1.12;
    }

    .fwm__intro p{
        padding-right: 15px;
        width:100%;
        max-width:100%;
        margin:0 10px 0 10px;
        font-size:18px;
        line-height:1.6;
        text-align:left;
    }
    .fwm__image-wrap{
        height:auto;
        min-height:0;
    }
    .fwm__image-wrap img{
        width:272px;
        height:275px;
        margin:0;
        max-width:100%;
        max-height:none;
        object-fit:contain;
        object-position:center top;
    }

    .fwm__item{
        grid-template-columns:minmax(0, 1fr);
        column-gap:0;
        row-gap:8px;
        margin-bottom:22px;
    }

    .fwm__icon-wrap{
        width:48px;
        min-width:48px;
    }

    .fwm__icon{
        width:48px;
        height:48px;
    }

    .fwm__item-title{
        font-size:25px;
        margin-bottom:8px;
        font-weight: 600;
    }

    .fwm__item-text{
        font-size:17px;
        line-height:1.55;
    }

    .fwm__stat strong{
        font-size:34px;
        text-align: center;
    }

    .fwm__stat span{
        font-size:13px;
        text-align: center;
    }
}

.fwm__image-wrap{
    width:auto !important;
    min-width:0 !important;
    max-width:none !important;
    height:auto !important;
    min-height:0 !important;
    background:transparent !important;
    overflow:visible !important;
}

.fwm__image-wrap img{
    display:block;
    width:calc(100vw - 48px);
    height:275px;
    max-width:100%;
    object-fit:cover;
    object-position:center top;
}

@media (min-width:576px){
    .fwm__image-wrap img{
        width:100%;
        height:500px;
    }
}

@media (min-width:768px) and (max-width:1024.98px){
    .fwm__content > .col-lg-6:first-child{
        width:100%;
        min-width:0;
        flex:0 0 100%;
        max-width:100%;
    }

    .fwm__image-wrap img{
        width:100%;
        height:500px;
    }
}

@media (min-width:1025px){
    .fwm__intro p{
        width:100%;
        max-width:100%;
    }

    .fwm__content > .col-lg-6:first-child{
        width:50%;
        min-width:0;
        flex:0 0 50%;
        max-width:50%;
    }

    .fwm__content > .col-lg-6:last-child{
        width:50%;
        flex:0 0 50%;
        max-width:50%;
    }

    .fwm__image-wrap img{
        width:100%;
        height:600px;
    }
}

@media (min-width:1025px) and (max-width:1200px){
    .fwm__intro p{
        margin-left:0;
        padding-right:18px;
        box-sizing:border-box;
        overflow-wrap:break-word;
    }
}
/* END FEATURE WITH METRICS */

/* START HERO BANNER SIMPLE */
.hero-banner{
    background-image:url('/template/trosador/assets/images/img32.jpg');
    position:relative;
    height:500px;
    overflow:hidden;
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    background-attachment:scroll;
    font-family:'Inter', sans-serif;
}

@media (min-width: 1440px){
    .hero-banner{
        background-attachment:fixed;
    }
}

.hero-banner__overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background-image: radial-gradient(
            at center center,
            rgba(0,0,0,0.12) 0%,
            rgba(0,0,0,0.35) 70%,
            rgba(0,0,0,0.7) 100%
    );
    /*background-image: radial-gradient(at center center, #00000038 0%, var(--e-global-color-text) 100%);*/
}

.hero-banner__container{
    position:relative !important;
    z-index:3;
    height:100%;
}

.hero-banner__title{
    position:absolute;
    left:12px;
    bottom:20px;
    z-index:3;
    color:#fff;
    font-family: 'Inter', sans-serif;
    font-size:42px;
    font-weight:500;
    margin:0;
    /*margin-top:0;*/
    /*margin-bottom:10px;*/
    /*margin-left:25px;*/
    /*margin-right:10px;*/
}

@media (max-width: 1024px){
    .hero-banner__title{
        left:12px;
        bottom:20px;
        font-size:30px;
    }
}

@media (max-width: 767.98px){
    .hero-banner__title{
        left:12px;
    }
}

@media (min-width: 1025px) and (max-width: 1366px){
    .hero-banner__title{
        left:12px;
        bottom:20px;
        font-size:26px;
    }
}

@media (min-width: 1367px){
    .hero-banner__title{
        left:12px;
        bottom:20px;
        font-size:42px;
    }
}

@media (min-width: 1395px){
    .hero-banner__title{
        bottom:clamp(24px, 3vw, 64px);
    }
}

/*@media (min-width: 1441px){*/
/*    .hero-banner__title{*/
/*        margin-left:clamp(10px, 6vw, 140px);*/
/*        margin-right:clamp(10px, 6vw, 140px);*/
/*    }*/
/*}*/
/* END HERO BANNER SIMPLE */

/* START WHY US */
.why-us{
    /*filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);;*/
    position:relative;
    margin: 0;
    padding: 72px 0 74px;
    overflow:hidden;
    background:#ffffff;
    font-family:'Inter', sans-serif;
}

.why-us::after{
    content:'';
    position:absolute;
    inset:0;
    background-image:url('https://trosador.co.rs/wp-content/uploads/2025/08/trosadorznak.webp');
    background-position:95% 50%;
    background-repeat:no-repeat;
    background-size:180px auto;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
    opacity:.22;
    pointer-events:none;
}

@media (min-width: 1367px){
    .why-us::after{
        opacity:.72;
    }
}

.why-us > .container{
    position:relative;
    z-index:1;
}

.wu__row{
    align-items:center;
}

.wu__row > .col-lg-4{
    display:flex;
    justify-content:flex-start;
    padding-right:calc(var(--bs-gutter-x) * .5);
}

.wu__left{
    max-width:360px;
}

.wu__title{
    margin:0 0 22px;
    font-size:42px;
    line-height:1.08;
    font-weight:700;
    color:#000;
    letter-spacing:0;
}

.wu__text{
    margin:0 0 20px;
    font-size:18px;
    line-height:1.5;
    color:#0D0D0D80;
    max-width:340px;
    text-align:left;
}

.wu__contact{
    border-left:2px solid #d10005;
    padding:14px 0 14px 16px;
}

.wu__contact-label{
    display:block;
    margin-bottom:10px;
    font-size:16px;
    line-height:1.3;
    font-weight:700;
    color:#111;
}

.wu__phone{
    display:inline-block;
    font-size:38px;
    line-height:1;
    font-weight:800;
    letter-spacing:-0.03em;
    color:#D10005;
    text-decoration:none;
    transition:color .2s ease;
}

.wu__phone-row{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.wu__phone-icon{
    width:24px;
    height:24px;
    display:block;
    object-fit:contain;
    filter:brightness(0);
    flex-shrink:0;
    transition:filter .2s ease, opacity .2s ease;
}

.wu__phone-row:hover .wu__phone{
    color:#1f1f1f;
}

.wu__phone-row:hover .wu__phone-icon{
    filter:brightness(0) saturate(100%) invert(12%) sepia(92%) saturate(6719%) hue-rotate(357deg) brightness(87%) contrast(113%);
}

.wu__middle{
    /*margin-left: 5%;*/
    position:relative;
    /*padding-left:62px;*/
    width:100%;
}

.wu__vertical{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    writing-mode:vertical-rl;
    text-orientation:mixed;
    font-size:25px;
    line-height:1;
    font-weight:600;
    color:#c3c3c3;
    letter-spacing:-0.02em;
    white-space:nowrap;
}

.wu__list{
    list-style:none;
    margin:0;
    padding:0;
    width:100%;
}
@media (min-width: 769px) {
    .wu__list{
        margin-left: 50px;
    }
}

.wu__list li,
.wu__list li a,
.wu__list-item{
    display:flex;
    align-items:center;
    gap:10px;
}

.wu__list li{
    margin-bottom:21px;
}

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

.wu__list li a{
    text-decoration:none;
}

.wu__check{
    width:16px;
    min-width:16px;
    line-height:0;
    flex-shrink:0;
}

.wu__check img{
    width:16px;
    height:16px;
    display:block;
    object-fit:contain;
}

.wu__item-text{
    font-size:18px;
    line-height:1.32;
    font-weight:400;
    color:#111;
    white-space:nowrap;
    transition:color .25s ease;
}

.wu__list li:hover .wu__item-text{
    color:#d60000;
}

/* laptop */
@media (min-width: 1025px) and (max-width: 1399.98px){
    .wu__title{
        font-size:36px;
        line-height:1.08;
    }

    .wu__text{
        font-size:17px;
        line-height:1.55;
    }

    .wu__phone{
        font-size:28px;
    }

    .wu__item-text{
        font-size:17px;
        line-height:1.38;
    }

    .wu__vertical{
        font-size:22px;
    }

    .wu__middle{
        margin-left:0;
        padding-left:72px;
    }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1024px){
    /*.why-us{*/
    /*    padding:70px 0;*/
    /*}*/

    .why-us::after{
        display:block;
        background-position:92% 32%;
        background-size:170px auto;
        opacity:.28;
    }

    .wu__title{
        font-size:40px;
        margin-bottom:22px;
        white-space: nowrap;
    }

    .wu__text{
        font-size:18px;
        margin-bottom:30px;
    }

    .wu__contact{
        border-top:0;
        border-left:2px solid #d10005;
        padding-top:0;
        padding-left:22px;
        text-align:left;
    }

    .wu__phone-row{
        justify-content:flex-start;
    }

    .wu__phone{
        font-size:34px;
    }

    .wu__middle{
        padding-left:56px;
        margin-top:36px;
    }

    .wu__vertical{
        position:absolute;
        left:0;
        top:0;
        transform:none;
        writing-mode:vertical-rl;
        text-orientation:mixed;
        display:block;
        font-size:22px;
        color:#c8c8c8;
    }

    .wu__item-text{
        font-size:19px;
        white-space:normal;
    }

}

/* mobile */
@media (max-width: 767.98px){
    .why-us{
        padding:50px 0;
    }

    .why-us::after{
        display:none;
    }

    .wu__row > .col-lg-4{
        justify-content:flex-start;
        padding-left:12px;
        padding-right:12px;
    }

    .wu__left{
        width:100%;
        max-width:none;
        margin-left:0;
        margin-right:0;
    }

    .wu__title{
        font-size:32px;
        line-height:1;
        text-align:left;
    }

    .wu__text{
        max-width:100%;
        text-align:left;
    }

    .wu__contact{
        border-left:0;
        border-top:2px solid #d10005;
        padding-left:0;
        padding-top:18px;
        margin-bottom:24px;
        text-align:center;
    }

    .wu__contact-label{
        font-size:16px;
    }

    .wu__phone-row{
        justify-content:center;
    }

    .wu__phone{
        font-size:28px;
    }

    .wu__vertical{
        display:none;
    }

    .wu__list li{
        margin-bottom:18px;
    }

    .wu__list li,
    .wu__list li a,
    .wu__list-item{
        gap:12px;
    }

    .wu__item-text{
        white-space:normal;
    }

    .wu__check{
        width:18px;
        min-width:18px;
        margin-top:3px;
    }

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

    .wu__item-text{
        font-size:16px;
        line-height:1.5;
    }
}

@media (min-width: 768px) and (max-width: 1366px){
    .wu__row > .col-lg-4,
    .wu__row > .col-lg-6{
        width:100%;
        flex:0 0 100%;
        max-width:100%;
    }

    .wu__row > .col-lg-4{
        justify-content:flex-start;
        padding-right:calc(var(--bs-gutter-x) * .5);
    }

    .wu__left{
        max-width:none;
        width:100%;
    }

    .wu__title{
        max-width:none;
        white-space:normal;
    }

    .wu__text{
        max-width:100%;
    }

    .wu__contact{
        width:max-content;
        max-width:100%;
    }

    .wu__middle{
        margin-top:36px;
        padding-left:56px;
    }

    .wu__vertical{
        position:absolute;
        left:0;
        top:0;
        transform:none;
    }

    .wu__list{
        margin-left:0;
    }

    .wu__item-text{
        white-space:normal;
    }
}

@media (min-width: 1025px) and (max-width: 1366px){
    .why-us{
        padding:60px 0 64px;
    }

    .why-us::after{
        display:block;
        background-position:78% 34%;
        background-size:190px auto;
        opacity:.28;
    }

    .wu__title{
        font-size:42px;
        line-height:1.08;
        margin-bottom:22px;
    }

    .wu__text{
        font-size:18px;
        line-height:1.5;
        margin-bottom:22px;
    }

    .wu__phone{
        font-size:34px;
    }

    .wu__item-text{
        font-size:19px;
        line-height:1.38;
    }

    .wu__vertical{
        font-size:28px;
        color:#c8c8c8;
    }
}

@media (min-width: 1367px){
    .wu__row > .col-lg-4{
        justify-content:flex-start;
    }

    .wu__list{
        margin-left:50px;
    }
}
/* END WHY US */

/* START GALLERY */
/*.image-gallery{*/
/*    background:#0D0D0D12;*/
/*    padding:12px 12px 12px;*/
/*}*/

/*.image-gallery .container-fluid{*/
/*    padding-left:0;*/
/*    padding-right:0;*/
/*}*/

/*.ig__grid{*/
/*    margin-left:-4px;*/
/*    margin-right:-4px;*/
/*}*/

/*.ig__grid > div{*/
/*    padding-left:4px;*/
/*    padding-right:4px;*/
/*    margin-bottom:8px;*/
/*}*/

/*.ig__item{*/
/*    position:relative;*/
/*    display:block;*/
/*    overflow:hidden;*/
/*    background:#ddd;*/
/*    aspect-ratio:1 / 1;*/
/*}*/

/*.ig__img{*/
/*    width:100%;*/
/*    height:100%;*/
/*    display:block;*/
/*    object-fit:cover;*/
/*}*/

/*.ig__overlay{*/
/*    position:absolute;*/
/*    inset:0;*/
/*    background:rgba(0,0,0,0);*/
/*    transition:background .28s ease;*/
/*    pointer-events:none;*/
/*}*/

/*.ig__item:hover .ig__overlay{*/
/*    background:rgba(0,0,0,.28);*/
/*}*/

/*!* LIGHTBOX *!*/
/*.ig__lightbox{*/
/*    position:fixed;*/
/*    inset:0;*/
/*    background:rgba(0,0,0,.92);*/
/*    z-index:9999;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    opacity:0;*/
/*    visibility:hidden;*/
/*    transition:opacity .25s ease, visibility .25s ease;*/
/*    padding:40px;*/
/*}*/

/*.ig__lightbox.is-open{*/
/*    opacity:1;*/
/*    visibility:visible;*/
/*}*/

/*.ig__lightbox-inner{*/
/*    max-width:90vw;*/
/*    max-height:90vh;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*}*/

/*.ig__lightbox-img{*/
/*    max-width:100%;*/
/*    max-height:90vh;*/
/*    display:block;*/
/*    object-fit:contain;*/
/*}*/

/*.ig__close{*/
/*    position:absolute;*/
/*    top:14px;*/
/*    right:22px;*/
/*    background:none;*/
/*    border:none;*/
/*    color:#fff;*/
/*    font-size:46px;*/
/*    line-height:1;*/
/*    cursor:pointer;*/
/*    z-index:5;*/
/*}*/

/*.ig__nav{*/
/*    position:absolute;*/
/*    top:50%;*/
/*    transform:translateY(-50%);*/
/*    width:54px;*/
/*    height:54px;*/
/*    border:none;*/
/*    border-radius:50%;*/
/*    background:rgba(255,255,255,.14);*/
/*    color:#fff;*/
/*    font-size:28px;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    cursor:pointer;*/
/*    z-index:5;*/
/*    transition:background .2s ease;*/
/*}*/

/*.ig__nav:hover{*/
/*    background:rgba(255,255,255,.24);*/
/*}*/

/*.ig__nav--prev{*/
/*    left:20px;*/
/*}*/

/*.ig__nav--next{*/
/*    right:20px;*/
/*}*/

/*!* tablet *!*/
/*@media (max-width: 991.98px){*/
/*    .image-gallery{*/
/*        padding:10px 10px 14px;*/
/*    }*/

/*    .ig__grid{*/
/*        margin-left:-3px;*/
/*        margin-right:-3px;*/
/*    }*/

/*    .ig__grid > div{*/
/*        padding-left:3px;*/
/*        padding-right:3px;*/
/*        margin-bottom:6px;*/
/*    }*/
/*}*/

/*!* mobile *!*/
/*@media (max-width: 575.98px){*/
/*    .image-gallery{*/
/*        padding:8px 8px 12px;*/
/*    }*/

/*    .ig__grid{*/
/*        margin-left:-3px;*/
/*        margin-right:-3px;*/
/*    }*/

/*    .ig__grid > div{*/
/*        padding-left:3px;*/
/*        padding-right:3px;*/
/*        margin-bottom:6px;*/
/*    }*/

/*    .ig__lightbox{*/
/*        padding:20px 10px;*/
/*    }*/

/*    .ig__nav{*/
/*        width:42px;*/
/*        height:42px;*/
/*        font-size:22px;*/
/*    }*/

/*    .ig__nav--prev{*/
/*        left:10px;*/
/*    }*/

/*    .ig__nav--next{*/
/*        right:10px;*/
/*    }*/

/*    .ig__close{*/
/*        top:8px;*/
/*        right:14px;*/
/*        font-size:36px;*/
/*    }*/
/*}*/
.image-gallery{
    color: #0D0D0D12;
    padding:0;
    overflow:hidden;
    margin-left:10px;
    margin-right:10px;
}

.image-gallery .container-fluid{
    padding-left:0;
    padding-right:0;
}

.ig__grid{
    margin-left:-5px;
    margin-right:-5px;
}

.ig__grid > div{
    padding-left:5px;
    padding-right:5px;
    margin-bottom:10px;
}

/* gallery item */
.ig__item{
    position:relative;
    display:block;
    overflow:hidden;
    background:#ddd;
    aspect-ratio:1 / 1;
    opacity:0;
    transform:scale(.82);
    transition:
            transform .9s cubic-bezier(.22,.61,.36,1),
            opacity .75s ease;
}

.image-gallery.is-visible .ig__item{
    opacity:1;
    transform:scale(1);
}

/* blago kasnjenje po elementima */
.image-gallery.is-visible .ig__grid > div:nth-child(1) .ig__item{transition-delay:.05s;}
.image-gallery.is-visible .ig__grid > div:nth-child(2) .ig__item{transition-delay:.10s;}
.image-gallery.is-visible .ig__grid > div:nth-child(3) .ig__item{transition-delay:.15s;}
.image-gallery.is-visible .ig__grid > div:nth-child(4) .ig__item{transition-delay:.20s;}
.image-gallery.is-visible .ig__grid > div:nth-child(5) .ig__item{transition-delay:.25s;}
.image-gallery.is-visible .ig__grid > div:nth-child(6) .ig__item{transition-delay:.30s;}
.image-gallery.is-visible .ig__grid > div:nth-child(7) .ig__item{transition-delay:.35s;}
.image-gallery.is-visible .ig__grid > div:nth-child(8) .ig__item{transition-delay:.40s;}
.image-gallery.is-visible .ig__grid > div:nth-child(9) .ig__item{transition-delay:.45s;}
.image-gallery.is-visible .ig__grid > div:nth-child(10) .ig__item{transition-delay:.50s;}
.image-gallery.is-visible .ig__grid > div:nth-child(11) .ig__item{transition-delay:.55s;}
.image-gallery.is-visible .ig__grid > div:nth-child(12) .ig__item{transition-delay:.60s;}

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

/* samo zatamnjenje na hover */
.ig__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
    transition:background .28s ease;
    pointer-events:none;
}

.ig__item:hover .ig__overlay{
    background:rgba(0,0,0,.30);
}

/* LIGHTBOX */
.ig__lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:opacity .25s ease, visibility .25s ease;
    padding:40px;
}

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

.ig__lightbox-inner{
    max-width:90vw;
    max-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ig__lightbox-img{
    max-width:100%;
    max-height:90vh;
    display:block;
    object-fit:contain;
}

.ig__close{
    position:absolute;
    top:14px;
    right:22px;
    background:none;
    border:none;
    color:#fff;
    font-size:46px;
    line-height:1;
    cursor:pointer;
    z-index:5;
}

.ig__nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.14);
    color:#fff;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:5;
    transition:background .2s ease;
}

.ig__nav:hover{
    background:rgba(255,255,255,.24);
}

.ig__nav--prev{
    left:20px;
}

.ig__nav--next{
    right:20px;
}

/* tablet */
@media (max-width:991.98px){
    .image-gallery{
        padding:0;
    }

    .ig__grid{
        margin-left:-3px;
        margin-right:-3px;
    }

    .ig__grid > div{
        padding-left:3px;
        padding-right:3px;
        margin-bottom:6px;
    }

    .ig__item{
        transform:scale(.86);
    }
}

/* mobile */
@media (max-width:575.98px){
    .image-gallery{
        padding:0;
    }

    .ig__grid{
        margin-left:-2px;
        margin-right:-2px;
    }

    .ig__grid > div{
        padding-left:2px;
        padding-right:2px;
        margin-bottom:4px;
    }

    .ig__item{
        transform:scale(.90);
    }

    .ig__lightbox{
        padding:20px 10px;
    }

    .ig__nav{
        width:42px;
        height:42px;
        font-size:22px;
    }

    .ig__nav--prev{
        left:10px;
    }

    .ig__nav--next{
        right:10px;
    }

    .ig__close{
        top:8px;
        right:14px;
        font-size:36px;
    }
}
/* END GALLERY */

/* START FOOTER*/
.footer{
    position:relative;
    overflow:hidden;
    color:#FFFFFF80;
    background-color:#0d0505;
    font-family:'Inter', sans-serif;
}

.footer::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:url('https://trosador.co.rs/wp-content/uploads/2025/08/fire-pozadina.webp');
    background-position:bottom center;
    background-repeat:no-repeat;
    background-size:cover;
    z-index:0;
    opacity:1;
}

.footer::after{
    content:'';
    position:absolute;
    inset:0;
    background:
            linear-gradient(to bottom, rgba(8,2,2,0.94) 0%, rgba(21,5,5,0.82) 55%, rgba(33,7,7,0.72) 100%);
    z-index:1;
}

.footer > .container{
    position:relative;
    z-index:2;
    min-height:420px;
}

.footer .container{
    max-width:1320px;
    padding-left:20px;
    padding-right:20px;
}

.footer-row{
    padding:34px 0 26px;
}

.footer-col{
    position:relative;
    padding:0 46px;
}

.footer-col:not(:last-child)::after{
    content:'';
    position:absolute;
    top:-34px;
    right:0;
    width:1px;
    height:calc(100% + 68px);
    background:rgba(255,255,255,0.14);
}

.footer-logo{
    width:98px;
    min-width:98px;
    max-width:98px;
    height:108px;
    min-height:108px;
    max-height:108px;
    display:block;
    object-fit:contain;
    margin:0 auto 24px;
}

.text-lg-start .footer-logo{
    margin-left:0;
    margin-right:0;
}

.footer-desc{
    margin:0 0 20px;
    max-width:295px;
    font-size:18px;
    line-height:1.5;
    color:#FFFFFF80;
    text-align:left;
}

.footer-hours{
    position:relative;
    display:block;
    width:max-content;
    min-width:max-content;
    max-width:100%;
    margin-left:0;
    margin-right:0;
    padding:13px 14px 11px;
    background:
            linear-gradient(90deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.12) 78%, rgba(255,255,255,0.02) 100%);
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:0 10px 24px rgba(0,0,0,0.14);
    overflow:visible;
}

.footer-hours::after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    width:42px;
    pointer-events:none;
    background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 100%);
}

.footer-hours__day{
    margin-bottom:3px;
    font-size:16px;
    line-height:1.2;
    font-weight:700;
    color:#FFFFFF;
}

.footer-hours__time{
    font-size:14px;
    line-height:1.5;
    color:#FFFFFF;
    white-space:nowrap;
}

.footer-title{
    position:relative;
    margin:0 0 23px 0;
    padding-bottom:22px;
    font-size:26px;
    line-height:1.2;
    font-weight:600;
    letter-spacing:.01em;
    color:#FFFFFF;
}


.footer-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:72px;
    height:3px;
    background:#D10005;
}

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

.footer-list li{
    margin-bottom:14px;
}

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

.footer-sub-list{
    margin:12px 0 0 28px;
}

.footer-sub-list li{
    margin-bottom:10px;
}

.footer-list--icons li a{
    display:flex;
    align-items:flex-start;
    gap:11px;
    text-decoration:none;
}

.footer-list__icon{
    width:15px;
    min-width:15px;
    margin-top:3px;
    line-height:0;
    flex-shrink:0;
}

.footer-list__icon img{
    width:15px;
    height:15px;
    display:block;
    object-fit:contain;
    filter:brightness(0) invert(1);
    opacity:.42;
    transition:opacity .25s ease, transform .25s ease;
}

.footer-list__text{
    color:#FFFFFF80;
    font-size:16px;
    line-height:1.45;
    transition:color .25s ease;
}

.footer-list li:hover .footer-list__icon img{
    opacity:1;
    transform:translateX(2px);
}

.footer-list li:hover .footer-list__text{
    color:#FFFFFF80;
}

.footer-social{
    margin:26px 0 0 0;
}

.footer-social__link{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(24,7,7,0.88);
    text-decoration:none;
    border:none;
    border-radius:0;
    transition:background .25s ease, transform .25s ease;
}

.footer-social__link:hover{
    background:#270909;
    transform:translateY(-2px);
}

.footer-social__link img{
    width:16px;
    height:16px;
    display:block;
    object-fit:contain;
    filter:brightness(0) invert(1);
}

.footer-bottom{
    margin: 0;
    position:relative;
    z-index:3;
    min-height:37px;
    height:37px;
    background:rgba(0,0,0,0.96);
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:15px;
    line-height:1.6;
    color:#FFFFFF80;
    font-family:'Inter', sans-serif;
    border-top:1px solid rgba(255,255,255,0.08);
}


/* desktop */
@media (min-width:992px){
    .footer-brand{
        max-width:300px;
        padding-right:0;
    }

    .footer-col:first-child{
        padding-left:12px;
        padding-right:44px;
    }

    .footer-col:nth-child(2){
        padding-left:46px;
        padding-right:46px;
    }

    .footer-col:nth-child(3){
        padding-left:46px;
        padding-right:46px;
    }

    .footer-col:nth-child(4){
        padding-left:46px;
        padding-right:46px;
    }
}

/* tablet */
@media (max-width:991.98px){
    .footer > .container{
        min-height:0;
    }

    .footer-row{
        padding:46px 0 16px;
    }

    .footer-col{
        padding:0 34px;
        margin-bottom:42px;
    }

    .footer-col:not(:last-child)::after{
        display:none;
    }

    .footer-logo{
        margin-bottom:22px;
    }

    .footer-desc{
        max-width:100%;
    }


    .footer-title::after{
        width:74px;
        height:3px;
    }

    .footer-hours{
        max-width:100%;
        text-align:left;
    }
}

@media (min-width:768px) and (max-width:991.98px){
    .footer-col:nth-child(odd){
        padding-right:42px;
    }

    .footer-col:nth-child(even){
        padding-left:42px;
    }

    .footer-desc{
        max-width:270px;
    }

    .footer-col:not(:last-child)::after{
        display:block;
        top:-24px;
        right:0;
        height:calc(100% + 48px);
    }

    .footer-col:nth-child(even)::after{
        display:none;
    }
}

@media (min-width:992px) and (max-width:1024px){
    .footer-desc{
        max-width:270px;
    }
}

/* mobile */
@media (max-width:575.98px){
    .footer-row{
        padding:38px 0 10px;
    }

    .footer-col{
        padding:0 20px;
        margin-bottom:34px;
    }

    .footer-logo{
        width:88px;
        height:102px;
    }

    .footer-desc{
        line-height:1.65;
    }

    .footer-hours{
        padding:16px 16px 12px;
        text-align:left;
    }

    .footer-hours__day{
        font-size:16px;
    }

    .footer-hours__time{
        font-size:14px;
    }

    .footer-title{
        font-size:26px;
        margin-bottom:18px;
        padding-bottom:12px;
        margin-left:0;
    }

    .footer-list li{
        margin-bottom:14px;
    }

    .footer-list__icon{
        width:16px;
        min-width:16px;
    }

    .footer-list__icon img{
        width:16px;
        height:16px;
    }

    .footer-bottom{
        font-size:13px;
        min-height:auto;
        height:auto;
        padding:15px 0;
    }
}

.footer-desc{
    font-size:18px;
}

.footer-hours__day{
    font-size:16px;
}

.footer-hours__time{
    font-size:14px;
}

.footer-list__text{
    font-size:16px;
}

.footer-title{
    font-size:26px;
}
/* END FOOTER*/
/* START PAGE HEADER */
.page-header{
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-header-category{
    height: 450px !important;
    font-family: 'Inter', sans-serif;
}

.page-header__bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.page-header__overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
            180deg,
            rgba(30,30,30,0.55) 0%,
            rgba(209, 0, 5, 0.55) 100%
    );
}
.page-header-category__overlay{
    background: rgba(0, 0, 0, 0.5) !important;
}

.page-header .container{
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.page-header__content{
    text-align: center;
    width: 100%;
}

.page-header__title{
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    letter-spacing: 1px;
    padding: 0;
}
.page-header-category__title{
    font-size: 72px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 767.98px){
    .page-header-category{
        align-items: flex-end;
        padding-bottom: 24px;
    }

    .page-header-category .container{
        align-items: flex-end;
    }

    .page-header-category__content{
        text-align: center;
    }

    .page-header-category__title{
        text-align: center;
    }
}

@media (min-width: 768px){
    .page-header-category{
        align-items: center;
        padding-bottom: 0;
    }

    .page-header-category .container{
        align-items: center;
    }
}
/* laptop */
@media (min-width: 992px) and (max-width: 1024px){
    .page-header__title{
        font-size: 35px;
    }
    .page-header-category__title{
        font-size: 52px;
    }
}
/* tablet */
@media (max-width: 991px){

    .page-header__title{
        font-size: 35px;
    }
    .page-header-category__title{
        font-size: 52px;
    }
}

/* mobile */
@media (max-width: 575px){

    .page-header__title{
        font-size: 32px;
        /*text-align: left;*/
    }
    .page-header-category{
        align-items: flex-end;
        padding-bottom: 24px;
    }
    .page-header-category__title{
        text-align: center;
    }
    .page-header-category{
        height: 260px !important;
    }
}
@media (max-width: 399px){
    .page-header__title{
        text-align: center;
    }
    .page-header-category{
        align-items: flex-end;
        padding-bottom: 24px;
    }
    .page-header-category__title{
        text-align: center;
    }
    .page-header-category{
        height: 260px !important;
    }
}

/* START KONTROLNO TELO PAGE*/
/* START DOCUMENTS BOX */
.documents{
    padding: 20px;
    width: 100%;
    background: white;
}

.documents .container{
    max-width: 1320px;
}

.documents-box{
    width: 70%;
    margin-left: 0;
    margin-right: auto;
    background: #F8F8F8;
    padding: 20px;
}

/*.documents-item{*/
/*    margin-bottom: 24px;*/
/*}*/

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

.documents-title{
    margin: 0 0 8px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.documents-title a{
    display: inline-block;
    color: #d10005;
    text-decoration: none;
    transition: color .25s ease;
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
}

.documents-title a:hover{
    color: #000000;
}

.documents-text{
    font-size: 16px;
    line-height: 1.65;
    color: #000000;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

@media (max-width: 1024px){
    .documents-box{
        width: unset !important;
    }
}

/* laptop */
@media (max-width: 1399.98px){
    .documents-title{
        font-size: 32px;
    }

    .documents-text{
        font-size: 21px;
    }
}

/* tablet */
@media (max-width: 991.98px){
    .documents{
        padding: 40px 0 50px;
    }

    .documents .container{
        padding-left: 20px;
        padding-right: 20px;
    }

    .documents-box{
        width: 100%;
        padding: 28px 22px 16px;
    }

    .documents-item{
        margin-bottom: 22px;
    }

    .documents-title{
        font-size: 24px;
        margin-bottom: 10px;
    }

    .documents-text{
        font-size: 18px;
        line-height: 1.5;
    }
}

/* mobile */
@media (max-width: 575.98px){
    .documents{
        padding: 28px 0 36px;
    }

    .documents .container{
        padding-left: 12px;
        padding-right: 12px;
    }

    .documents-box{
        padding: 20px 16px 12px;
    }

    .documents-item{
        margin-bottom: 18px;
    }

    .documents-title{
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .documents-text{
        font-size: 16px;
        line-height: 1.5;
    }
}

.documents-box{
    max-width: 100%;
    box-sizing: border-box;
}

.documents-title,
.documents-title a{
    font-size: 26px;
}

.documents-text{
    font-size: 16px;
}

@media (max-width: 767.98px){
    .documents-title,
    .documents-title a{
        font-size: 20px;
    }

    .documents-text{
        font-size: 16px;
    }
}

@media (max-width: 1024px){
    .main-menu-layout__content .documents{
        padding-top: 14px;
        padding-bottom: 0;
    }

    .main-menu-layout__content .documents-box{
        width: 100% !important;
    }

    .main-menu-layout__content .content-box,
    .main-menu-layout__content .products-section,
    .main-menu-layout__content .about-us{
        padding-top: 14px;
        padding-bottom: 0;
    }

    .main-menu-layout__content .content-box__inner,
    .main-menu-layout__content .products-section__inner,
    .main-menu-layout__content .about-us__box{
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
    }

    .main-menu-layout__content .content-box__inner p,
    .main-menu-layout__content .content-box__list li,
    .main-menu-layout__content .products-section__desc,
    .main-menu-layout__content .product-card__text p,
    .main-menu-layout__content .about-us__text,
    .main-menu-layout__content .about-us__ordered-list li,
    .main-menu-layout__content .about-us__bullet-list li{
        font-size: 16px;
    }
}
/* END DOCUMENTS BOX */
/* END KONTROLNO TELO PAGE */

/* START CONTACT PAGE */
.contact-hub{
    padding: 0 0 72px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.contact-hub .container{
    max-width: 1320px;
}

.contact-hub__shell{
    overflow: visible;
    background: #ffffff;
}

.contact-hub__map{
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 300px;
    overflow: hidden;
    border-bottom: 1px solid #dedede;
}

.contact-hub__map iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-hub__body{
    background: #ffffff;
}

.contact-hub__body .row{
    --bs-gutter-x: 0;
}

.contact-hub__main{
    padding: 22px 22px 34px 0;
}

.contact-hub__intro{
    width: min(100%, 96%);
    max-width: none;
    margin-bottom: 14px;
}

.contact-hub__title{
    margin: 0 0 14px;
    color: #000000;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.contact-hub__text{
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.65;
}

.contact-hub__divider{
    width: min(100%, 96%);
    height: 1px;
    margin: 0 0 18px;
    background: #cfcfcf;
}

.contact-form-box{
    width: min(100%, 96%);
    max-width: none;
}

.contact-form-box__field{
    margin-bottom: 14px;
}

.contact-form-box__field input,
.contact-form-box__field select,
.contact-form-box__field textarea{
    width: 100%;
    min-height: 59px;
    border: 1px solid #d3d3d3;
    background: #ffffff;
    padding: 17px 18px;
    color: #d3d3d3;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    outline: none;
    border-radius: 0;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.contact-form-box__field select{
    padding-right: 42px;
    color: #d3d3d3;
    font-size: 16px;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #d3d3d3 50%), linear-gradient(135deg, #d3d3d3 50%, transparent 50%);
    background-position: calc(100% - 23px) 50%, calc(100% - 17px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form-box__field input::placeholder,
.contact-form-box__field textarea::placeholder{
    color: #d3d3d3;
    font-size: 18px;
    opacity: 1;
}

.contact-form-box__field input::-webkit-input-placeholder,
.contact-form-box__field textarea::-webkit-input-placeholder{
    color: #d3d3d3;
    font-size: 18px;
    opacity: 1;
}

.contact-form-box__field input::-moz-placeholder,
.contact-form-box__field textarea::-moz-placeholder{
    color: #d3d3d3;
    font-size: 18px;
    opacity: 1;
}

.contact-form-box__field input:-ms-input-placeholder,
.contact-form-box__field textarea:-ms-input-placeholder{
    color: #d3d3d3;
    font-size: 18px;
    opacity: 1;
}

.contact-form-box__field input:focus,
.contact-form-box__field select:focus,
.contact-form-box__field textarea:focus{
    border-color: #d10005;
    box-shadow: 0 0 0 3px rgba(209, 0, 5, 0.08);
}

.contact-form-box__field textarea{
    min-height: 154px;
    resize: vertical;
}

.contact-form-box__check{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0 18px;
    color: #555555;
    font-size: 16px;
    line-height: 1.5;
}

.contact-form-box__check input{
    width: 13px;
    height: 13px;
    margin-top: 5px;
    accent-color: #d10005;
    flex: 0 0 13px;
}

.contact-form-box__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    border: 0;
    border-radius: 3px;
    background: #d90416;
    color: #ffffff;
    min-height: 72px;
    padding: 22px 28px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background .25s ease;
}

.contact-form-box__btn:hover{
    background: #000000;
}

.contact-form-box__btn-icon{
    width: 20px;
    min-width: 20px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-box__btn-icon img{
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-sidebar{
    height: 100%;
    padding: 24px 28px 34px;
    background: #f5f5f5;
    border-left: 0;
}

.contact-sidebar__section{
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #cfcfcf;
}

.contact-sidebar__section--hours{
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 0;
}

.contact-sidebar__section:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.contact-sidebar__title{
    margin: 0 0 16px;
    color: #D10005;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    display:flex;
    align-items:center;
    gap:10px;
}

.contact-sidebar__section--hours .contact-sidebar__title{
    color: #000000;
    font-weight: 500;
}

.contact-sidebar__section--locations .contact-sidebar__title{
    font-weight: 500;
    margin-top: -4px;
}

.contact-sidebar__section--contact .contact-sidebar__title,
.contact-sidebar__section--company .contact-sidebar__title{
    color: #000000;
    font-size: 26px;
}

.contact-sidebar__title-icon{
    width:14px;
    min-width:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:0;
    margin-top:2px;
    flex-shrink:0;
}

.contact-sidebar__title-icon img{
    width:14px;
    height:14px;
    display:block;
    object-fit:contain;
}

.contact-sidebar__title-icon--large{
    width:26px;
    min-width:26px;
}

.contact-sidebar__title-icon--large img{
    width:26px;
    height:26px;
}

.contact-sidebar__title-icon--locations{
    width:22px;
    min-width:22px;
}

.contact-sidebar__title-icon--locations img{
    width:22px;
    height:22px;
}

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

.contact-hours li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding: 10px 13px;
    border: 2px solid #d8d8d8;
    border-radius: 8px;
    background: #fbfbfb;
    outline: 0;
    outline-offset: 0;
}

.contact-hours li:last-child{
    margin-bottom: 0;
}

.contact-hours li::before{
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1AC922;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
}

.contact-hours li.is-off::before{
    background:#e23939;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .15);
}

.contact-hours li.is-current{
    border-color: #d8d8d8;
    outline: 1px dashed #d5d5d5;
    outline-offset: 3px;
}

.contact-hours li.is-off{
    border-color: #ffc4c4;
}

.contact-hours__day{
    flex: 1;
    color: #000000;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.contact-hours__time{
    color: #000000;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    text-align: right;
}

.contact-location{
    margin-bottom: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #c9c9c9;
}

.contact-location:last-child{
    padding-top: 20px;
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-location__title{
    margin: 0 0 6px;
    color: #000000;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.contact-location__line{
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 3px;
    color: #000000;
    font-size: 16px;
    line-height: 1.55;
}

.contact-location__line:last-child{
    margin-bottom: 0;
}

.contact-location__icon,
.contact-list__icon{
    width: 14px;
    min-width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-location__icon img,
.contact-list__icon img{
    width: 14px;
    height: 14px;
    display: block;
    object-fit: contain;
}

.contact-list{
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.contact-list li{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 12px;
    color: #3f3f3f;
    font-size: 16px;
    line-height: 1.55;
}

.contact-list li:has(> span):before{
    content: "";
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    margin-top: 10px;
    border-radius: 50%;
    background: currentColor;
}

.contact-list li span:last-child{
    font-size: 16px;
}

.contact-list li:last-child{
    margin-bottom: 0;
}

.contact-list li a{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #000000;
    font-weight: 400;
    text-decoration: none;
    transition: color .25s ease;
}

.contact-list li a strong{
    font-weight: 600;
}

.contact-list__value{
    color: #d10005;
}

.contact-sidebar__section--contact .contact-list li{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-left: 30px;
}

.contact-sidebar__section--contact .contact-list li::before{
    content: "";
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    margin-top: 10px;
    border-radius: 50%;
    background: #3f3f3f;
}

.contact-sidebar__section--contact .contact-list li a{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.contact-sidebar__section--contact .contact-list li{
    margin-bottom: 12px;
}

.contact-sidebar__section--company .contact-list li{
    margin-bottom: 13px;
    margin-left: 30px;
    color: #4a4a4a;
}

.contact-sidebar__section--company .contact-list li:has(> span):before{
    background: #4a4a4a;
}

.contact-list li a:hover{
    color: #000000;
}

@media (min-width: 992px){
    .contact-hub__body .row{
        display: grid;
        grid-template-columns: minmax(0, 1.88fr) minmax(22rem, 1fr);
        align-items: start;
    }

    .contact-hub__body .col-lg-8,
    .contact-hub__body .col-lg-4{
        width: auto;
        max-width: none;
        flex: initial;
    }

    .contact-sidebar{
        position: relative;
        margin-top: -150px;
        z-index: 3;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
    }
}

@media (max-width: 991.98px){
    .contact-hub{
        padding-bottom: 52px;
    }

    .contact-hub__map{
        height: 360px;
    }

    .contact-hub__main{
        padding: 24px 22px 28px;
    }

    .contact-hub__intro,
    .contact-hub__divider,
    .contact-form-box{
        max-width: 100%;
        width: 100%;
    }

    .contact-sidebar{
        border-left: 0;
        border-top: 1px solid #d9d9d9;
    }
}

@media (max-width: 575.98px){
    .contact-hub{
        padding-bottom: 34px;
    }

    .contact-hub .container{
        padding-left: 12px;
        padding-right: 12px;
    }

    .contact-hub__map{
        height: 280px;
    }

    .contact-hub__main{
        padding: 18px 14px 22px;
    }

    .contact-hub__title{
        font-size: 18px;
    }

    .contact-form-box__field input,
    .contact-form-box__field select,
    .contact-form-box__field textarea{
        min-height: 58px;
        font-size: 16px;
    }

    .contact-form-box__btn{
        padding: 18px 20px;
        font-size: 16px;
    }

    .contact-sidebar{
        padding: 18px 14px 22px;
    }

    .contact-hours li{
        padding: 8px 9px;
    }
}
/* END CONTACT PAGE */
/* START DOKUMENTA O PREDUZECU */
.company-documents{
    padding:20px;
    background:#ffffff;
}

.company-documents .container{
    max-width:1320px;
}

.company-documents__box{
    width:70%;
    margin-left:0;
    margin-right:auto;
    background:#f8f8f8;
    padding:20px;
}

.company-documents__intro{
    margin-bottom:18px;
}

.company-documents__intro p{
    margin:0 0 18px;
    color:#000000;
    font-size:16px;
    line-height:1.65;
    /*font-family: 'Inter', sans-serif;*/
}

.company-documents__intro p:last-child{
    margin-bottom:0;
}

.company-documents__section{
    margin-bottom:20px;
}

.company-documents__section-title{
    margin:0 0 14px;
    color:#111;
    font-size:16px;
    line-height:1.3;
    font-weight:700;
    font-family: 'Inter', sans-serif;
}

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

.company-documents__list li{
    position:relative;
    margin-bottom:18px;
    padding-left:25px;
    color:#111;
    font-size:16px;
    line-height:1.55;
    font-family: 'Inter', sans-serif;
}

.company-documents__list li:last-child{
    margin-bottom:0;
}

.company-documents__list li::before{
    content:'';
    position:absolute;
    top:8px;
    left:0;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#d10005;
}

.company-documents__list strong{
    font-weight:700;
}

.company-documents__list a{
    color:#d10005;
    text-decoration:none;
    transition:color .25s ease;
}

.company-documents__list a:hover{
    color:#111;
}

.company-documents__files{
    margin-top:26px;
}

.company-documents__file{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:12px;
    padding:10px 16px;
    background:#ffffff;
    border:1px solid #dddddd;
    border-radius:14px;
    text-decoration:none;
    transition:border-color .25s ease, box-shadow .25s ease;
}

.company-documents__file:last-child{
    margin-bottom:0;
}

.company-documents__file:hover{
    border-color:#d3d3d3;
    box-shadow:0 2px 10px rgba(0,0,0,0.04);
}

.company-documents__file-left{
    display:flex;
    align-items:center;
    gap:14px;
    flex:1;
    min-width:0;
}

.company-documents__file-type{
    width:48px;
    min-width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background:#fee2e2;
    color:#991b1b;
    font-size:12px;
    line-height:1;
    font-weight:700;
    text-transform:uppercase;
}

.company-documents__file-content{
    min-width:0;
}

.company-documents__file-title{
    margin:0 0 2px;
    color:#333333;
    font-size:17px;
    line-height:1.2;
    font-weight:500;
}

.company-documents__file-meta{
    color:#6b7280;
    font-size:12px;
    line-height:1.25;
}

.company-documents__file-btn{
    font-weight: 600;
    padding: 12px 13px;
    border-radius: 8px;
    /*min-width:98px;*/
    /*padding:8px 12px;*/
    /*border-radius: 8px;*/
    background:#f3bf01;
    color:#000000;
    font-size:15px;
    line-height:1.2;
    flex-shrink:0;
    transition:filter .25s ease, box-shadow .25s ease;
    /*line-height:1;*/
    /*font-weight:600;*/
    /*text-align:center;*/
    /*flex-shrink:0;*/
}

.company-documents__file-btn:hover{
    filter:brightness(1.06);
    box-shadow:inset 0 0 0 999px rgba(255,255,255,0.06);
}
/*display: inline-block;*/

@media (max-width: 1024px){
    .company-documents__box{
        width: unset !important;
    }

    .main-menu-layout__content .company-documents{
        padding-top: 14px;
        padding-bottom: 0;
    }

    .main-menu-layout__content .company-documents__box{
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
    }

    .company-documents__intro p,
    .company-documents__list li{
        font-size: 16px;
    }

    .company-documents__section-title{
        font-size: 26px;
    }

    .company-documents__file{
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 12px;
    }

    .company-documents__file-left{
        flex: 1 1 auto;
        min-width: 0;
        gap: 10px;
    }

    .company-documents__file-type{
        width: 42px;
        min-width: 42px;
        height: 42px;
        font-size: 11px;
    }

    .company-documents__file-content{
        min-width: 0;
    }

    .company-documents__file-title{
        font-size: 16px;
        line-height: 1.25;
    }

    .company-documents__file-meta{
        font-size: 12px;
    }

    .company-documents__file-btn{
        flex: 0 0 auto;
        padding: 8px 10px;
        border-radius: 7px;
        font-size: 13px;
        white-space: nowrap;
    }
}


/* laptop */
@media (max-width: 1199.98px){
    .company-documents__intro p{
        font-size:19px;
    }

    .company-documents__list li{
        font-size:18px;
    }

    .company-documents__file-title{
        font-size:20px;
    }
}

/* tablet */
@media (max-width: 991.98px){
    .company-documents{
        padding:40px 0 50px;
    }

    .company-documents__box{
        width:100%;
        padding:24px 18px 18px;
    }

    .company-documents__intro p{
        font-size:17px;
        line-height:1.6;
    }

    .company-documents__section-title{
        font-size:20px;
    }

    .company-documents__list li{
        font-size:17px;
        line-height:1.5;
        padding-left:24px;
    }

    .company-documents__list li::before{
        top:12px;
        width:7px;
        height:7px;
    }

    .company-documents__file{
        padding:14px 16px;
    }

    .company-documents__file-title{
        font-size:18px;
    }
}

/* mobile */
@media (max-width: 575.98px){
    .company-documents{
        padding:28px 0 36px;
    }

    .company-documents .container{
        padding-left:12px;
        padding-right:12px;
    }

    .company-documents__box{
        padding:18px 14px 14px;
    }

    .company-documents__intro p{
        font-size:15px;
        line-height:1.55;
        margin-bottom:14px;
    }

    .company-documents__section-title{
        font-size:20px;
        margin-bottom:10px;
    }

    .company-documents__list li{
        font-size:15px;
        line-height:1.5;
        margin-bottom:14px;
        padding-left:20px;
    }

    .company-documents__list li::before{
        top:10px;
        width:6px;
        height:6px;
    }

    .company-documents__files{
        margin-top:20px;
    }

    .company-documents__file{
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        gap:8px;
        border-radius:14px;
        padding:10px 10px;
    }

    .company-documents__file-left{
        width:auto;
        min-width:0;
        flex:1 1 auto;
        align-items:center;
        gap:8px;
    }

    .company-documents__file-type{
        width:38px;
        min-width:38px;
        height:38px;
        font-size:10px;
    }

    .company-documents__file-title{
        font-size:15px;
        margin-bottom:3px;
    }

    .company-documents__file-meta{
        font-size:11px;
    }

    .company-documents__file-btn{
        min-width:auto;
        width:auto;
        padding:7px 9px;
        font-size:12px;
    }
}

@media (min-width: 768px) and (max-width: 1024px){
    .company-documents__section-title{
        font-size:26px;
    }

    .company-documents__intro p,
    .company-documents__list li{
        font-size:16px;
    }

    .company-documents__file-title{
        font-size:16px;
    }
}

@media (max-width: 767.98px){
    .company-documents__section-title{
        font-size:20px;
    }

    .company-documents__intro p,
    .company-documents__list li{
        font-size:16px;
    }
}

@media (max-width: 1024px){
    .company-documents__file{
        gap:14px;
        padding:10px 16px;
    }

    .company-documents__file-left{
        flex:1 1 auto;
        min-width:0;
        gap:14px;
    }

    .company-documents__file-type{
        width:48px;
        min-width:48px;
        height:48px;
        font-size:12px;
    }

    .company-documents__file-title{
        font-size:17px;
        line-height:1.2;
    }

    .company-documents__file-meta{
        font-size:12px;
    }

    .company-documents__file-btn{
        padding:12px 13px;
        border-radius:8px;
        font-size:15px;
        white-space:nowrap;
    }
}
/* END DOKUMENTA O PREDUZECU */

/* START SERTIFIKATI I LICENCE */
.company-certificates{
    padding:20px;
    background:#ffffff;
}

.company-certificates .container{
    max-width:1320px;
}

.company-certificates__box{
    width:70%;
    margin-left:0;
    margin-right:auto;
    background:#f8f8f8;
    padding:20px;
    font-family:'Inter', sans-serif;
}

/* intro */
.company-certificates__intro{
    margin-bottom:18px;
}

.company-certificates__intro p{
    margin:0 0 18px;
    color:#000000;
    font-size:16px;
    line-height:1.65;
}

/* list */
.company-certificates__list{
    margin-bottom:12px;
}

.company-certificates__item{
    display:flex;
    align-items:flex-start;
    gap:6px;
    margin-bottom:10px;
}

.company-certificates__item:last-child{
    margin-bottom:0;
}

.company-certificates__icon-wrap{
    width:16px;
    min-width:16px;
    padding-top:2px;
    line-height:0;
    flex-shrink:0;
}

.company-certificates__icon{
    width:16px;
    height:16px;
    display:block;
    object-fit:contain;
}

.company-certificates__content{
    flex:1;
}

.company-certificates__item-title{
    margin:0 0 2px;
    color:#000000;
    font-size:16px;
    line-height:1.3;
    font-weight:700;
}

.company-certificates__item-text{
    margin:0 0 0 -22px;
    color:#111;
    font-size:16px;
    line-height:1.45;
}

/* files */
.company-certificates__files{
    margin-top:12px
}

.company-certificates__file{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:12px;
    padding:10px 16px;
    background:#ffffff;
    border:1px solid #dddddd;
    border-radius:14px;
    text-decoration:none;
    transition:border-color .25s ease, box-shadow .25s ease;
}

.company-certificates__file:last-child{
    margin-bottom:0;
}

.company-certificates__file-left{
    display:flex;
    align-items:center;
    gap:14px;
    flex:1;
    min-width:0;
}

.company-certificates__file-pdf{
    width:48px;
    min-width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background:#fee2e2;
    color:#991b1b;
    font-size:12px;
    line-height:1;
    font-weight:700;
    text-transform:uppercase;
}

.company-certificates__file-info{
    min-width:0;
}

.company-certificates__file-title{
    margin:0 0 2px;
    color:#333333;
    font-size:17px;
    line-height:1.2;
    font-weight:500;
}

.company-certificates__file-meta{
    color:#6b7280;
    font-size:12px;
    line-height:1.25;
}

.company-certificates__file-btn{
    font-weight: 600;
    padding: 12px 13px;
    border-radius: 8px;
    /*min-width:98px;*/
    /*padding:8px 12px;*/
    /*border-radius: 8px;*/
    background:#f3bf01;
    color:#000000;
    text-decoration:none;
    font-size:15px;
    line-height:1.2;
    flex-shrink:0;
    transition:filter .25s ease, box-shadow .25s ease;
    /*line-height:1;*/
    /*font-weight:600;*/
    /*text-align:center;*/
    /*flex-shrink:0;*/
}

.company-certificates__file-btn:hover{
    text-decoration:none;
    filter:brightness(1.06);
    box-shadow:inset 0 0 0 999px rgba(255,255,255,0.06);
}

@media (max-width: 1024px){
    .company-certificates__box{
        width: unset !important;
    }

    .main-menu-layout__content .company-certificates{
        padding-top: 14px;
        padding-bottom: 0;
    }

    .main-menu-layout__content .company-certificates__box{
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* laptop */
@media (max-width: 1199.98px){

    .company-certificates__intro p{
        font-size:19px;
    }

    .company-certificates__item-title{
        font-size:18px;
    }

    .company-certificates__item-text{
        font-size:17px;
    }

    .company-certificates__file-title{
        font-size:18px;
    }
}

/* tablet */
@media (max-width: 991.98px){
    .company-certificates{
        padding:40px 0 50px;
    }

    .company-certificates__box{
        width:100%;
        padding:24px 18px 20px;
    }

    .company-certificates__intro p{
        font-size:17px;
        line-height:1.55;
    }

    .company-certificates__item{
        gap:6px;
        margin-bottom:10px;
    }

    .company-certificates__icon-wrap{
        width:16px;
        min-width:16px;
    }

    .company-certificates__icon{
        width:16px;
        height:16px;
    }

    .company-certificates__item-title{
        font-size:17px;
    }

    .company-certificates__item-text{
        font-size:16px;
    }

    .company-certificates__file{
        padding:14px 16px;
    }

    .company-certificates__file-pdf{
        width:56px;
        min-width:56px;
        height:56px;
        font-size:15px;
    }

    .company-certificates__file-title{
        font-size:17px;
    }
}

/* mobile */
@media (max-width: 575.98px){
    .company-certificates{
        padding:28px 0 36px;
    }

    .company-certificates .container{
        padding-left:12px;
        padding-right:12px;
    }

    .company-certificates__box{
        padding:18px 14px 14px;
    }

    .company-certificates__intro{
        margin-bottom:18px;
    }

    .company-certificates__intro p{
        font-size:15px;
        line-height:1.55;
    }

    .company-certificates__item{
        gap:6px;
        margin-bottom:10px;
    }

    .company-certificates__icon-wrap{
        width:16px;
        min-width:16px;
    }

    .company-certificates__icon{
        width:16px;
        height:16px;
    }

    .company-certificates__item-title{
        font-size:16px;
        line-height:1.45;
    }

    .company-certificates__item-text{
        font-size:15px;
        line-height:1.5;
    }

    .company-certificates__files{
        margin-top:20px;
    }

    .company-certificates__file{
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        gap:14px;
        padding:10px 16px;
        border-radius:14px;
    }

    .company-certificates__file-left{
        width:auto;
        min-width:0;
        flex:1 1 auto;
        align-items:center;
        gap:14px;
    }

    .company-certificates__file-pdf{
        width:48px;
        min-width:48px;
        height:48px;
        font-size:12px;
    }

    .company-certificates__file-title{
        font-size:17px;
        margin-bottom:4px;
    }

    .company-certificates__file-meta{
        font-size:12px;
    }

    .company-certificates__file-btn{
        width:auto;
        min-width:auto;
        padding:12px 13px;
        font-size:15px;
        white-space:nowrap;
    }
}

@media (max-width: 1024px){
    .company-certificates__intro p,
    .company-certificates__item-title,
    .company-certificates__item-text{
        font-size:16px;
    }

    .company-certificates__file{
        gap:14px;
        padding:10px 16px;
    }

    .company-certificates__file-left{
        flex:1 1 auto;
        min-width:0;
        gap:14px;
    }

    .company-certificates__file-pdf{
        width:48px;
        min-width:48px;
        height:48px;
        font-size:12px;
    }

    .company-certificates__file-title{
        font-size:17px;
        line-height:1.2;
    }

    .company-certificates__file-meta{
        font-size:12px;
    }

    .company-certificates__file-btn{
        padding:12px 13px;
        border-radius:8px;
        font-size:15px;
        white-space:nowrap;
    }
}

@media (max-width: 359.98px){
    .company-documents__file,
    .company-certificates__file{
        flex-direction:column;
        align-items:stretch;
        gap:12px;
    }

    .company-documents__file-left,
    .company-certificates__file-left{
        width:100%;
        align-items:flex-start;
    }

    .company-documents__file-btn,
    .company-certificates__file-btn{
        width:100%;
        min-width:0;
        text-align:center;
    }
}
/* END SERTIFIKATI I LICENCE */

/* START ABOUT US */
.about-us{
    padding: 18px 0 70px;
    background: #ffffff;
}

.about-us .container{
    max-width: 1320px;
}

.about-us__box{
    width: 70%;
    margin-left: 0;
    margin-right: auto;
    background: #F8F8F8;
    padding: 40px 20px 20px;
    font-family: 'Inter', sans-serif;
}

.about-us__title{
    margin: 0 0 18px;
    color: #000000;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 600;
    max-width: 940px;
}

.about-us__subtitle{
    margin: 0 0 16px;
    color: #111;
    font-size: 26px;
    line-height: 1.22;
    font-weight: 700;
    max-width: 980px;
}

.about-us__text{
    margin: 0 0 16px;
    color: #222;
    font-size: 16px;
    line-height: 1.65;
    max-width: 980px;
}

.about-us__text--last{
    margin-bottom: 0;
}

.about-us__image-wrap{
    margin: 18px 0 0;
    overflow: hidden;
}

.about-us__image-wrap--second{
    margin: 22px 0 16px;
}

.about-us__image{
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-us__caption{
    margin: 4px 0 20px;
    color: #444444;
    font-size: 15px;
    line-height: 1.45;
    font-style: italic;
}

.about-us__ordered-list,
.about-us__bullet-list{
    margin: 0 0 22px 22px;
    padding: 0;
    max-width: 980px;
}

.about-us__ordered-list li,
.about-us__bullet-list li{
    margin-bottom: 12px;
    padding-left: 12px;
    color: #222;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.about-us__ordered-list li::marker{
    color: #d10005;
    font-weight: 700;
}

.about-us__bullet-list li::marker{
    color: #d10005;
}

.about-us__logo-box{
    width: 220px;
    margin: 12px 0 20px;
    background: transparent;
}

.about-us__logo-box img{
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

.about-us__quote-box{
    margin: 0 0 18px;
    padding: 16px 18px;
    /*background: #f6f6f6;*/
    background: rgba(0, 0, 0, 0.03);
    border-left: 3px solid #d10005;
    border-radius: 6px;
    max-width: 980px;
}

.about-us__quote-box blockquote{
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    font-style: italic;
}

/* gallery inside same box */
.about-us__gallery{
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.about-us__gallery-col{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-us__gallery-item{
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #eaeaea;
    text-decoration: none;
}

.about-us__gallery-item--square{
    aspect-ratio: 208.34 / 208.34;
}

.about-us__gallery-item--medium-a{
    aspect-ratio: 208.34 / 169.17;
}

.about-us__gallery-item--square-soft{
    aspect-ratio: 208.34 / 207.41;
}

.about-us__gallery-item--medium-b{
    aspect-ratio: 208.34 / 169.55;
}

.about-us__gallery-item--short{
    aspect-ratio: 208.34 / 156.25;
}

.about-us__gallery-item img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* NO hover effect */
.about-us__gallery-item:hover img{
    opacity: 1;
    transform: none;
}

/* lightbox */
.about-us__lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    padding: 40px;
}

.about-us__lightbox.is-open{
    opacity: 1;
    visibility: visible;
}

.about-us__lightbox-inner{
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us__lightbox-img{
    max-width: 100%;
    max-height: 90vh;
    display: block;
    object-fit: contain;
}

.about-us__lightbox-close{
    position: absolute;
    top: 10px;
    right: 18px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
}

.about-us__lightbox-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.about-us__lightbox-nav--prev{
    left: 18px;
}

.about-us__lightbox-nav--next{
    right: 18px;
}

@media (max-width: 1024px){
    .about-us__box{
        width: unset !important;
    }
}

/* tablet */
@media (max-width: 991.98px){
    .about-us{
        padding: 0 0 50px;
    }

    .about-us__box{
        width: 100%;
        padding: 22px 14px 18px;
    }

    .about-us__title{
        font-size: 28px;
    }

    .about-us__subtitle{
        font-size: 20px;
    }

    .about-us__text{
        font-size: 15px;
    }

    .about-us__gallery{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-us__gallery-col{
        gap: 10px;
    }
}

/* mobile */
@media (max-width: 575.98px){
    .about-us{
        padding: 0 0 34px;
    }

    .about-us .container{
        padding-left: 12px;
        padding-right: 12px;
    }

    .about-us__box{
        padding: 18px 12px 14px;
    }

    .about-us__title{
        font-size: 22px;
        line-height: 1.18;
    }

    .about-us__subtitle{
        font-size: 18px;
        line-height: 1.3;
    }

    .about-us__text{
        font-size: 14px;
        line-height: 1.55;
    }

    .about-us__ordered-list,
    .about-us__bullet-list{
        margin-left: 16px;
    }

    .about-us__ordered-list li,
    .about-us__bullet-list li{
        font-size: 13px;
        line-height: 1.5;
    }

    .about-us__logo-box{
        width: 120px;
    }

    .about-us__quote-box{
        padding: 12px 14px;
    }

    .about-us__quote-box blockquote{
        font-size: 14px;
    }

    .about-us__gallery{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-us__gallery-col{
        gap: 10px;
    }

    .about-us__gallery-item{
        border-radius: 14px;
    }

    .about-us__lightbox{
        padding: 20px 10px;
    }

    .about-us__lightbox-nav{
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .about-us__lightbox-close{
        font-size: 38px;
        top: 6px;
        right: 12px;
    }
}
/* END ABOUT US */
/* START USLUGE */
/* START CONTENT BOX */
.content-box {
    padding: 20px 0;
}

.content-box__inner {
    background: #f8f8f8;
    padding: 20px;
    width: 70%;
    font-family: 'Inter', sans-serif;
}

.content-box__inner p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.65;
    color: #000000;
}

.content-box__intro {
    margin-bottom: 10px;
}

.content-box__intro--bold {
    font-weight: 700;
}

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

.content-box__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.65;
}

.content-box__list li::before {
    margin-left: 2px;
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #d10005;
    border-radius: 50%;
}

.content-box__list a {
    color: #d10005;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.content-box__list a.content-box__link--regular {
    font-weight: 400;
}

.content-box__list a:hover {
    color: #000;
}

 .content-box__ending {
     margin-top: 10px;
 }


/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .content-box__inner {
        width: unset !important;
    }
}

/* laptop */
@media (max-width: 1399px) {

    .content-box__inner p,
    .content-box__list li {
        font-size: 18px;
    }
}

/* tablet */
@media (max-width: 991px) {
    .content-box {
        padding: 45px 0;
    }

    .content-box__inner {
        padding: 30px;
    }

    .content-box__inner p,
    .content-box__list li {
        font-size: 17px;
        line-height: 1.6;
    }

    .content-box__list li {
        padding-left: 30px;
        margin-bottom: 12px;
    }

    .content-box__list li::before {
        width: 8px;
        height: 8px;
        top: 12px;
    }
}

/* mobilni */
@media (max-width: 767px) {
    .content-box {
        padding: 30px 0;
    }

    .content-box__inner {
        padding: 22px 18px;
    }

    .content-box__inner p,
    .content-box__list li {
        font-size: 15px;
    }

    .content-box__inner p {
        margin-bottom: 10px;
    }

    .content-box__list li {
        padding-left: 24px;
        margin-bottom: 10px;
    }

    .content-box__list li::before {
        width: 6px;
        height: 6px;
        top: 10px;
    }
}

/* mali mobilni */
@media (max-width: 480px) {
    .content-box__inner {
        padding: 18px 15px;
    }

    .content-box__inner p,
    .content-box__list li {
        font-size: 14px;
    }
}
/* END CONTENT BOX */
/* END USLUGE*/
/* START PROIZVODI */
/* START PRODUCTS SECTION*/
.products-section {
    padding: 20px 0;
    background: transparent;
}

.products-section .container {
    max-width: 1320px;
    margin: 0 auto;
}

.products-section__inner {
    width: 70%;
    margin: 0;
    background: #F8F8F8;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    .products-section__inner {
        width: unset !important;
    }
}

/* head */
.products-section__head {
    margin-bottom: 24px;
}

.products-section__title {
    margin: 0 0 24px;
    font-size: 40px;
    line-height: 1.12;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0;
}

.products-section__title:empty{
    display: none;
}

.products-section__desc {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.65;
    color: #000000;
}

.products-section__desc:last-child {
    margin-bottom: 0;
}
.products-benefits-text {
    font-size: 19px;
    margin: 28px 0 18px;
    color: #1e1e1e;
}
/* features */
.products-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 18px;
}

.products-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 0;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 16px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
    color: #222222;
}

.products-features li::before {
    content: "✓";
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    color: #d10005;
    background: #fff1f1;
    border: 1px solid #f0b7b7;
    margin-top: 2px;
}


.products-features li:nth-child(4) {
    grid-column: 1 / 2;
}

/* products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 30px;
    align-items: stretch;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    box-sizing: border-box;
    padding: 0 0 20px;
}

.product-card__image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 30px;
    margin-bottom: 16px;
}

.product-card__image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 350px;
    object-fit: contain;
}

@media (max-width: 359.98px) {
    .product-card__image img {
        width: min(296px, 100%);
    }
}

@media (min-width: 360px) and (max-width: 399.98px) {
    .product-card__image img {
        width: min(351px, 100%);
    }
}

@media (min-width: 400px) and (max-width: 575.98px) {
    .product-card__image img {
        width: min(401px, 100%);
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .product-card__image img {
        width: min(360px, 100%);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .product-card__image img {
        width: min(488px, 100%);
    }
}

@media (min-width: 1025px) {
    .product-card__image img {
        width: min(426.69px, 100%);
    }
}

.product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.product-card h3 {
    margin: 0 0 14px;
    color: #da1111;
    font-size: 20px;
    line-height: 1.18;
    font-weight: 700;
}

.product-card__text {
    flex: 1;
    min-height: 0;
    max-height: 330px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #c8c8c8 transparent;
}

.product-card__text::-webkit-scrollbar {
    width: 6px;
}

.product-card__text::-webkit-scrollbar-track {
    background: transparent;
}

.product-card__text::-webkit-scrollbar-thumb {
    background: #c8c8c8;
    border-radius: 20px;
}

.product-card__text p {
    margin: 0;
    color: #222222;
    font-size: 16px;
    line-height: 1.55;
}

.product-card__text p:last-child {
    margin-bottom: 0;
}
.product-list {
    margin: 10px 0 0;
    padding-left: 20px;
}

.product-list li {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.5;
}
.product-specs {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.product-specs li {
    border-bottom: 1px solid #e5e5e5;
    padding: 6px 0;
    font-size: 15px;
}

.product-specs li strong {
    color: #000;
    font-weight: 600;
}

/* nema animacija */
.product-card,
.product-card *,
.product-card:hover,
.product-card img:hover {
    transform: none;
    transition: none;
    box-shadow: none;
}

/* responsive */
@media (max-width: 1200px) {

    .products-section__title {
        font-size: 35px;
    }

    .products-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-features li:nth-child(4) {
        grid-column: auto;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .product-card__text p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .products-section {
        padding: 45px 0;
    }

    .products-section__inner {
        width: 100%;
        padding: 30px;
    }

    .products-section__title {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .products-section__desc {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .products-features {
        gap: 14px;
        margin-bottom: 24px;
    }

    .products-features li {
        min-height: 0;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 16px;
    }

    .products-features li::before {
        width: 26px;
        height: 26px;
        flex: 0 0 26px;
        font-size: 16px;
        margin-top: 1px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-card__image {
        padding: 0 18px;
    }

    .product-card__image img {
        width: 68%;
    }

    .product-card__body {
        padding: 0 18px;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .product-card__text {
        max-height: 260px;
    }

    .product-card__text p {
        font-size: 16px;
        line-height: 1.55;
    }
}

@media (max-width: 767px) {
    .products-section {
        padding: 30px 0;
    }

    .products-section__inner {
        padding: 22px 18px;
    }

    .products-section__title {
        font-size: 26px;
    }

    .products-section__desc {
        font-size: 15px;
    }

    .products-features {
        grid-template-columns: 1fr;
    }

    .products-features li {
        min-height: 0;
        padding: 14px 16px;
        font-size: 15px;
        line-height: 1.45;
    }

    .products-features li::before {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        font-size: 15px;
        margin-top: 1px;
    }

    .product-card__image img {
        width: 74%;
    }

    .product-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .product-card__text {
        max-height: 220px;
    }

    .product-card__text p {
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .products-section__inner {
        padding: 18px 15px;
    }

    .products-section__title {
        font-size: 24px;
    }

    .products-section__desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .products-features li {
        padding: 12px 14px;
        border-radius: 16px;
        font-size: 14px;
    }

    .products-features li::before {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
        font-size: 14px;
        margin-top: 1px;
    }

    .product-card__image img {
        width: 82%;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .product-card__text {
        max-height: 200px;
    }

    .product-card__text p {
        font-size: 16px;
    }
}

.product-card__image img {
    height: 350px;
    object-fit: contain;
}

@media (max-width: 359.98px) {
    .product-card__image img {
        width: min(296px, 100%);
    }
}

@media (min-width: 360px) and (max-width: 399.98px) {
    .product-card__image img {
        width: min(351px, 100%);
    }
}

@media (min-width: 400px) and (max-width: 575.98px) {
    .product-card__image img {
        width: min(401px, 100%);
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .product-card__image img {
        width: min(360px, 100%);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .product-card__image img {
        width: min(488px, 100%);
    }
}

@media (min-width: 1025px) {
    .product-card__image img {
        width: min(426.69px, 100%);
    }
}
/* END PRODUCTS SECTION */
/* END PROIZVODI */

.main-menu-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 395px;
    align-items: start;
    gap: 4px;
    width: calc(100% - 30px) !important;
    max-width: 1320px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

.main-menu-layout__content {
    min-width: 0;
}

.main-menu-layout__content .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content > .section:first-child,
.main-menu-layout__content > section:first-child {
    margin-top: 0;
}

.main-menu-layout__content .content-box__inner {
    width: 100%;
}

.main-menu-layout__content .products-section {
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content .products-section .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content .products-section__inner {
    width: 100%;
}

.main-menu-layout__content .documents {
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content .documents .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content .documents-box {
    width: 100%;
}

.main-menu-layout__content .company-documents {
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content .company-documents .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content .company-documents__box {
    width: 100%;
}

.main-menu-layout__content .company-certificates {
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content .company-certificates .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content .company-certificates__box {
    width: 100%;
}

.main-menu-layout__content .about-us {
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content .about-us .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.main-menu-layout__content .about-us__box {
    width: 100%;
}

.main-menu-layout__content .about-us__title,
.main-menu-layout__content .about-us__subtitle,
.main-menu-layout__content .about-us__text,
.main-menu-layout__content .about-us__ordered-list,
.main-menu-layout__content .about-us__bullet-list,
.main-menu-layout__content .about-us__quote-box {
    max-width: none;
}

.main-menu-layout__content .about-us__text {
    line-height: 1.58;
    margin-bottom: 14px;
}

.main-menu-layout__content .about-us__ordered-list,
.main-menu-layout__content .about-us__bullet-list {
    margin-bottom: 18px;
}

.main-menu-layout__content .about-us__ordered-list li,
.main-menu-layout__content .about-us__bullet-list li {
    line-height: 1.5;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.main-menu-aside {
    position: relative;
    top: auto;
    max-height: none;
    overflow-y: visible;
    width: 395px;
    min-height: 427px;
    padding: 28px 22px 24px 21px;
    margin-top: 20px;
    margin-left: 12px;
    font-family: 'Inter', sans-serif;
    background:
        url("/template/trosador/assets/images/bg4.svg") 10px 24px / 82% auto no-repeat,
        #d10005;
    border: 0;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .12);
}

.main-menu-aside ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu-aside li + li {
    margin-top: 0;
}

.main-menu-aside li ul li + li {
    margin-top: 4px;
}

.main-menu-aside > nav > ul > li {
    position: relative;
}

.main-menu-aside > nav > ul > li::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -2px;
    left: 0;
    width: 2px;
    background: rgba(255, 255, 255, .78);
}

.main-menu-aside a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.main-menu-aside > nav > ul > li > a {
    display: inline-block;
    margin: -8px 0 0 0;
    padding: 8px 12px;
    color: #d10005;
    background: #fff;
    font-size: 19px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.main-menu-aside a:hover {
    color: #fff;
}

.main-menu-aside li ul {
    margin-top: 4px;
    padding: 0 0 0 0;
    border-left: 0;
    position: relative;
    z-index: 1;
}

.main-menu-aside li ul a {
    width: calc(100% - 8px);
    max-width: none;
    margin-left: 8px;
    padding: 14px 18px 14px 19px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.main-menu-aside li ul a span {
    display: block;
    max-width: 305px;
}

.main-menu-aside li ul li:last-child > a span {
    max-width: 255px;
}

.main-menu-aside li ul a:hover,
.main-menu-aside li ul .is-active > a {
    color: #111;
    background: #fff;
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .main-menu-layout {
        display: block;
        width: calc(100% - 30px);
        max-width: 100%;
    }

    .main-menu-aside {
        position: static;
        width: 100%;
        min-height: 0;
        max-height: none;
        margin-top: 15px;
        margin-left: 0;
        margin-bottom: 15px;
        box-sizing: border-box;
    }
}
