/* #Table of Contents

1.	Site Styles
2.	Header
3.	Elements
4.	Footer
5.	Media Queries
================================================== */
/* ========================= Site Styles ========================= */
/* Plus Jakarta Sans Variable — self-hosted (latin + latin-ext 200–800), no Google Fonts. */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../assets/fonts/plus-jakarta-sans-variable.woff2') format('woff2');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../assets/fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --nt-font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --fs-h1: clamp(28px, 5vw, 38px);
    --fs-h2: clamp(24px, 4vw, 30px);
    --fs-h3: 17px;
    --fs-body: 16px;
    --fs-small: 13px;
    --fs-trust-title: 14px;
    --lh-heading: 1.2;
    --lh-body: 1.55;
    --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: -apple-system, "Segoe UI", Roboto, sans-serif;
    --fs-body-color: #4a5550;
    --container-content: 1080px;
    --container-hero: 1240px;
    --section-pad: clamp(40px, 5vw, 64px);
    --heading-gap: clamp(28px, 4vw, 40px);
}

.nowrap {
    white-space: nowrap;
}

html {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.25), only screen and (min-device-pixel-ratio:1.25), only screen and (min-resolution:200dpi), only screen and (min-resolution:1.25dppx) {
    -webkit-font-smoothing: subpixel-antialiased;
}

body {
    font-family: var(--nt-font-sans);
    color: #777;
    font-size: 15px;
    line-height: 24px;
    font-weight: 300;
}

.bg-grey {
    background-color: #f6f8f9;
}

.bg-dark {
    color: #FFF;
    background-color: #212425;
}

.bg-color {
    color: #FFF;
    background-color: #ff7469;
}

.bg-img {
    position: relative;
    color: #FFF;
    background-color: #212425;
}

.bg-img .bg-overlay {
    position: relative;
    background-color: rgba(0, 0, 0, .5);
    z-index: 11;
}

.ie .bg-img .bg-overlay {
    background: url(../images/ie-bg-overlay50.png) repeat top left;
}

.bg-img .bg-overlay.bg-overlay40 {
    background-color: rgba(0, 0, 0, .4);
}

.ie .bg-img .bg-overlay.bg-overlay40 {
    background-image: url(../images/ie-bg-overlay40.png);
}

.bg-img .bg-overlay.bg-overlay60 {
    background-color: rgba(0, 0, 0, .6);
}

.ie .bg-img .bg-overlay.bg-overlay60 {
    background-image: url(../images/ie-bg-overlay60.png);
}

.bg-img .bg-overlay.bg-overlay70 {
    background-color: rgba(0, 0, 0, .7);
}

.ie .bg-img .bg-overlay.bg-overlay70 {
    background-image: url(../images/ie-bg-overlay70.png);
}

.bg-img .bg-overlay.bg-overlay80 {
    background-color: rgba(0, 0, 0, .8);
}

.ie .bg-img .bg-overlay.bg-overlay80 {
    background-image: url(../images/ie-bg-overlay80.png);
}

.bg-img .bg-img-base {
    visibility: visible;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: no-repeat center center;
    background-size: cover;
    z-index: 10;
    opacity: 0;
    -webkit-transition: visibility .3s, opacity .3s;
    transition: visibility .3s, opacity .3s;
}

.bg-img .bg-img-base.in {
    visibility: visible;
    opacity: 1;
}

p {
    margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--nt-font-sans);
    color: #444;
    font-weight: 400;
    margin-top: 0px;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
}

h5, h6 {
    margin-bottom: 10px;
}

h1 {
    font-size: 42px;
    line-height: 52px;
}

h2 {
    font-size: 36px;
    line-height: 44px;
}

h3 {
    font-size: 30px;
    line-height: 38px;
}

h4 {
    font-size: 24px;
    line-height: 32px;
}

h5 {
    font-size: 18px;
    line-height: 24px;
}

h6 {
    font-size: 14px;
    line-height: 20px;
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    font-weight: 600;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6, .bg-color h1, .bg-color h2, .bg-color h3, .bg-color h4, .bg-color h5, .bg-color h6, .bg-img h1, .bg-img h2, .bg-img h3, .bg-img h4, .bg-img h5, .bg-img h6 {
    color: #FFF;
}

a, a:visited {
    color: #ff7469;
    -webkit-transition: color .2s ease, background-color .2s ease, background .2s ease, border .2s ease, outline .2s ease, opacity .2s ease-in-out;
    transition: color .2s ease, background-color .2s ease, background .2s ease, border .2s ease, outline .2s ease, opacity .2s ease-in-out;
}

.bg-dark a, .bg-dark a:visited, .bg-color a, .bg-color a:visited, .bg-img a, .bg-img a:visited {
    color: #FFF;
}

a:hover {
    color: #404040;
    text-decoration: none;
}

.bg-dark a:hover, .bg-img a:hover {
    color: #DDD;
}

.bg-color a:hover {
    color: #f9e1e0;
}

a:focus {
    text-decoration: none;
}

ul li {
    line-height: inherit;
}

figure {
    margin: 0px;
}

figure img {
    width: 100%;
}

figure iframe {
    overflow: hidden;
    width: 100% !important;
    background-color: #f4f4f4;
    border: 0px;
}

video {
    width: 100%;
    height: auto;
}

.padding-top0 {
    padding-top: 0px !important;
}

.padding-right0 {
    padding-right: 0px !important;
}

.padding-bottom0 {
    padding-bottom: 0px !important;
}

.padding-left0 {
    padding-left: 0px !important;
}

.padding-top10 {
    padding-top: 10px !important;
}

.padding-top20 {
    padding-top: 20px !important;
}

.padding-top30 {
    padding-top: 30px !important;
}

.padding-top40 {
    padding-top: 40px !important;
}

.padding-top50 {
    padding-top: 50px !important;
}

.padding-top60 {
    padding-top: 60px !important;
}

.padding-top70 {
    padding-top: 70px !important;
}

.padding-top80 {
    padding-top: 80px !important;
}

.padding-bottom10 {
    padding-bottom: 10px !important;
}

.padding-bottom20 {
    padding-bottom: 20px !important;
}

.padding-bottom30 {
    padding-bottom: 30px !important;
}

.padding-bottom40 {
    padding-bottom: 40px !important;
}

.padding-bottom50 {
    padding-bottom: 50px !important;
}

.padding-bottom60 {
    padding-bottom: 60px !important;
}

.padding-bottom70 {
    padding-bottom: 70px !important;
}

.padding-bottom80 {
    padding-bottom: 80px !important;
}

.margin-top0 {
    margin-top: 0px !important;
}

.margin-right0 {
    margin-right: 0px !important;
}

.margin-bottom0 {
    margin-bottom: 0px !important;
}

.margin-left0 {
    margin-left: 0px !important;
}

.margin-top10 {
    margin-top: 10px !important;
}

.margin-top20 {
    margin-top: 20px !important;
}

.margin-top30 {
    margin-top: 30px !important;
}

.margin-top40 {
    margin-top: 40px !important;
}

.margin-top50 {
    margin-top: 50px !important;
}

.margin-top60 {
    margin-top: 60px !important;
}

.margin-top70 {
    margin-top: 70px !important;
}

.margin-top80 {
    margin-top: 80px !important;
}

.margin-bottom10 {
    margin-bottom: 10px !important;
}

.margin-bottom20 {
    margin-bottom: 20px !important;
}

.margin-bottom30 {
    margin-bottom: 30px !important;
}

.margin-bottom40 {
    margin-bottom: 40px !important;
}

.margin-bottom50 {
    margin-bottom: 50px !important;
}

.margin-bottom60 {
    margin-bottom: 60px !important;
}

.margin-bottom70 {
    margin-bottom: 70px !important;
}

.margin-bottom80 {
    margin-bottom: 80px !important;
}

.list-icon {
    margin: 20px 0px;
}

.list-icon ul {
    padding: 0px;
    margin: 0px;
}

.list-icon ul li {
    list-style-type: none;
    position: relative;
    font-size: 16px;
    padding-left: 30px;
    margin-bottom: 10px;
}

.list-icon ul li:last-child {
    margin-bottom: 0px;
}

.list-icon ul li .fa {
    position: absolute;
    top: 3px;
    left: 0px;
    color: #ff7469;
    font-size: 20px;
}

.bg-color .list-icon ul li .fa {
    color: #FFF;
}

.required {
    color: #f63737;
}

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], .ie input[type="range"], .ie9 input[type="range"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], select, textarea {
    height: 50px;
    font-family: var(--nt-font-sans);
    color: #b0b0b0;
    font-size: 16px;
    padding: 0px 20px;
    border: 1px solid #e4e4e4;
    outline: none !important;
    border-radius: 3px;
}

.bg-dark input[type="color"], .bg-dark input[type="date"], .bg-dark input[type="datetime"], .bg-dark input[type="datetime-local"], .bg-dark input[type="email"], .bg-dark input[type="month"], .bg-dark input[type="number"], .bg-dark input[type="password"], .bg-dark .ie input[type="range"], .bg-dark .ie9 input[type="range"], .bg-dark input[type="search"], .bg-dark input[type="tel"], .bg-dark input[type="text"], .bg-dark input[type="time"], .bg-dark input[type="url"], .bg-dark input[type="week"], .bg-dark select, .bg-dark textarea, .bg-color input[type="color"], .bg-color input[type="date"], .bg-color input[type="datetime"], .bg-color input[type="datetime-local"], .bg-color input[type="email"], .bg-color input[type="month"], .bg-color input[type="number"], .bg-color input[type="password"], .bg-color .ie input[type="range"], .bg-color .ie9 input[type="range"], .bg-color input[type="search"], .bg-color input[type="tel"], .bg-color input[type="text"], .bg-color input[type="time"], .bg-color input[type="url"], .bg-color input[type="week"], .bg-color select, .bg-color textarea, .bg-img input[type="color"], .bg-img input[type="date"], .bg-img input[type="datetime"], .bg-img input[type="datetime-local"], .bg-img input[type="email"], .bg-img input[type="month"], .bg-img input[type="number"], .bg-img input[type="password"], .bg-img .ie input[type="range"], .bg-img .ie9 input[type="range"], .bg-img input[type="search"], .bg-img input[type="tel"], .bg-img input[type="text"], .bg-img input[type="time"], .bg-img input[type="url"], .bg-img input[type="week"], .bg-img select, .bg-img textarea {
    border: 0px;
}

.ie input[type="color"], .ie input[type="date"], .ie input[type="datetime"], .ie input[type="datetime-local"], .ie input[type="email"], .ie input[type="month"], .ie input[type="number"], .ie input[type="password"], .ie input[type="range"], .ie input[type="search"], .ie input[type="tel"], .ie input[type="text"], .ie input[type="time"], .ie input[type="url"], .ie input[type="week"] {
    line-height: 48px;
}

.ie .bg-dark input[type="color"], .ie .bg-dark input[type="date"], .ie .bg-dark input[type="datetime"], .ie .bg-dark input[type="datetime-local"], .ie .bg-dark input[type="email"], .ie .bg-dark input[type="month"], .ie .bg-dark input[type="number"], .ie .bg-dark input[type="password"], .ie .bg-dark input[type="range"], .ie .bg-dark input[type="search"], .ie .bg-dark input[type="tel"], .ie .bg-dark input[type="text"], .ie .bg-dark input[type="time"], .ie .bg-dark input[type="url"], .ie .bg-dark input[type="week"], .ie .bg-color input[type="color"], .ie .bg-color input[type="date"], .ie .bg-color input[type="datetime"], .ie .bg-color input[type="datetime-local"], .ie .bg-color input[type="email"], .ie .bg-color input[type="month"], .ie .bg-color input[type="number"], .ie .bg-color input[type="password"], .ie .bg-color input[type="range"], .ie .bg-color input[type="search"], .ie .bg-color input[type="tel"], .ie .bg-color input[type="text"], .ie .bg-color input[type="time"], .ie .bg-color input[type="url"], .ie .bg-color input[type="week"], .ie .bg-img input[type="color"], .ie .bg-img input[type="date"], .ie .bg-img input[type="datetime"], .ie .bg-img input[type="datetime-local"], .ie .bg-img input[type="email"], .ie .bg-img input[type="month"], .ie .bg-img input[type="number"], .ie .bg-img input[type="password"], .ie .bg-img input[type="range"], .ie .bg-img input[type="search"], .ie .bg-img input[type="tel"], .ie .bg-img input[type="text"], .ie .bg-img input[type="time"], .ie .bg-img input[type="url"], .ie .bg-img input[type="week"] {
    line-height: 50px;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0px;
}

input[type="color"]::-webkit-color-swatch {
    border: 0px;
}

@-moz-document url-prefix() {
    input[type="color"] {
        height: 34px;
        padding: 2px;
        border-color: #707070;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type="color"] {
        height: 34px;
        padding: 2px;
        border-color: #707070;
    }

    ::i-block-chrome, input[type="color"] {
        height: 50px;
        padding: 0px 20px;
        border-color: #e0e0e0;
    }
}

input[type="date"]::-webkit-inner-spin-button, input[type="datetime-local"]::-webkit-inner-spin-button, input[type="month"]::-webkit-inner-spin-button, input[type="week"]::-webkit-inner-spin-button {
    display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator, input[type="datetime-local"]::-webkit-calendar-picker-indicator, input[type="month"]::-webkit-calendar-picker-indicator, input[type="week"]::-webkit-calendar-picker-indicator {
    background: #f0f0f0;
    margin-left: 5px;
}

input[type="file"] {
    line-height: 1;
}

input[type="image"] {
    background: none;
}

input[type="number"]::-webkit-inner-spin-button {
    display: block;
    position: relative;
    width: 8px;
    color: #333;
    text-align: center;
    cursor: pointer;
    margin-left: 10px;
    -webkit-appearance: none;
}

input[type="number"]::-webkit-inner-spin-button:before, input[type="number"]::-webkit-inner-spin-button:after {
    position: absolute;
    right: 0px;
    font-family: monospace;
    content: '^';
}

input[type="number"]::-webkit-inner-spin-button:before {
    top: 0px;
}

input[type="number"]::-webkit-inner-spin-button:after {
    bottom: 0px;
    -webkit-transform: rotate(180deg);
}

input[type="time"]::-webkit-inner-spin-button {
    margin: 11px 0px 0px 5px;
}

select, textarea {
    height: auto;
    padding: 12.5px 16px;
}

::i-block-chrome, select {
    padding: 11.5px 20px;
    -webkit-appearance: none;
}

textarea {
    padding-left: 20px;
    padding-right: 20px;
}

input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, .ie input[type="range"]:focus, .ie9 input[type="range"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, select:focus, textarea:focus {
    color: #404040;
    border-color: #ff7469;
}

input[type="color"]:disabled, input[type="date"]:disabled, input[type="datetime"]:disabled, input[type="datetime-local"]:disabled, input[type="email"]:disabled, input[type="month"]:disabled, input[type="number"]:disabled, input[type="password"]:disabled, .ie input[type="range"]:disabled, .ie9 input[type="range"]:disabled, input[type="search"]:disabled, input[type="tel"]:disabled, input[type="text"]:disabled, input[type="time"]:disabled, input[type="url"]:disabled, input[type="week"]:disabled, select:disabled, textarea:disabled {
    color: #a9a9a9;
    background-color: #e9e9e9;
    border-color: #e9e9e9;
}

.btn-custom, input[type="button"], input[type="submit"], input[type="reset"], button {
    font-family: var(--nt-font-sans);
    color: #FFF !important;
    font-size: 16px;
    line-height: 50px;
    text-align: left;
    font-weight: 400;
    white-space: nowrap;
    background-color: #ff7469;
    padding: 14.5px 25px;
    border: 0px;
    outline: none !important;
    border-radius: 3px;
    -webkit-transition: color .2s ease, background-color .2s ease, background .2s ease;
    transition: color .2s ease, background-color .2s ease, background .2s ease;
}

.bg-color .btn-custom, .bg-color input[type="button"], .bg-color input[type="submit"], .bg-color input[type="reset"], .bg-color button {
    color: #404040 !important;
    background-color: #FFF;
}

input[type="button"], input[type="submit"], input[type="reset"], button {
    line-height: 1;
    padding-top: 17px;
    padding-bottom: 17px;
}

.btn-custom.btn-blue, input[type="button"].btn-blue, input[type="submit"].btn-blue, input[type="reset"].btn-blue, button.btn-blue {
    background-color: #3ebcfa;
}

.btn-custom.btn-blue:hover, input[type="button"].btn-blue:hover, input[type="submit"].btn-blue:hover, input[type="reset"].btn-blue:hover, button.btn-blue:hover {
    background-color: #2daae8;
}

.btn-custom.btn-green, input[type="button"].btn-green, input[type="submit"].btn-green, input[type="reset"].btn-green, button.btn-green {
    background-color: #44d86e;
}

.btn-custom.btn-green:hover, input[type="button"].btn-green:hover, input[type="submit"].btn-green:hover, input[type="reset"].btn-green:hover, button.btn-green:hover {
    background-color: #32c15b;
}

.btn-custom.btn-red, input[type="button"].btn-red, input[type="submit"].btn-red, input[type="reset"].btn-red, button.btn-red {
    background-color: #ff7469;
}

.bg-color .btn-custom.btn-red, .bg-color input[type="button"].btn-red, .bg-color input[type="submit"].btn-red, .bg-color input[type="reset"].btn-red, .bg-color button.btn-red {
    background-color: #FFF;
}

.btn-custom:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, button:hover, .btn-custom.btn-red:hover, input[type="button"].btn-red:hover, input[type="submit"].btn-red:hover, input[type="reset"].btn-red:hover, button.btn-red:hover {
    background-color: #f56357;
}

.bg-color .btn-custom:hover, .bg-color input[type="button"]:hover, .bg-color input[type="submit"]:hover, .bg-color input[type="reset"]:hover, .bg-color button:hover, .bg-color .btn-custom.btn-red:hover, .bg-color input[type="button"].btn-red:hover, .bg-color input[type="submit"].btn-red:hover, .bg-color input[type="reset"].btn-red:hover, .bg-color button.btn-red:hover {
    background-color: #f9e1e0;
}

.btn-custom.btn-pink, input[type="button"].btn-pink, input[type="submit"].btn-pink, input[type="reset"].btn-pink, button.btn-pink {
    background-color: #fb53c2;
}

.btn-custom.btn-pink:hover, input[type="button"].btn-pink:hover, input[type="submit"].btn-pink:hover, input[type="reset"].btn-pink:hover, button.btn-pink:hover {
    background-color: #e741af;
}

.btn-custom.btn-purple, input[type="button"].btn-purple, input[type="submit"].btn-purple, input[type="reset"].btn-purple, button.btn-purple {
    background-color: #c95ef5;
}

.btn-custom.btn-purple:hover, input[type="button"].btn-purple:hover, input[type="submit"].btn-purple:hover, input[type="reset"].btn-purple:hover, button.btn-purple:hover {
    background-color: #b54be1;
}

.btn-custom.btn-yellow, input[type="button"].btn-yellow, input[type="submit"].btn-yellow, input[type="reset"].btn-yellow, button.btn-yellow {
    background-color: #f7b943;
}

.btn-custom.btn-yellow:hover, input[type="button"].btn-yellow:hover, input[type="submit"].btn-yellow:hover, input[type="reset"].btn-yellow:hover, button.btn-yellow:hover {
    background-color: #e6a933;
}

.btn-custom.disabled, input[type="button"]:disabled, input[type="submit"]:disabled, input[type="reset"]:disabled, button:disabled, .btn-custom.disabled:hover, input[type="button"]:disabled:hover, input[type="submit"]:disabled:hover, input[type="reset"]:disabled:hover, button:disabled:hover {
    color: #a9a9a9 !important;
    background-color: #e9e9e9;
}

.btn-custom.btn-icon-before .fa {
    margin-right: 10px;
}

.btn-custom.btn-icon-after .fa {
    margin-left: 10px;
}

.btn-custom.btn-small, input[type="button"].btn-small, input[type="submit"].btn-small, input[type="reset"].btn-small, button.btn-small {
    font-size: 14px;
    line-height: 42px;
    padding: 11.5px 18px;
}

input[type="button"].btn-small, input[type="submit"].btn-small, input[type="reset"].btn-small, button.btn-small {
    line-height: 1;
    padding-top: 14px;
    padding-bottom: 14px;
}

.btn-custom.btn-medium, input[type="button"].btn-medium, input[type="submit"].btn-medium, input[type="reset"].btn-medium, button.btn-medium {
    font-size: 18px;
    line-height: 56px;
    padding: 16px 32px;
}

input[type="button"].btn-medium, input[type="submit"].btn-medium, input[type="reset"].btn-medium, button.btn-medium {
    line-height: 1;
    padding-top: 19px;
    padding-bottom: 19px;
}

.btn-custom.btn-large, input[type="button"].btn-large, input[type="submit"].btn-large, input[type="reset"].btn-large, button.btn-large {
    font-size: 20px;
    line-height: 62px;
    padding: 18px 40px;
}

input[type="button"].btn-large, input[type="submit"].btn-large, input[type="reset"].btn-large, button.btn-large {
    line-height: 1;
    padding-top: 21px;
    padding-bottom: 21px;
}

button.close {
    font-family: Arial, Helvetica, sans-serif;
    color: #404040 !important;
    font-size: 20px;
    margin: 0px;
    border-radius: 0px;
}

button.close:hover {
    color: #111;
    background: none;
    border: 0px;
}

.aligncenter {
    display: block;
    margin: 0px auto 20px auto;
}

.alignright {
    float: right;
    margin: 10px 0 10px 10px;
}

.alignleft {
    float: left;
    margin: 10px 10px 10px 0;
}

.carousel-slider.slick-slider {
    margin-bottom: 0px;
}

.carousel-slider .slick-prev, .carousel-slider .slick-next {
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: #d0d0d0;
    margin-top: -20px;
    z-index: 100;
    border-radius: 50%;
    box-shadow: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: color .2s ease, background-color .2s ease, background .2s ease;
    transition: color .2s ease, background-color .2s ease, background .2s ease;
}

.bg-dark .carousel-slider .slick-prev, .bg-dark .carousel-slider .slick-next, .bg-color .carousel-slider .slick-prev, .bg-color .carousel-slider .slick-next, .bg-img .carousel-slider .slick-prev, .bg-img .carousel-slider .slick-next {
    background-color: #FFF;
}

.carousel-slider .slick-prev.slick-disabled, .carousel-slider .slick-next.slick-disabled {
    cursor: default;
}

.carousel-slider .slick-prev:hover, .carousel-slider .slick-next:hover {
    background-color: #ff7469;
}

.bg-color .carousel-slider .slick-prev:hover, .bg-color .carousel-slider .slick-next:hover {
    background-color: #202020;
}

.carousel-slider .slick-prev.slick-disabled:hover, .carousel-slider .slick-next.slick-disabled:hover {
    background-color: #d0d0d0;
}

.bg-dark .carousel-slider .slick-prev.slick-disabled:hover, .bg-dark .carousel-slider .slick-next.slick-disabled:hover, .bg-color .carousel-slider .slick-prev.slick-disabled:hover, .bg-color .carousel-slider .slick-next.slick-disabled:hover, .bg-img .carousel-slider .slick-prev.slick-disabled:hover, .bg-img .carousel-slider .slick-next.slick-disabled:hover {
    background-color: #FFF;
}

.carousel-slider .slick-prev {
    left: 20px;
}

.carousel-slider .slick-next {
    right: 20px;
}

.carousel-slider .slick-prev:before, .carousel-slider .slick-next:before {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    font: normal normal normal 24px/38px FontAwesome;
    color: #FFF;
    text-align: center;
    text-rendering: auto;
    background-color: transparent;
    content: '\f104';
    opacity: 1;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-dark .carousel-slider .slick-prev:before, .bg-dark .carousel-slider .slick-next:before, .bg-color .carousel-slider .slick-prev:before, .bg-color .carousel-slider .slick-next:before, .bg-img .carousel-slider .slick-prev:before, .bg-img .carousel-slider .slick-next:before {
    color: #202020;
}

.bg-dark .carousel-slider .slick-prev:hover:before, .bg-dark .carousel-slider .slick-next:hover:before, .bg-color .carousel-slider .slick-prev:hover:before, .bg-color .carousel-slider .slick-next:hover:before, .bg-img .carousel-slider .slick-prev:hover:before, .bg-img .carousel-slider .slick-next:hover:before {
    color: #FFF;
}

.bg-dark .carousel-slider .slick-prev.slick-disabled:hover:before, .bg-dark .carousel-slider .slick-next.slick-disabled:hover:before, .bg-color .carousel-slider .slick-prev.slick-disabled:hover:before, .bg-color .carousel-slider .slick-next.slick-disabled:hover:before, .bg-img .carousel-slider .slick-prev.slick-disabled:hover:before, .bg-img .carousel-slider .slick-next.slick-disabled:hover:before {
    color: #202020;
}

.carousel-slider .slick-next:before {
    content: '\f105';
}

.carousel-slider .slick-dots {
    right: 0px;
    bottom: 20px;
    left: 0px;
    line-height: 1;
    margin-bottom: 0px;
}

.carousel-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0px;
}

.carousel-slider .slick-dots li button {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #d0d0d0;
    padding: 0px;
    margin: 0px 10px;
    border-radius: 50%;
    box-shadow: none;
}

.bg-dark .carousel-slider .slick-dots li button, .bg-color .carousel-slider .slick-dots li button, .bg-img .carousel-slider .slick-dots li button {
    background: #FFF;
}

.carousel-slider .slick-dots li button:before {
    display: none;
}

.carousel-slider .slick-dots li button:hover, .carousel-slider .slick-dots li.slick-active button {
    background: #ff7469;
}

.bg-color .carousel-slider .slick-dots li button:hover, .bg-color .carousel-slider .slick-dots li.slick-active button {
    background: #202020;
}

.carousel-slider .slick-slide, .carousel-slider .slick-slide a {
    outline: none;
}

.carousel-slider img {
    width: 100%;
}

.alert h4 {
    margin-bottom: 10px;
}

.tooltip {
    font-family: var(--nt-font-sans);
    font-size: 13px;
    line-height: 18px;
    font-weight: 300;
    text-transform: lowercase;
}

.tooltip-inner {
    padding: 5px 10px;
}

.wrap-container20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.wrap-container40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.wrap-container60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.wrap-container80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.wrap-container100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.wrap-container120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.wrap-container4020 {
    padding-top: 40px;
    padding-bottom: 20px;
}

.wrap-container6020 {
    padding-top: 60px;
    padding-bottom: 20px;
}

.wrap-container6040 {
    padding-top: 60px;
    padding-bottom: 40px;
}

.wrap-container8040 {
    padding-top: 80px;
    padding-bottom: 40px;
}

.wrap-container8060 {
    padding-top: 80px;
    padding-bottom: 60px;
}

.wrap-container10060 {
    padding-top: 100px;
    padding-bottom: 60px;
}

.wrap-container10080 {
    padding-top: 100px;
    padding-bottom: 80px;
}

.wrap-container12080 {
    padding-top: 120px;
    padding-bottom: 80px;
}

.wrap-container120100 {
    padding-top: 120px;
    padding-bottom: 100px;
}

.col-txt40 {
    padding-top: 40px;
}

.col-txt60 {
    padding-top: 60px;
}

.col-txt80 {
    padding-top: 80px;
}

.col-txt100 {
    padding-top: 100px;
}

.col-txt120 {
    padding-top: 120px;
}

.border-top {
    border-top: 1px solid #e4e4e4;
}

.border-bottom {
    border-bottom: 1px solid #e4e4e4;
}

.no-border-top {
    border-top: 0px;
}

.no-border-bottom {
    border-bottom: 0px;
}

.txt-desc {
    font-size: 14px;
    line-height: 22px;
    margin: 10px 0px 0px;
}

.txt-desc a {
    font-weight: 400;
}

.post-heading-center {
    text-align: center;
    margin-bottom: 40px;
}

.post-heading-center h2 {
    color: #202020;
    font-weight: 600;
    margin: 0px;
}

.bg-dark .post-heading-center h2, .bg-color .post-heading-center h2, .bg-img .post-heading-center h2 {
    color: #FFF;
}

.post-heading-center p {
    font-family: var(--nt-font-sans);
    color: #a0a0a0;
    font-size: 20px;
    line-height: 28px;
    margin: 15px 0px 0px;
}

.bg-dark .post-heading-center p, .bg-color .post-heading-center p, .bg-img .post-heading-center p {
    color: #FFF;
}

.post-heading-left {
    margin-bottom: 25px;
}

.post-heading-left h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 0px;
}

.post-heading-left h2 strong {
    color: #ff7469;
}

.bg-color .post-heading-left h2 strong {
    color: #FFF;
}

.post-heading-left p {
    font-family: var(--nt-font-sans);
    color: #a9a9a9;
    font-size: 18px;
    margin: 7px 0px 0px;
}

.bg-dark .post-heading-left p, .bg-color .post-heading-left p, .bg-img .post-heading-left p {
    color: #FFF;
}

.post-heading-left.post-heading-top-desc p {
    margin: 0px 0px 7px;
}

/* ========================= Header ========================= */
#header .header-overlay {
    background-color: rgba(0, 0, 0, .4);
}

.ie #header .header-overlay {
    background: url(../images/ie-bg-overlay40.png) repeat top left;
}

/* Navigation Menu */
#header .navbar {
    min-height: 0px;
    color: #FFF;
    padding: 40px 0px;
    margin: 0px;
    border: 0px;
    border-radius: 0px;
}

#header.header-page .navbar {
    background-color: #212425;
}

#header .navbar-brand, #navigation_affix .navbar-brand {
    height: auto;
    color: #FFF;
    padding: 0px;
}

#header .navbar>.container .navbar-brand,
#header .navbar>.container-fluid .navbar-brand,
#navigation_affix .navbar>.container .navbar-brand,
#navigation_affix .navbar>.container-fluid .navbar-brand {
    margin: 0px;
}

#header .navbar-brand img, #navigation_affix .navbar-brand img {
    height: 40px;
}

#header .nav, #navigation_affix .nav {
    float: right;
    height: 40px;
}

#header .nav>li {
    padding: 11px 25px;
}

#header .nav>li.menu-btn {
    padding-top: 5px;
    padding-bottom: 5px;
}

#header .nav>li:last-child, #navigation_affix .nav>li:last-child {
    padding-right: 0px;
}

#header .nav>li>a, #navigation_affix .nav>li>a {
    float: left;
    font-family: var(--nt-font-sans);
    color: #DDD;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-transform: uppercase;
    background: none !important;
    padding: 0px;
}

#header .nav>li.menu-btn>a, #navigation_affix .nav>li.menu-btn>a {
    color: #FFF !important;
    background: #ff7469 !important;
    padding: 6.5px 12px 5.5px;
    border-radius: 15px;
}

#header .nav>li>a:hover, #header .nav>li.active>a {
    color: #FFF;
}

#header .nav>li.menu-btn>a:hover, #navigation_affix .nav>li.menu-btn>a:hover, #header .nav>li.menu-btn.active>a, #navigation_affix .nav>li.menu-btn.active>a {
    background: #f56357 !important;
}

#header .navbar-nav, #navigation_affix .navbar-nav {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Navigation Affix */
#navigation_affix {
    position: fixed;
    top: -60px;
    right: 0px;
    left: 0px;
    height: 60px;
    background-color: rgba(255, 255, 255, .95);
    z-index: 1000;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, .12);
    -webkit-transition: top .3s ease;
    transition: top .3s ease;
}

.ie #navigation_affix {
    background: url(../images/ie-bg-navigation_affix.png) repeat top left;
    border-bottom: 1px solid #e4e4e4;
}

#navigation_affix.show {
    top: 0px;
}

#navigation_affix .navbar-brand, #navigation_affix .nav>li>a {
    color: #444;
}
#navigation_affix .navbar-brand .text-logo,
#header .navbar-brand .text-logo {
    color: #1f3455 !important;
}
#navigation_affix .navbar-brand .text-logo:hover,
#header .navbar-brand .text-logo:hover {
    color: #c29a53 !important;
}

#navigation_affix .navbar-brand {
    padding: 10px 0px;
}

#navigation_affix .nav {
    height: 60px;
}

#navigation_affix .nav>li {
    padding: 0px 15px;
}

#navigation_affix .nav>li.menu-btn {
    padding-top: 15px;
    padding-bottom: 15px;
}

#navigation_affix .nav>li>a {
    padding: 19px 0px 21px;
    border-top: 2px solid transparent;
    border-bottom: 0px;
}

#navigation_affix .nav>li.menu-btn>a {
    border-top: 0px;
}

#navigation_affix .nav>li>a:hover {
    color: #ff7469;
}

#navigation_affix .nav>li.active>a {
    color: #ff7469;
    border-top-color: #ff7469;
}

/* Navigation Mobile */
#navigation_mobile {
    display: none;
    font-family: var(--nt-font-sans);
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

#navigation_mobile .nav-menu-links {
    display: none;
    background-color: #ff7469;
}

#navigation_mobile ul {
    padding: 30px 100px;
    margin: 0px;
}

#navigation_mobile ul li {
    list-style-type: none;
    padding: 11px 0px;
}

#navigation_mobile ul li a {
    display: block;
    color: #f9e1e0;
}

#navigation_mobile ul li a:hover {
    color: #FFF;
}

#navigation_mobile .nav-menu-button {
    background-color: #f56357;
    padding: 14.5px 0px 13.5px;
}

#navigation_mobile .nav-menu-button button.nav-menu-toggle {
    color: #f9e1e0 !important;
    font-size: 24px;
    line-height: 1;
    background: none;
    padding: 0px;
    border: 0px;
    border-radius: 0px;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
}

#navigation_mobile .nav-menu-button button.nav-menu-toggle:hover {
    color: #FFF !important;
}

/* Header Content */
.header1 .header-content {
    color: #FFF;
    padding: 60px 0px 100px;
}

.header1 .header-content h1, .header1 .header-content h2, .header1 .header-content h3, .header1 .header-content h4, .header1 .header-content h5, .header1 .header-content h6, .header1 .header-content a {
    color: #FFF;
}

.header1 .header-content .header-heading-title {
    text-align: center;
    margin-bottom: 60px;
}

.header1 .header-content .header-heading-title h1 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    margin: 0px;
}

.header1 .header-content .header-heading-title h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    margin: 20px 0px 0px;
}

.header1 .header-content .header-form {
    overflow: hidden;
    color: #777;
    background-color: #FFF;
    border-radius: 8px;
}

.header1 .header-content .header-form h1, .header1 .header-content .header-form h2, .header1 .header-content .header-form h3, .header1 .header-content .header-form h4, .header1 .header-content .header-form h5, .header1 .header-content .header-form h6 {
    color: #444;
}

.header1 .header-content .header-form .header-form-heading {
    color: #FFF;
    line-height: 22px;
    background-color: #ff7469;
    padding: 25px 30px;
}

.header1 .header-content .header-form .header-form-heading h4 {
    overflow: hidden;
    color: #FFF;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0px;
}

.header1 .header-content .header-form .header-form-heading h4 .fa {
    float: left;
    font-size: 22px;
    line-height: 1;
    margin-right: 10px;
}

.header1 .header-content .header-form .header-form-heading p {
    margin: 10px 0px 0px;
}

.header1 .header-content .header-form .header-form-body {
    overflow: hidden;
    position: relative;
    padding: 30px;
}

.header1 .header-content .header-form .header-form-body .submit-status {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
    background-color: rgba(255, 255, 255, .5);
    z-index: 400;
}

.ie .header1 .header-content .header-form .header-form-body .submit-status {
    background: url(../images/ie-bg-submit-status.png) repeat top left;
}

.header1 .header-content .header-form .header-form-body .submit-status span {
    position: absolute;
    top: 50%;
    right: 15px;
    left: 15px;
    text-align: center;
    background-color: #FFF;
    padding: 14px 15px;
    margin-top: -50px;
    border: 1px solid #FFF;
    border-radius: 3px;
}

.header1 .header-content .header-form .header-form-body .submit-status span.error {
    color: #d86c6c;
    background-color: #f6caca;
    border-color: #e9b8b8;
}

.header1 .header-content .header-form .header-form-body .submit-status span.success {
    color: #529552;
    background-color: #b9edb9;
    border-color: #a5dda5;
}

.header1 .header-content .header-form .header-form-body .submit-status span .fa {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

.header1 .header-content .header-form .header-form-body input[type="text"], .header1 .header-content .header-form .header-form-body input[type="email"] {
    width: 100%;
    margin-bottom: 15px;
}

.header1 .header-content .header-form .header-form-body textarea {
    display: block;
    width: 100%;
    height: 90px;
    margin-bottom: 15px;
}

.header1 .header-content .header-form .header-form-body input[type="text"].error, .header1 .header-content .header-form .header-form-body input[type="email"].error, .header1 .header-content .header-form .header-form-body textarea.error {
    border-color: #d43d3d;
}

.header1 .header-content .header-form .header-form-body input[type="submit"] {
    width: 100%;
    text-align: center;
    min-width: 100%;
    border: 0;
}

.header1 .header-content .header-form .header-form-body .txt-desc {
    font-family: var(--nt-font-sans);
    color: #a9a9a9;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    margin-top: 20px;
}

.header1 .header-content .header-form .header-form-body .txt-desc a {
    color: #777;
}

.header1 .header-content .header-form .header-form-body .txt-desc a:hover {
    color: #ff7469;
}

.header1 .header-content .header-txt-list {
    padding: 20px 0px 0px;
    margin: 0px;
}

.header1 .header-content .header-txt-list li {
    list-style-type: none;
    position: relative;
    min-height: 60px;
    padding: 0px 0px 40px 60px;
}

.header1 .header-content .header-txt-list li:last-child {
    padding-bottom: 0px;
}

.header1 .header-content .header-txt-list li .fa {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 36px;
    line-height: 60px;
}

.header1 .header-content .header-txt-list li h4 {
    margin: 0px;
}

.header1 .header-content .header-txt-list li p {
    margin: 4px 0px 0px;
}

/* Hero1: na mobile najpierw lista tekstowa, potem formularz (desktop bez zmian) */
@media (max-width: 767px) {
    .header1 .header-content .header-hero-row {
        display: flex;
        flex-direction: column;
    }

    .header1 .header-content .header-hero-row .header-hero-txt-col {
        order: 1;
    }

    .header1 .header-content .header-hero-row .header-hero-form-col {
        order: 2;
        margin-top: 30px;
    }
}

/* Header 2 Content */
.header2 .header-content {
    color: #FFF;
    padding: 60px 0px 100px;
}

.header2 .header-content h1, .header2 .header-content h2, .header2 .header-content h3, .header2 .header-content h4, .header2 .header-content h5, .header2 .header-content h6, .header2 .header-content a {
    color: #FFF;
}

.header2 .header-content .header-txt {
    text-align: center;
    padding-top: 80px;
}

.header2 .header-content .header-txt h1 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    margin: 0px;
}

.header2 .header-content .header-txt h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    margin: 15px 0px 0px;
}

.header2 .header-content .header-txt .header-txt-btn {
    margin-top: 25px;
}

.header2 .header-content .header-form {
    overflow: hidden;
    position: relative;
    background-color: rgba(0, 0, 0, .4);
    padding: 35px 40px;
    border-radius: 8px;
}

.ie .header2 .header-content .header-form {
    background: url(../images/ie-bg-overlay40.png) repeat top left;
}

.header2 .header-content .header-form .submit-status {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
    background-color: rgba(0, 0, 0, .5);
    z-index: 400;
}

.ie .header2 .header-content .header-form .submit-status {
    background: url(../images/ie-bg-overlay50.png) repeat top left;
}

.header2 .header-content .header-form .submit-status span {
    position: absolute;
    top: 50%;
    right: 15px;
    left: 15px;
    text-align: center;
    background-color: #FFF;
    padding: 14px 15px;
    margin-top: -50px;
    border: 1px solid #FFF;
    border-radius: 3px;
}

.header2 .header-content .header-form .submit-status span.error {
    color: #d86c6c;
    background-color: #f6caca;
    border-color: #e9b8b8;
}

.header2 .header-content .header-form .submit-status span.success {
    color: #529552;
    background-color: #b9edb9;
    border-color: #a5dda5;
}

.header2 .header-content .header-form .submit-status span .fa {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

.header2 .header-content .header-form .header-form-heading {
    list-style-type: none;
    line-height: 26px;
    font-weight: 400;
    padding: 0px;
    margin-bottom: 40px;
}

.header2 .header-content .header-form .header-form-heading li {
    position: relative;
    min-height: 38px;
    padding-left: 62px;
    margin-bottom: 20px;
}

.header2 .header-content .header-form .header-form-heading li:last-child {
    margin-bottom: 0px;
}

.header2 .header-content .header-form .header-form-heading li .fa {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 42px;
    font-size: 38px;
    text-align: center;
}

.header2 .header-content .header-form .header-form-heading li p {
    margin: 0px;
}

.header2 .header-content .header-form form input[type="text"], .header2 .header-content .header-form form input[type="email"] {
    width: 100%;
    margin-bottom: 15px;
    border: 0px;
}

.ie .header2 .header-content .header-form form input[type="text"], .ie .header2 .header-content .header-form form input[type="email"] {
    line-height: 50px;
}

.header2 .header-content .header-form form input[type="text"].error, .header2 .header-content .header-form form input[type="email"].error {
    color: #d86c6c;
    background-color: #f6caca;
}

.header2 .header-content .header-form form input[type="text"].error::-webkit-input-placeholder, .header2 .header-content .header-form form input[type="email"].error::-webkit-input-placeholder {
    color: #d86c6c;
}

.header2 .header-content .header-form form input[type="text"].error:-moz-placeholder, .header2 .header-content .header-form form input[type="email"].error:-moz-placeholder {
    color: #d86c6c;
}

.header2 .header-content .header-form form input[type="text"].error::-moz-placeholder, .header2 .header-content .header-form form input[type="email"].error::-moz-placeholder {
    color: #d86c6c;
}

.header2 .header-content .header-form form input[type="text"].error:-ms-input-placeholder, .header2 .header-content .header-form form input[type="email"].error:-ms-input-placeholder {
    color: #d86c6c;
}

.header2 .header-content .header-form form input[type="submit"] {
    width: 100%;
    text-align: center;
}

.header2 .header-content .header-form .txt-desc {
    font-size: 13px;
    line-height: 20px;
    margin-top: 25px;
}

.header2 .header-content .header-form .txt-desc a:hover {
    color: #DDD;
}

.header2 .header-content .btn-play {
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
    color: #202020;
    background-color: #FFF;
    opacity: .7;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header2 .header-content .btn-play:hover {
    opacity: 1;
    transform: scale(1.1);
}

.header2 .header-content .btn-play .fa {
    position: absolute;
    top: 50%;
    right: 50%;
    font-size: 42px;
    text-align: center;
    margin: -21px -21px 0px 0px;
}

/* Header 3 Content */
.header3 .header-content {
    color: #FFF;
    padding: 60px 0px 100px;
}

.header3 .header-content h1, .header3 .header-content h2, .header3 .header-content h3, .header3 .header-content h4, .header3 .header-content h5, .header3 .header-content h6, .header3 .header-content a {
    color: #FFF;
}

.header3 .header-content .header-heading-title {
    text-align: center;
    margin-bottom: 60px;
}

.header3 .header-content .header-heading-title h1 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    margin: 0px;
}

.header3 .header-content .header-heading-title h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    margin: 20px 0px 0px;
}

.header3 .header-content .header-row {
    position: relative;
}

.header3 .header-content .header-form {
    overflow: hidden;
    position: relative;
    background-color: rgba(0, 0, 0, .4);
    padding: 25px 30px;
    border-radius: 8px;
}

.ie .header3 .header-content .header-form {
    background: url(../images/ie-bg-overlay40.png) repeat top left;
}

.header3 .header-content .header-form .submit-status {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
    background-color: rgba(0, 0, 0, .5);
    z-index: 400;
}

.ie .header3 .header-content .header-form .submit-status {
    background: url(../images/ie-bg-overlay50.png) repeat top left;
}

.header3 .header-content .header-form .submit-status span {
    position: absolute;
    top: 50%;
    right: 15px;
    left: 15px;
    text-align: center;
    background-color: #FFF;
    padding: 14px 15px;
    margin-top: -50px;
    border: 1px solid #FFF;
    border-radius: 3px;
}

.header3 .header-content .header-form .submit-status span.error {
    color: #d86c6c;
    background-color: #f6caca;
    border-color: #e9b8b8;
}

.header3 .header-content .header-form .submit-status span.success {
    color: #529552;
    background-color: #b9edb9;
    border-color: #a5dda5;
}

.header3 .header-content .header-form .submit-status span .fa {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

.header3 .header-content .header-form .header-form-heading {
    list-style-type: none;
    line-height: 26px;
    font-weight: 400;
    padding: 0px;
    margin-bottom: 30px;
}

.header3 .header-content .header-form .header-form-heading li {
    position: relative;
    min-height: 38px;
    padding-left: 62px;
    margin-bottom: 20px;
}

.header3 .header-content .header-form .header-form-heading li:last-child {
    margin-bottom: 0px;
}

.header3 .header-content .header-form .header-form-heading li .fa {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 42px;
    font-size: 38px;
    text-align: center;
}

.header3 .header-content .header-form .header-form-heading li p {
    margin: 0px;
}

.header3 .header-content .header-form form input[type="text"], .header3 .header-content .header-form form input[type="email"] {
    width: 100%;
    margin-bottom: 15px;
    border: 0px;
}

.ie .header3 .header-content .header-form form input[type="text"], .ie .header3 .header-content .header-form form input[type="email"] {
    line-height: 50px;
}

.header3 .header-content .header-form form input[type="text"].error, .header3 .header-content .header-form form input[type="email"].error {
    color: #d86c6c;
    background-color: #f6caca;
}

.header3 .header-content .header-form form input[type="text"].error::-webkit-input-placeholder, .header3 .header-content .header-form form input[type="email"].error::-webkit-input-placeholder {
    color: #d86c6c;
}

.header3 .header-content .header-form form input[type="text"].error:-moz-placeholder, .header3 .header-content .header-form form input[type="email"].error:-moz-placeholder {
    color: #d86c6c;
}

.header3 .header-content .header-form form input[type="text"].error::-moz-placeholder, .header3 .header-content .header-form form input[type="email"].error::-moz-placeholder {
    color: #d86c6c;
}

.header3 .header-content .header-form form input[type="text"].error:-ms-input-placeholder, .header3 .header-content .header-form form input[type="email"].error:-ms-input-placeholder {
    color: #d86c6c;
}

.header3 .header-content .header-form form input[type="submit"] {
    width: 100%;
    text-align: center;
}

.header3 .header-content .header-form .txt-desc {
    font-size: 12px;
    line-height: 18px;
    margin-top: 20px;
}

.header3 .header-content .header-form .txt-desc a:hover {
    color: #DDD;
}

.header3 .header-content .btn-play {
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
    color: #FFF;
    background-color: #ff7469;
    opacity: .8;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header3 .header-content .btn-play:hover {
    opacity: 1;
    transform: scale(1.1);
}

.header3 .header-content .btn-play .fa {
    position: absolute;
    top: 50%;
    right: 50%;
    font-size: 42px;
    text-align: center;
    margin: -21px -21px 0px 0px;
}

.header3 .header-content .header-video {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
}

.header3 .header-content .header-video .header-video-bg {
    position: absolute;
    top: 0px;
    right: 15px;
    bottom: 0px;
    left: 15px;
    background: #FFF no-repeat center center;
    background-size: cover;
    border: 8px solid #FFF;
}

.header3 .header-content .header-video .header-video-btn {
    position: absolute;
    top: 50%;
    right: 0px;
    left: 0px;
    text-align: center;
    margin-top: -60px;
}

/* Header 4 Content */
.header4 .header-content {
    color: #FFF;
    text-align: center;
    padding: 60px 0px 100px;
}

.header4 .header-content h1, .header4 .header-content h2, .header4 .header-content h3, .header4 .header-content h4, .header4 .header-content h5, .header4 .header-content h6, .header4 .header-content a {
    color: #FFF;
}

.header4 .header-content .header-heading-title {
    text-align: center;
    margin-bottom: 140px;
}

.header4 .header-content .header-heading-title h1 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    margin: 0px;
}

.header4 .header-content .header-heading-title h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    margin: 20px 0px 0px;
}

.header4 .header-content .header-video-btn {
    margin-bottom: 140px;
}

.header4 .header-content .btn-play {
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
    color: #202020;
    background-color: #FFF;
    opacity: .7;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header4 .header-content .btn-play:hover {
    opacity: 1;
    transform: scale(1.1);
}

.header4 .header-content .btn-play .fa {
    position: absolute;
    top: 50%;
    right: 50%;
    font-size: 42px;
    text-align: center;
    margin: -21px -21px 0px 0px;
}

.header4 .header-content .header-form {
    overflow: hidden;
    position: relative;
    width: 800px;
    color: #777;
    background-color: #FFF;
    padding: 30px 40px;
    margin: 0px auto;
}

.header4 .header-content .header-form h1, .header4 .header-content .header-form h2, .header4 .header-content .header-form h3, .header4 .header-content .header-form h4, .header4 .header-content .header-form h5, .header4 .header-content .header-form h6 {
    color: #444;
}

.header4 .header-content .header-form .submit-status {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
    background-color: rgba(255, 255, 255, .5);
    z-index: 400;
}

.ie .header4 .header-content .header-form .submit-status {
    background: url(../images/ie-bg-submit-status.png) repeat top left;
}

.header4 .header-content .header-form .submit-status span {
    position: absolute;
    top: 50%;
    right: 20px;
    left: 20px;
    text-align: center;
    background-color: #FFF;
    padding: 14px 15px;
    margin-top: -40px;
    border: 1px solid #FFF;
    border-radius: 3px;
}

.header4 .header-content .header-form .submit-status span.error {
    color: #d86c6c;
    background-color: #f6caca;
    border-color: #e9b8b8;
}

.header4 .header-content .header-form .submit-status span.success {
    color: #529552;
    background-color: #b9edb9;
    border-color: #a5dda5;
}

.header4 .header-content .header-form .submit-status span .fa {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

.header4 .header-content .header-form .header-form-heading {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.header4 .header-content .header-form .header-form-heading strong {
    color: #ff7469;
}

.header4 .header-content .header-form form {
    overflow: hidden;
    margin: 0px -5px;
}

.header4 .header-content .header-form form .col-form-input, .header4 .header-content .header-form form .col-form-submit {
    float: left;
    width: 38%;
    padding: 0px 5px;
}

.header4 .header-content .header-form form .col-form-submit {
    width: 24%;
}

.header4 .header-content .header-form form input[type="text"], .header4 .header-content .header-form form input[type="email"] {
    width: 100%;
    height: 60px;
    font-size: 18px;
    padding: 0px 25px;
}

.ie .header4 .header-content .header-form form input[type="text"], .ie .header4 .header-content .header-form form input[type="email"] {
    line-height: 58px;
}

.header4 .header-content .header-form form input[type="text"].error, .header4 .header-content .header-form form input[type="email"].error {
    border-color: #d43d3d;
}

.header4 .header-content .header-form form input[type="submit"] {
    width: 100%;
    font-size: 18px;
    text-align: center;
    padding: 20px 0px;
}

.header4 .header-content .header-form .txt-desc {
    font-family: var(--nt-font-sans);
    color: #a9a9a9;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    margin-top: 20px;
}

.header4 .header-content .header-form .txt-desc a {
    color: #777;
}

.header4 .header-content .header-form .txt-desc a:hover {
    color: #ff7469;
}

/* Header 5 Content */
.header5 .header-content {
    color: #FFF;
    padding: 100px 0px 140px;
}

.header5 .header-content h1, .header5 .header-content h2, .header5 .header-content h3, .header5 .header-content h4, .header5 .header-content h5, .header5 .header-content h6, .header5 .header-content a {
    color: #FFF;
}

.header5 .header-content .header-txt {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    padding-top: 140px;
}

.header5 .header-content .header-txt .header-txt-heading {
    margin-bottom: 30px;
}

.header5 .header-content .header-txt .header-txt-heading h1 {
    font-size: 34px;
    line-height: 42px;
    font-weight: 600;
    margin: 0px;
}

.header5 .header-content .header-txt .header-txt-heading h4 {
    color: #c0c0c0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    margin-bottom: 8px;
}

.header5 .header-content .header-txt .btn-link {
    color: #FFF !important;
    font-size: 16px;
    line-height: 50px;
    text-align: left;
    text-decoration: none;
    font-weight: 400;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, .2);
    padding: 13.5px 25px;
    border: 1px solid #FFF;
    border-radius: 3px;
}

.ie .header5 .header-content .header-txt .btn-link {
    background: url(../images/ie-bg-overlay20.png) repeat top left;
}

.header5 .header-content .header-txt .btn-link:hover {
    background-color: rgba(0, 0, 0, .4);
}

.ie .header5 .header-content .header-txt .btn-link:hover {
    background-image: url(../images/ie-bg-overlay40.png);
}

.header5 .header-content .header-txt .header-txt-btn {
    margin-top: 25px;
}

.header5 .header-content .header-txt .header-txt-btn .btn-custom, .header5 .header-content .header-txt .header-txt-btn .btn-link {
    display: inline-block;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 15px 5px 0px;
}

.header5 .header-content .header-txt .btn-play {
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
    color: #202020;
    background-color: #FFF;
    opacity: .7;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header5 .header-content .header-txt .btn-play:hover {
    opacity: 1;
    transform: scale(1.1);
}

.header5 .header-content .header-txt .btn-play .fa {
    position: absolute;
    top: 50%;
    right: 50%;
    font-size: 42px;
    text-align: center;
    margin: -21px -21px 0px 0px;
}

.header5 .header-content .header-form {
    color: #777;
    background-color: #f6f8f9;
}

.header5 .header-content .header-form h1, .header5 .header-content .header-form h2, .header5 .header-content .header-form h3, .header5 .header-content .header-form h4, .header5 .header-content .header-form h5, .header5 .header-content .header-form h6 {
    color: #444;
}

.header5 .header-content .header-form .header-form-heading {
    background-color: #FFF;
    padding: 25px 30px;
}

.header5 .header-content .header-form .header-form-heading h4 {
    overflow: hidden;
    color: #202020;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0px;
}

.header5 .header-content .header-form .header-form-heading h4 .fa {
    float: left;
    color: #ff7469;
    font-size: 22px;
    line-height: 1;
    margin-right: 10px;
}

.header5 .header-content .header-form .header-form-heading p {
    line-height: 22px;
    margin: 10px 0px 0px;
}

.header5 .header-content .header-form .header-form-body {
    overflow: hidden;
    position: relative;
    padding: 30px;
    border-top: 1px solid #eaedef;
}

.header5 .header-content .header-form .header-form-body .submit-status {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
    background-color: rgba(255, 255, 255, .5);
    z-index: 400;
}

.ie .header5 .header-content .header-form .header-form-body .submit-status {
    background: url(../images/ie-bg-submit-status.png) repeat top left;
}

.header5 .header-content .header-form .header-form-body .submit-status span {
    position: absolute;
    top: 50%;
    right: 15px;
    left: 15px;
    text-align: center;
    background-color: #FFF;
    padding: 14px 15px;
    margin-top: -50px;
    border: 1px solid #FFF;
    border-radius: 3px;
}

.header5 .header-content .header-form .header-form-body .submit-status span.error {
    color: #d86c6c;
    background-color: #f6caca;
    border-color: #e9b8b8;
}

.header5 .header-content .header-form .header-form-body .submit-status span.success {
    color: #529552;
    background-color: #b9edb9;
    border-color: #a5dda5;
}

.header5 .header-content .header-form .header-form-body .submit-status span .fa {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

.header5 .header-content .header-form .header-form-body input[type="text"], .header5 .header-content .header-form .header-form-body input[type="email"] {
    width: 100%;
    margin-bottom: 15px;
}

.header5 .header-content .header-form .header-form-body textarea {
    display: block;
    width: 100%;
    height: 90px;
    margin-bottom: 15px;
}

.header5 .header-content .header-form .header-form-body input[type="text"].error, .header5 .header-content .header-form .header-form-body input[type="email"].error, .header5 .header-content .header-form .header-form-body textarea.error {
    border-color: #d43d3d;
}

.header5 .header-content .header-form .header-form-body input[type="submit"] {
    width: 100%;
    text-align: center;
}

.header5 .header-content .header-form .header-form-body .txt-desc {
    font-family: var(--nt-font-sans);
    color: #a9a9a9;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    padding: 0px 50px;
    margin-top: 20px;
}

.header5 .header-content .header-form .header-form-body .txt-desc a {
    color: #777;
}

.header5 .header-content .header-form .header-form-body .txt-desc a:hover {
    color: #ff7469;
}

/* Header 6 Content */
.header6 .header-content {
    color: #FFF;
    padding: 60px 0px 100px;
}

.header6 .header-content h1, .header6 .header-content h2, .header6 .header-content h3, .header6 .header-content h4, .header6 .header-content h5, .header6 .header-content h6, .header6 .header-content a {
    color: #FFF;
}

.header6 .header-content .header-heading-title {
    text-align: center;
    margin-bottom: 60px;
}

.header6 .header-content .header-heading-title h1 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    margin: 0px;
}

.header6 .header-content .header-heading-title h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    margin: 20px 0px 0px;
}

.header6 .header-content .header-row {
    position: relative;
}

.header6 .header-content .header-form {
    overflow: hidden;
    position: relative;
    background-color: #f56357;
    padding: 25px 30px 30px;
    border-radius: 3px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, .1), inset 0px 1px 1px rgba(255, 255, 255, .15), inset 0px -1px 1px rgba(255, 255, 255, .1), 0px 1px 3px rgba(0, 0, 0, .2);
}

.header6 .header-content .header-form .submit-status {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
    background-color: rgba(0, 0, 0, .2);
    z-index: 400;
}

.ie .header6 .header-content .header-form .submit-status {
    background: url(../images/ie-bg-overlay20.png) repeat top left;
}

.header6 .header-content .header-form .submit-status span {
    position: absolute;
    top: 50%;
    right: 15px;
    left: 15px;
    text-align: center;
    background-color: #FFF;
    padding: 14px 15px;
    margin-top: -50px;
    border: 1px solid #FFF;
    border-radius: 3px;
}

.header6 .header-content .header-form .submit-status span.error {
    color: #d86c6c;
    background-color: #f6caca;
    border-color: #e9b8b8;
}

.header6 .header-content .header-form .submit-status span.success {
    color: #529552;
    background-color: #b9edb9;
    border-color: #a5dda5;
}

.header6 .header-content .header-form .submit-status span .fa {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

.header6 .header-content .header-form .header-form-heading {
    margin-bottom: 20px;
}

.header6 .header-content .header-form .header-form-heading h4 {
    overflow: hidden;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0px;
}

.header6 .header-content .header-form .header-form-heading h4 .fa {
    float: left;
    font-size: 22px;
    line-height: 1;
    margin-right: 10px;
}

.header6 .header-content .header-form .header-form-heading p {
    overflow: hidden;
    line-height: 22px;
    margin: 10px 0px 0px;
}

.header6 .header-content .header-form form input[type="text"], .header6 .header-content .header-form form input[type="email"], .header6 .header-content .header-form form textarea {
    width: 100%;
    color: #FFF;
    background-color: #e85347;
    margin-bottom: 15px;
    border: 0px;
    box-shadow: 1px 1px 1px rgba(255, 255, 255, .1), inset 1px 1px 2px rgba(0, 0, 0, .1);
}

.header6 .header-content .header-form form textarea {
    display: block;
    height: 90px;
}

.ie .header6 .header-content .header-form form input[type="text"], .ie .header6 .header-content .header-form form input[type="email"], .ie .header6 .header-content .header-form form textarea {
    line-height: 50px;
}

.header6 .header-content .header-form form input[type="text"].error, .header6 .header-content .header-form form input[type="email"].error, .header6 .header-content .header-form form textarea.error {
    background-color: #ff3131;
}

.header6 .header-content .header-form form input[type="text"]::-webkit-input-placeholder, .header6 .header-content .header-form form input[type="email"]::-webkit-input-placeholder, .header6 .header-content .header-form form textarea::-webkit-input-placeholder {
    color: #FFF;
}

.header6 .header-content .header-form form input[type="text"]:-moz-placeholder, .header6 .header-content .header-form form input[type="email"]:-moz-placeholder, .header6 .header-content .header-form form textarea:-moz-placeholder {
    color: #FFF;
}

.header6 .header-content .header-form form input[type="text"]::-moz-placeholder, .header6 .header-content .header-form form input[type="email"]::-moz-placeholder, .header6 .header-content .header-form form textarea::-moz-placeholder {
    color: #FFF;
}

.header6 .header-content .header-form form input[type="text"]:-ms-input-placeholder, .header6 .header-content .header-form form input[type="email"]:-ms-input-placeholder, .header6 .header-content .header-form form textarea:-ms-input-placeholder {
    color: #FFF;
}

.header6 .header-content .header-form form input[type="text"]:disabled, .header6 .header-content .header-form form input[type="email"]:disabled, .header6 .header-content .header-form form textarea:disabled {
    color: #a9a9a9;
    background-color: #e9e9e9 !important;
    box-shadow: none;
}

.header6 .header-content .header-form form input[type="text"]:disabled::-webkit-input-placeholder, .header6 .header-content .header-form form input[type="email"]:disabled::-webkit-input-placeholder, .header6 .header-content .header-form form textarea:disabled::-webkit-input-placeholder {
    color: #a9a9a9;
}

.header6 .header-content .header-form form input[type="text"]:disabled:-moz-placeholder, .header6 .header-content .header-form form input[type="email"]:disabled:-moz-placeholder, .header6 .header-content .header-form form textarea:disabled:-moz-placeholder {
    color: #a9a9a9;
}

.header6 .header-content .header-form form input[type="text"]:disabled::-moz-placeholder, .header6 .header-content .header-form form input[type="email"]:disabled::-moz-placeholder, .header6 .header-content .header-form form textarea:disabled::-moz-placeholder {
    color: #a9a9a9;
}

.header6 .header-content .header-form form input[type="text"]:disabled:-ms-input-placeholder, .header6 .header-content .header-form form input[type="email"]:disabled:-ms-input-placeholder, .header6 .header-content .header-form form textarea:disabled:-ms-input-placeholder {
    color: #a9a9a9;
}

.header6 .header-content .header-form form input[type="submit"] {
    width: 100%;
    color: #404040 !important;
    text-align: center;
    background: #FFF;
    padding-top: 19px;
    padding-bottom: 19px;
}

.header6 .header-content .header-form form input[type="submit"]:hover {
    background-color: rgba(255, 255, 255, .9);
}

.header6 .header-content .header-form form input[type="submit"]:disabled, .header6 .header-content .header-form form input[type="submit"]:disabled:hover {
    color: #a9a9a9 !important;
    background-color: #e9e9e9;
}

.header6 .header-content .header-form .txt-desc {
    color: #f9e1e0;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    margin-top: 20px;
}

.header6 .header-content .header-form .txt-desc a {
    color: #FFF;
}

.header6 .header-content .header-form .txt-desc a:hover {
    color: #f9e1e0;
}

.header6 .header-content .btn-play {
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
    color: #FFF;
    background-color: #ff7469;
    opacity: .8;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header6 .header-content .btn-play:hover {
    opacity: 1;
    transform: scale(1.1);
}

.header6 .header-content .btn-play .fa {
    position: absolute;
    top: 50%;
    right: 50%;
    font-size: 42px;
    text-align: center;
    margin: -21px -21px 0px 0px;
}

.header6 .header-content .header-video {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
}

.header6 .header-content .header-video .header-video-bg {
    position: absolute;
    top: 0px;
    right: 15px;
    bottom: 0px;
    left: 15px;
    background: #FFF no-repeat center center;
    background-size: cover;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, .3);
}

.header6 .header-content .header-video .header-video-btn {
    position: absolute;
    top: 50%;
    right: 0px;
    left: 0px;
    text-align: center;
    margin-top: -60px;
}

#sub-header {
    color: #FFF;
    text-align: center;
    background-color: #ff7469;
    padding: 40px 0px;
}

#sub-header h1, #sub-header h2, #sub-header h3, #sub-header h4, #sub-header h5, #sub-header h6 {
    color: #FFF;
    margin: 0px;
}

#sub-header .entry-title {
    font-size: 38px;
    line-height: 46px;
    font-weight: 600;
}

#sub-header p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin: 10px 0px 5px;
}

/* ========================= Elements ========================= */
.affa-feature-icon {
    text-align: center;
    margin-bottom: 40px;
}

.affa-feature-icon .fa {
    color: #ff7469;
    font-size: 48px;
}

.bg-color .affa-feature-icon .fa {
    color: #FFF;
}

.affa-feature-icon h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin: 20px 0px 0px;
}

.affa-feature-icon p {
    margin: 10px 0px 0px;
}

.affa-feature-icon-left, .affa-feature-icon-right {
    position: relative;
    min-height: 36px;
    padding-left: 60px;
    margin-bottom: 20px;
}

.affa-feature-icon-right {
    text-align: right;
    padding: 0px 60px 0px 0px;
}

.affa-feature-icon-left .fa, .affa-feature-icon-right .fa {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 42px;
    color: #ff7469;
    font-size: 36px;
    text-align: center;
}

.affa-feature-icon-right .fa {
    right: 0px;
    left: auto;
}

.bg-color .affa-feature-icon-left .fa, .bg-color .affa-feature-icon-right .fa {
    color: #FFF;
}

.affa-feature-icon-left h4, .affa-feature-icon-right h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin: 0px;
}

.affa-feature-icon-left p, .affa-feature-icon-right p {
    margin: 5px 0px 0px;
}

.affa-feature-img {
    text-align: center;
    margin-bottom: 40px;
}

.affa-feature-img img {
    width: 100%;
    margin-bottom: 20px;
}

.affa-feature-img h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin: 0px;
}

.affa-feature-img p {
    margin: 10px 0px 0px;
}

.affa-col-txt {
    margin-bottom: 20px;
}

.affa-col-txt h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin: 0px;
}

.affa-col-txt p {
    margin: 5px 0px 0px;
}

.affa-counter-txt {
    text-align: center;
    margin-bottom: 40px;
}

.affa-counter-txt .fa {
    color: #c0c0c0;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 30px;
}

.bg-dark .affa-counter-txt .fa, .bg-color .affa-counter-txt .fa, .bg-img .affa-counter-txt .fa {
    color: #FFF;
}

.affa-counter-txt h4 {
    font-family: var(--nt-font-sans);
    ;
    color: #d0d0d0;
    font-size: 54px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    margin: 0px;
}

.bg-dark .affa-counter-txt h4, .bg-color .affa-counter-txt h4, .bg-img .affa-counter-txt h4 {
    color: #FFF;
}

.affa-counter-txt p {
    font-family: var(--nt-font-sans);
    color: #444;
    font-size: 22px;
    line-height: 1;
    white-space: nowrap;
    margin: 20px 0px 0px;
}

.bg-dark .affa-counter-txt p, .bg-color .affa-counter-txt p, .bg-img .affa-counter-txt p {
    color: #FFF;
}

.affa-testimonial-icon {
    display: block;
    color: #DDD;
    font-size: 54px;
    text-align: center;
    margin-bottom: 15px;
}

.bg-dark .affa-testimonial-icon, .bg-color .affa-testimonial-icon, .bg-img .affa-testimonial-icon {
    color: #FFF;
}

.affa-testimonial {
    text-align: center;
    padding: 0px 200px;
    margin-bottom: 40px;
}

.affa-testimonial .testimonial-txt {
    color: #a9a9a9;
    font-size: 20px;
    line-height: 32px;
    font-style: italic;
    font-weight: 400;
}

.bg-dark .affa-testimonial .testimonial-txt, .bg-color .affa-testimonial .testimonial-txt, .bg-img .affa-testimonial .testimonial-txt {
    color: #FFF;
}

.affa-testimonial .testimonial-txt p {
    margin: 0px;
}

.affa-testimonial .testimonial-name {
    margin-top: 40px;
}

.affa-testimonial .testimonial-name img {
    width: 100px;
    height: 100px;
    margin: 0px auto 20px;
    border-radius: 50%;
}

.affa-testimonial .testimonial-name h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin: 0px;
}

.affa-testimonial .testimonial-name p {
    color: #a9a9a9;
    font-size: 16px;
    line-height: 22px;
    margin: 2px 0px 0px;
}

.bg-dark .affa-testimonial .testimonial-name p, .bg-color .affa-testimonial .testimonial-name p, .bg-img .affa-testimonial .testimonial-name p {
    color: #FFF;
}

.carousel-slider.affa-testimonials-carousel {
    padding-bottom: 20px;
}

.carousel-slider.affa-testimonials-carousel .slick-dots {
    bottom: 0px;
}

.affa-tbl-prc.tbl-prc-recommended {
    padding-top: 28px;
}

.bg-dark .affa-tbl-prc, .bg-color .affa-tbl-prc, .bg-img .affa-tbl-prc {
    color: #777;
}

.bg-dark .affa-tbl-prc h1, .bg-dark .affa-tbl-prc h2, .bg-dark .affa-tbl-prc h3, .bg-dark .affa-tbl-prc h4, .bg-dark .affa-tbl-prc h5, .bg-dark .affa-tbl-prc h6, .bg-color .affa-tbl-prc h1, .bg-color .affa-tbl-prc h2, .bg-color .affa-tbl-prc h3, .bg-color .affa-tbl-prc h4, .bg-color .affa-tbl-prc h5, .bg-color .affa-tbl-prc h6, .bg-img .affa-tbl-prc h1, .bg-img .affa-tbl-prc h2, .bg-img .affa-tbl-prc h3, .bg-img .affa-tbl-prc h4, .bg-img .affa-tbl-prc h5, .bg-img .affa-tbl-prc h6 {
    color: #444;
}

.bg-color .affa-tbl-prc .btn-custom, .bg-color .affa-tbl-prc .btn-custom.btn-red {
    color: #FFF !important;
    background-color: #ff7469;
}

.bg-color .affa-tbl-prc .btn-custom:hover, .bg-color .affa-tbl-prc .btn-custom.btn-red:hover {
    background-color: #f56357;
}

.affa-tbl-prc .tbl-prc-col {
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
}

.bg-dark .affa-tbl-prc .tbl-prc-col, .bg-color .affa-tbl-prc .tbl-prc-col, .bg-img .affa-tbl-prc .tbl-prc-col {
    background-color: #FFF;
    border: 0px;
}

.affa-tbl-prc.tbl-prc-recommended .tbl-prc-col.tbl-prc-col-recommended {
    margin-top: -28px;
}

.affa-tbl-prc .tbl-prc-col .tbl-prc-badge {
    font-family: var(--nt-font-sans);
    color: #FFF;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    background-color: #ff7469;
    padding: 15px 15px 12px;
    margin: -1px -1px 0px;
    border-radius: 4px 4px 0px 0px;
}

.bg-dark .affa-tbl-prc .tbl-prc-col .tbl-prc-badge, .bg-color .affa-tbl-prc .tbl-prc-col .tbl-prc-badge, .bg-img .affa-tbl-prc .tbl-prc-col .tbl-prc-badge {
    padding-top: 14px;
    margin: 0px;
}

.bg-color .affa-tbl-prc .tbl-prc-col .tbl-prc-badge {
    background-color: #202020;
}

.affa-tbl-prc .tbl-prc-col .tbl-prc-heading {
    padding-top: 30px;
}

.affa-tbl-prc .tbl-prc-col.tbl-prc-col-recommended .tbl-prc-heading {
    padding-top: 20px;
}

.affa-tbl-prc .tbl-prc-col .tbl-prc-heading h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0px 15px;
    margin-bottom: 20px;
}

.affa-tbl-prc .tbl-prc-col .tbl-prc-heading .tbl-prc-price {
    width: 140px;
    height: 140px;
    font-family: var(--nt-font-sans);
    color: #FFF;
    font-size: 16px;
    line-height: 22px;
    text-transform: lowercase;
    background-color: #ff7469;
    padding-top: 27px;
    margin: 0px auto 25px;
    border-radius: 50%;
}

.affa-tbl-prc .tbl-prc-col .tbl-prc-heading .tbl-prc-price h5 {
    font-family: var(--nt-font-sans);
    color: #FFF;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    margin: 0px;
}

.affa-tbl-prc .tbl-prc-col .tbl-prc-heading .tbl-prc-price h5 span {
    font-weight: 400;
}

.affa-tbl-prc .tbl-prc-col .tbl-prc-heading .tbl-prc-price p {
    margin: 5px 0px 0px;
}

.affa-tbl-prc .tbl-prc-col .tbl-prc-list {
    padding: 0px 15px 15px;
    margin: 0px;
}

.affa-tbl-prc .tbl-prc-col .tbl-prc-list li {
    list-style-type: none;
    margin-bottom: 15px;
}

.affa-tbl-prc .tbl-prc-col .tbl-prc-footer {
    background-color: #f4f4f4;
    padding: 30px 15px;
    border-top: 1px solid #e9e9e9;
    border-radius: 0px 0px 4px 4px;
}

.bg-dark .affa-tbl-prc .tbl-prc-col .tbl-prc-footer, .bg-color .affa-tbl-prc .tbl-prc-col .tbl-prc-footer, .bg-img .affa-tbl-prc .tbl-prc-col .tbl-prc-footer {
    border-top: 0px;
}

.affa-tbl-prc .tbl-prc-col.tbl-prc-col-recommended .tbl-prc-footer {
    padding-top: 40px;
    padding-bottom: 40px;
}

.affa-faq {
    margin-bottom: 40px;
}

.affa-faq h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin: 0px;
}

.affa-faq p {
    margin: 15px 0px 0px;
}

.affa-faq-link {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    font-weight: 600;
    margin: 0px;
    color: #ff7469;
}

.affa-faq-link a {
    text-decoration: underline;
}

.affa-faq-link a:hover {
    text-decoration: underline;
}

.affa-map {
    position: relative;
    height: 500px;
}

.affa-map .map-frame, .affa-map .map-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 100;
}

.affa-map .map-overlay {
    color: #FFF;
    text-align: center;
    background-color: rgba(255, 116, 105, .8);
    padding-top: 200px;
    z-index: 110;
}

.ie .affa-map .map-overlay {
    background: url(../images/ie-bg-map-overlay.png) repeat top left;
}

.affa-map .map-overlay h1, .affa-map .map-overlay h2, .affa-map .map-overlay h3, .affa-map .map-overlay h4, .affa-map .map-overlay h5, .affa-map .map-overlay h6, .affa-map .map-overlay a {
    color: #FFF;
}

.affa-map .map-overlay .map-heading h2 {
    font-size: 44px;
    line-height: 54px;
    font-weight: 500;
    margin: 0px;
}

.affa-map .map-overlay .map-heading p {
    font-size: 22px;
    line-height: 30px;
    margin: 20px 0px 0px;
}

.affa-map .btn-collapse {
    position: absolute;
    top: 0px;
    left: 50%;
    width: 60px;
    height: 60px;
    color: #FFF;
    font-size: 30px;
    line-height: 52px;
    text-align: center;
    background-color: #ff7469;
    margin: -30px 0px 0px -30px;
    border: 4px solid #FFF;
    z-index: 120;
    border-radius: 50%;
}

.affa-map .btn-collapse.in {
    background-color: #DDD;
}

.affa-map .btn-collapse:hover {
    background-color: #f56357;
}

.affa-map .btn-collapse.in:hover {
    background-color: #c4c4c4;
}

.affa-form-subscribe input[type="text"], .affa-form-subscribe input[type="email"] {
    width: 100%;
    margin-bottom: 15px;
}

.affa-form-subscribe input[type="submit"] {
    width: 100%;
    min-width: 100%;
    text-align: center;
    border: 0;
    text-transform: uppercase;
}

.affa-form-subscribe input[type="text"].error, .affa-form-subscribe input[type="email"].error {
    color: #d86c6c;
    background-color: #f6caca;
    border-color: #e9b8b8;
}

.affa-form-subscribe input[type="text"].success, .affa-form-subscribe input[type="email"].success {
    color: #529552;
    background-color: #b9edb9;
    border-color: #a5dda5;
}

/* ========================= Footer ========================= */
#subscribe,
#bottom {
    text-align: center;
}

#subscribe .bg-overlay,
#bottom .bg-overlay {
    padding: 140px 0px;
}

#subscribe .post-heading-center,
#bottom .post-heading-center {
    margin-bottom: 60px;
}

#subscribe .affa-form-subscribe,
#bottom .affa-form-subscribe {
    width: 480px;
    max-width: 100%;
    margin: 0px auto;
}

#subscribe .affa-form-subscribe input[type="text"], #subscribe .affa-form-subscribe input[type="email"],
#bottom .affa-form-subscribe input[type="text"], #bottom .affa-form-subscribe input[type="email"] {
    height: 60px;
    font-size: 18px;
    padding: 0px 25px;
}

.ie #subscribe .affa-form-subscribe input[type="text"], .ie #subscribe .affa-form-subscribe input[type="email"],
.ie #bottom .affa-form-subscribe input[type="text"], .ie #bottom .affa-form-subscribe input[type="email"] {
    line-height: 60px;
}

#subscribe .affa-form-subscribe input[type="submit"],
#bottom .affa-form-subscribe input[type="submit"] {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#subscribe .txt-desc,
#bottom .txt-desc {
    width: 480px;
    padding: 0px 60px;
    margin: 30px auto 0px;
}

#footer {
    padding: 23px 0px;
}

#footer .copyright-txt {
    float: left;
    padding: 16px 0px;
    margin: 0px;
}

#footer .copyright-txt a {
    color: #404040;
    font-weight: 400;
}

#footer .copyright-txt a:hover {
    color: #ff7469;
}

#footer .socials {
    float: right;
}

#footer .socials a {
    float: left;
    width: 42px;
    height: 42px;
    color: #FFF;
    font-size: 18px;
    line-height: 42px;
    text-align: center;
    background-color: #DDD;
    margin: 7px 0px 7px 14px;
    border-radius: 50%;
}

#footer .socials a.link-android {
    background-color: #a7c839;
}

#footer .socials a.link-apple {
    background-color: #1abcfb;
}

#footer .socials a.link-behance {
    background-color: #138fcd;
}

#footer .socials a.link-delicious {
    background-color: #3399ff;
}

#footer .socials a.link-deviantart {
    background-color: #05cc47;
}

#footer .socials a.link-digg {
    background-color: #286091;
}

#footer .socials a.link-dribbble {
    background-color: #d36b93;
}

#footer .socials a.link-facebook {
    background-color: #3b589e;
}

#footer .socials a.link-flickr {
    background-color: #fe0084;
}

#footer .socials a.link-google-plus {
    background-color: #d6492f;
}

#footer .socials a.link-instagram {
    background-color: #2a5b83;
}

#footer .socials a.link-linkedin {
    background-color: #007ab5;
}

#footer .socials a.link-pinterest {
    background-color: #cb2027;
}

#footer .socials a.link-reddit {
    background-color: #ff5600;
}

#footer .socials a.link-rss {
    background-color: #fd9f13;
}

#footer .socials a.link-skype {
    background-color: #00aff0;
}

#footer .socials a.link-soundcloud {
    background-color: #ff6c00;
}

#footer .socials a.link-stumbleupon {
    background-color: #eb4823;
}

#footer .socials a.link-tumblr {
    background-color: #34465d;
}

#footer .socials a.link-twitter {
    background-color: #5ea9dd;
}

#footer .socials a.link-vimeo {
    background-color: #1ab7ea;
}

#footer .socials a.link-wordpress {
    background-color: #00769c;
}

#footer .socials a.link-youtube {
    background-color: #df192a;
}

#footer .socials a:hover {
    background-color: #202020;
}

/* ========================= Customize ========================= */
#customize {
    position: fixed;
    top: 60px;
    left: -150px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    z-index: 8000;
    -webkit-transition: left .3s ease;
    transition: left .3s ease;
}

#customize.in {
    left: 0px;
}

#customize .popup-open {
    position: absolute;
    top: 0px;
    right: -50px;
    width: 50px;
    height: 50px;
    color: #909090;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(16, 16, 16, .8);
    border-radius: 0px 4px 4px 0px;
    -webkit-transition: color .2s ease, background-color .2s ease;
    transition: color .2s ease, background-color .2s ease;
}

.ie #customize .popup-open {
    background-color: #101010;
}

#customize .popup-open:hover {
    color: #FFF;
    background-color: #101010;
    cursor: pointer;
}

#customize .wrap-customize {
    width: 150px;
    color: #7a7a7a;
    background-color: rgba(16, 16, 16, .8);
    padding: 10px 15px;
    border-radius: 0px 0px 4px 0px;
    -webkit-transition: background-color .2s ease;
    transition: background-color .2s ease;
}

.ie #customize .wrap-customize, #customize:hover .popup-open, #customize:hover .wrap-customize {
    background-color: #101010;
}

#customize .wrap-customize h5 {
    color: #a9a9a9;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    cursor: default;
    padding-bottom: 4px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #606060;
}

#customize .wrap-customize a, #customize .wrap-customize a:visited {
    color: #7a7a7a;
}

#customize .wrap-customize a:hover {
    color: #FFF;
}

#customize .wrap-customize .customize-panel {
    padding: 10px 0px;
}

#customize .wrap-customize .customize-list-link a {
    display: block;
    margin-bottom: 4px;
}

#customize .wrap-customize .customize-list-link a:last-child {
    margin-bottom: 0px;
}

#customize .wrap-customize .customize-list-link a .fa {
    margin-right: 5px;
}

#customize .customize-list-color {
    overflow: hidden;
    margin: -3px;
}

#customize .customize-list-color a {
    float: left;
    width: 36px;
    height: 36px;
    margin: 3px;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

#customize .customize-list-color a:hover {
    opacity: 0.8;
}

/* ========================= Media Queries ========================= */
@media (min-width: 1200px) {
    .padding-top0-lg {
        padding-top: 0px !important;
    }

    .padding-right0-lg {
        padding-right: 0px !important;
    }

    .padding-bottom0-lg {
        padding-bottom: 0px !important;
    }

    .padding-left0-lg {
        padding-left: 0px !important;
    }

    .padding-top10-lg {
        padding-top: 10px !important;
    }

    .padding-top20-lg {
        padding-top: 20px !important;
    }

    .padding-top30-lg {
        padding-top: 30px !important;
    }

    .padding-top40-lg {
        padding-top: 40px !important;
    }

    .padding-top50-lg {
        padding-top: 50px !important;
    }

    .padding-top60-lg {
        padding-top: 60px !important;
    }

    .padding-top70-lg {
        padding-top: 70px !important;
    }

    .padding-top80-lg {
        padding-top: 80px !important;
    }

    .padding-bottom10-lg {
        padding-bottom: 10px !important;
    }

    .padding-bottom20-lg {
        padding-bottom: 20px !important;
    }

    .padding-bottom30-lg {
        padding-bottom: 30px !important;
    }

    .padding-bottom40-lg {
        padding-bottom: 40px !important;
    }

    .padding-bottom50-lg {
        padding-bottom: 50px !important;
    }

    .padding-bottom60-lg {
        padding-bottom: 60px !important;
    }

    .padding-bottom70-lg {
        padding-bottom: 70px !important;
    }

    .padding-bottom80-lg {
        padding-bottom: 80px !important;
    }

    .margin-top0-lg {
        margin-top: 0px !important;
    }

    .margin-right0-lg {
        margin-right: 0px !important;
    }

    .margin-bottom0-lg {
        margin-bottom: 0px !important;
    }

    .margin-left0-lg {
        margin-left: 0px !important;
    }

    .margin-top10-lg {
        margin-top: 10px !important;
    }

    .margin-top20-lg {
        margin-top: 20px !important;
    }

    .margin-top30-lg {
        margin-top: 30px !important;
    }

    .margin-top40-lg {
        margin-top: 40px !important;
    }

    .margin-top50-lg {
        margin-top: 50px !important;
    }

    .margin-top60-lg {
        margin-top: 60px !important;
    }

    .margin-top70-lg {
        margin-top: 70px !important;
    }

    .margin-top80-lg {
        margin-top: 80px !important;
    }

    .margin-bottom10-lg {
        margin-bottom: 10px !important;
    }

    .margin-bottom20-lg {
        margin-bottom: 20px !important;
    }

    .margin-bottom30-lg {
        margin-bottom: 30px !important;
    }

    .margin-bottom40-lg {
        margin-bottom: 40px !important;
    }

    .margin-bottom50-lg {
        margin-bottom: 50px !important;
    }

    .margin-bottom60-lg {
        margin-bottom: 60px !important;
    }

    .margin-bottom70-lg {
        margin-bottom: 70px !important;
    }

    .margin-bottom80-lg {
        margin-bottom: 80px !important;
    }

    .text-center-lg {
        text-align: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .padding-top0-md {
        padding-top: 0px !important;
    }

    .padding-right0-md {
        padding-right: 0px !important;
    }

    .padding-bottom0-md {
        padding-bottom: 0px !important;
    }

    .padding-left0-md {
        padding-left: 0px !important;
    }

    .padding-top10-md {
        padding-top: 10px !important;
    }

    .padding-top20-md {
        padding-top: 20px !important;
    }

    .padding-top30-md {
        padding-top: 30px !important;
    }

    .padding-top40-md {
        padding-top: 40px !important;
    }

    .padding-top50-md {
        padding-top: 50px !important;
    }

    .padding-top60-md {
        padding-top: 60px !important;
    }

    .padding-top70-md {
        padding-top: 70px !important;
    }

    .padding-top80-md {
        padding-top: 80px !important;
    }

    .padding-bottom10-md {
        padding-bottom: 10px !important;
    }

    .padding-bottom20-md {
        padding-bottom: 20px !important;
    }

    .padding-bottom30-md {
        padding-bottom: 30px !important;
    }

    .padding-bottom40-md {
        padding-bottom: 40px !important;
    }

    .padding-bottom50-md {
        padding-bottom: 50px !important;
    }

    .padding-bottom60-md {
        padding-bottom: 60px !important;
    }

    .padding-bottom70-md {
        padding-bottom: 70px !important;
    }

    .padding-bottom80-md {
        padding-bottom: 80px !important;
    }

    .margin-top0-md {
        margin-top: 0px !important;
    }

    .margin-right0-md {
        margin-right: 0px !important;
    }

    .margin-bottom0-md {
        margin-bottom: 0px !important;
    }

    .margin-left0-md {
        margin-left: 0px !important;
    }

    .margin-top10-md {
        margin-top: 10px !important;
    }

    .margin-top20-md {
        margin-top: 20px !important;
    }

    .margin-top30-md {
        margin-top: 30px !important;
    }

    .margin-top40-md {
        margin-top: 40px !important;
    }

    .margin-top50-md {
        margin-top: 50px !important;
    }

    .margin-top60-md {
        margin-top: 60px !important;
    }

    .margin-top70-md {
        margin-top: 70px !important;
    }

    .margin-top80-md {
        margin-top: 80px !important;
    }

    .margin-bottom10-md {
        margin-bottom: 10px !important;
    }

    .margin-bottom20-md {
        margin-bottom: 20px !important;
    }

    .margin-bottom30-md {
        margin-bottom: 30px !important;
    }

    .margin-bottom40-md {
        margin-bottom: 40px !important;
    }

    .margin-bottom50-md {
        margin-bottom: 50px !important;
    }

    .margin-bottom60-md {
        margin-bottom: 60px !important;
    }

    .margin-bottom70-md {
        margin-bottom: 70px !important;
    }

    .margin-bottom80-md {
        margin-bottom: 80px !important;
    }

    .text-center-md {
        text-align: center;
    }

    .col-txt40 {
        padding-top: 0px;
    }

    .col-txt60, .col-txt80 {
        padding-top: 20px;
    }

    .col-txt100, .col-txt120 {
        padding-top: 40px;
    }

    .post-heading-center h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .post-heading-center p {
        font-size: 18px;
        line-height: 24px;
    }

    .post-heading-left h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .post-heading-left p {
        font-size: 16px;
        line-height: 22px;
    }

    #header .nav>li {
        padding-right: 18px;
        padding-left: 18px;
    }

    #navigation_affix .nav>li {
        padding-right: 10px;
        padding-left: 10px;
    }

    #header .header-content {
        padding: 40px 0px 80px;
    }

    #header .header-content .header-heading-title {
        margin-bottom: 50px;
    }

    #header .header-content .header-form .header-form-heading, #header .header-content .header-form .header-form-body {
        padding: 25px;
    }

    #header .header-content .header-form .header-form-body .txt-desc {
        margin-top: 15px;
    }

    #header .header-content .header-txt-list {
        padding-top: 15px;
    }

    #sub-header .entry-title {
        font-size: 34px;
        line-height: 42px;
    }

    .affa-testimonial {
        padding: 0px 100px;
    }

    .affa-map .map-overlay {
        padding-top: 204px;
    }

    .affa-map .map-overlay .map-heading h2 {
        font-size: 38px;
        line-height: 48px;
    }

    .affa-map .map-overlay .map-heading p {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .padding-top0-sm {
        padding-top: 0px !important;
    }

    .padding-right0-sm {
        padding-right: 0px !important;
    }

    .padding-bottom0-sm {
        padding-bottom: 0px !important;
    }

    .padding-left0-sm {
        padding-left: 0px !important;
    }

    .padding-top10-sm {
        padding-top: 10px !important;
    }

    .padding-top20-sm {
        padding-top: 20px !important;
    }

    .padding-top30-sm {
        padding-top: 30px !important;
    }

    .padding-top40-sm {
        padding-top: 40px !important;
    }

    .padding-top50-sm {
        padding-top: 50px !important;
    }

    .padding-top60-sm {
        padding-top: 60px !important;
    }

    .padding-top70-sm {
        padding-top: 70px !important;
    }

    .padding-top80-sm {
        padding-top: 80px !important;
    }

    .padding-bottom10-sm {
        padding-bottom: 10px !important;
    }

    .padding-bottom20-sm {
        padding-bottom: 20px !important;
    }

    .padding-bottom30-sm {
        padding-bottom: 30px !important;
    }

    .padding-bottom40-sm {
        padding-bottom: 40px !important;
    }

    .padding-bottom50-sm {
        padding-bottom: 50px !important;
    }

    .padding-bottom60-sm {
        padding-bottom: 60px !important;
    }

    .padding-bottom70-sm {
        padding-bottom: 70px !important;
    }

    .padding-bottom80-sm {
        padding-bottom: 80px !important;
    }

    .margin-top0-sm {
        margin-top: 0px !important;
    }

    .margin-right0-sm {
        margin-right: 0px !important;
    }

    .margin-bottom0-sm {
        margin-bottom: 0px !important;
    }

    .margin-left0-sm {
        margin-left: 0px !important;
    }

    .margin-top10-sm {
        margin-top: 10px !important;
    }

    .margin-top20-sm {
        margin-top: 20px !important;
    }

    .margin-top30-sm {
        margin-top: 30px !important;
    }

    .margin-top40-sm {
        margin-top: 40px !important;
    }

    .margin-top50-sm {
        margin-top: 50px !important;
    }

    .margin-top60-sm {
        margin-top: 60px !important;
    }

    .margin-top70-sm {
        margin-top: 70px !important;
    }

    .margin-top80-sm {
        margin-top: 80px !important;
    }

    .margin-bottom10-sm {
        margin-bottom: 10px !important;
    }

    .margin-bottom20-sm {
        margin-bottom: 20px !important;
    }

    .margin-bottom30-sm {
        margin-bottom: 30px !important;
    }

    .margin-bottom40-sm {
        margin-bottom: 40px !important;
    }

    .margin-bottom50-sm {
        margin-bottom: 50px !important;
    }

    .margin-bottom60-sm {
        margin-bottom: 60px !important;
    }

    .margin-bottom70-sm {
        margin-bottom: 70px !important;
    }

    .margin-bottom80-sm {
        margin-bottom: 80px !important;
    }

    .text-center-sm {
        text-align: center;
    }

    .col-txt40, .col-txt60, .col-txt80, .col-txt100, .col-txt120 {
        padding-top: 0px;
    }

    .post-heading-center h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .post-heading-center p {
        font-size: 16px;
        line-height: 22px;
    }

    .post-heading-left h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .post-heading-left p {
        font-size: 15px;
        line-height: 22px;
    }

    #header .nav>li {
        padding-right: 8px;
        padding-left: 8px;
    }

    #navigation_affix .nav>li {
        padding-right: 5px;
        padding-left: 5px;
    }

    #header .header-content {
        padding: 20px 0px 60px;
    }

    #header .header-content .header-heading-title {
        margin-bottom: 40px;
    }

    #header .header-content .header-form .header-form-heading, #header .header-content .header-form .header-form-body {
        padding: 20px;
    }

    #header .header-content .header-form .header-form-body .txt-desc {
        margin-top: 15px;
    }

    #header .header-content .header-txt-list {
        padding-top: 0px;
    }

    #header .header-content .header-txt-list li {
        min-height: 54px;
        padding-bottom: 20px;
    }

    #header .header-content .header-txt-list li .fa {
        line-height: 54px;
    }

    #header .header-content .header-txt-list li h4 {
        font-size: 20px;
        line-height: 28px;
    }

    #header .header-content .header-txt-list li p {
        margin-top: 2px;
    }

    #sub-header .entry-title {
        font-size: 30px;
        line-height: 38px;
    }

    #sub-header p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 2px;
    }

    .affa-testimonial {
        padding: 0px;
    }

    .affa-map .map-overlay {
        padding-top: 208px;
    }

    .affa-map .map-overlay .map-heading h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .affa-map .map-overlay .map-heading p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .padding-top0-xs {
        padding-top: 0px !important;
    }

    .padding-right0-xs {
        padding-right: 0px !important;
    }

    .padding-bottom0-xs {
        padding-bottom: 0px !important;
    }

    .padding-left0-xs {
        padding-left: 0px !important;
    }

    .padding-top10-xs {
        padding-top: 10px !important;
    }

    .padding-top20-xs {
        padding-top: 20px !important;
    }

    .padding-top30-xs {
        padding-top: 30px !important;
    }

    .padding-top40-xs {
        padding-top: 40px !important;
    }

    .padding-top50-xs {
        padding-top: 50px !important;
    }

    .padding-top60-xs {
        padding-top: 60px !important;
    }

    .padding-top70-xs {
        padding-top: 70px !important;
    }

    .padding-top80-xs {
        padding-top: 80px !important;
    }

    .padding-bottom10-xs {
        padding-bottom: 10px !important;
    }

    .padding-bottom20-xs {
        padding-bottom: 20px !important;
    }

    .padding-bottom30-xs {
        padding-bottom: 30px !important;
    }

    .padding-bottom40-xs {
        padding-bottom: 40px !important;
    }

    .padding-bottom50-xs {
        padding-bottom: 50px !important;
    }

    .padding-bottom60-xs {
        padding-bottom: 60px !important;
    }

    .padding-bottom70-xs {
        padding-bottom: 70px !important;
    }

    .padding-bottom80-xs {
        padding-bottom: 80px !important;
    }

    .margin-top0-xs {
        margin-top: 0px !important;
    }

    .margin-right0-xs {
        margin-right: 0px !important;
    }

    .margin-bottom0-xs {
        margin-bottom: 0px !important;
    }

    .margin-left0-xs {
        margin-left: 0px !important;
    }

    .margin-top10-xs {
        margin-top: 10px !important;
    }

    .margin-top20-xs {
        margin-top: 20px !important;
    }

    .margin-top30-xs {
        margin-top: 30px !important;
    }

    .margin-top40-xs {
        margin-top: 40px !important;
    }

    .margin-top50-xs {
        margin-top: 50px !important;
    }

    .margin-top60-xs {
        margin-top: 60px !important;
    }

    .margin-top70-xs {
        margin-top: 70px !important;
    }

    .margin-top80-xs {
        margin-top: 80px !important;
    }

    .margin-bottom10-xs {
        margin-bottom: 10px !important;
    }

    .margin-bottom20-xs {
        margin-bottom: 20px !important;
    }

    .margin-bottom30-xs {
        margin-bottom: 30px !important;
    }

    .margin-bottom40-xs {
        margin-bottom: 40px !important;
    }

    .margin-bottom50-xs {
        margin-bottom: 50px !important;
    }

    .margin-bottom60-xs {
        margin-bottom: 60px !important;
    }

    .margin-bottom70-xs {
        margin-bottom: 70px !important;
    }

    .margin-bottom80-xs {
        margin-bottom: 80px !important;
    }

    .text-center-xs {
        text-align: center;
    }

    .col-txt40, .col-txt60, .col-txt80, .col-txt100, .col-txt120 {
        padding-top: 0px;
    }

    .post-heading-center h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .post-heading-center p {
        font-size: 18px;
        line-height: 24px;
    }

    .post-heading-left h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .post-heading-left p {
        font-size: 16px;
        line-height: 22px;
    }

    #header .nav, #navigation_affix {
        display: none !important;
    }

    #navigation_mobile {
        display: block;
    }

    #header .navbar-brand {
        float: none;
        text-align: center;
    }

    #header .navbar-brand img {
        display: inline;
        height: auto;
        max-height: 40px;
    }

    #header .header-content {
        padding: 0px 0px 20px;
    }

    #header .header-content .header-heading-title {
        margin-bottom: 40px;
    }

    #header .header-content .header-heading-title h1 {
        font-size: 30px;
        line-height: 38px;
    }

    #header .header-content .header-heading-title h4 {
        font-size: 20px;
        line-height: 28px;
    }

    #header .header-content .header-form {
        width: 480px;
        margin: 0px auto 40px;
    }

    #header .header-content .header-form .header-form-body .txt-desc {
        padding: 0px 40px;
    }

    #header .header-content .header-txt-list {
        padding-top: 0px;
        margin-bottom: 40px;
    }

    #header .header-content .header-txt-list li {
        position: static;
        min-height: 0px;
        text-align: center;
        padding: 0px 0px 30px;
    }

    #header .header-content .header-txt-list li .fa {
        position: static;
        top: auto;
        left: auto;
        font-size: 42px;
        line-height: 1;
        margin-bottom: 15px;
    }

    #sub-header {
        color: #a9a9a9;
        background-color: #f6f8f9;
        padding: 30px 0px;
        border-bottom: 1px solid #eaedef;
    }

    #sub-header .entry-title {
        color: #202020;
        font-size: 30px;
        line-height: 38px;
    }

    #sub-header p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 2px;
    }

    .affa-feature-icon-left, .affa-feature-icon-right {
        min-height: 48px;
        padding-left: 75px;
    }

    .affa-feature-icon-right {
        padding: 0px 75px 0px 0px;
    }

    .affa-feature-icon-left .fa, .affa-feature-icon-right .fa {
        width: 54px;
        font-size: 48px;
    }

    .affa-testimonial {
        padding: 0px;
    }

    .affa-tbl-prc.tbl-prc-recommended {
        padding-top: 0px;
    }

    .affa-tbl-prc.tbl-prc-recommended .tbl-prc-col.tbl-prc-col-recommended {
        margin-top: 0px;
    }

    .affa-map .map-overlay {
        padding-top: 180px;
    }

    .affa-map .map-overlay .map-heading h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .affa-map .map-overlay .map-heading p {
        font-size: 18px;
        line-height: 26px;
    }

    #footer {
        text-align: center;
        padding: 25px 0px;
    }

    #footer .copyright-txt, #footer .socials {
        float: none;
    }

    #footer .copyright-txt {
        padding: 0px;
    }

    #footer .socials {
        margin-top: 10px;
    }

    #footer .socials a {
        display: inline-block;
        float: none;
        margin: 10px 5px 0px;
    }
}

@media (max-width: 530px) {
    #header .header-content .header-form {
        width: auto;
    }

    #header .header-content .header-form .header-form-body .txt-desc {
        padding: 0px 25px;
    }

    #bottom .affa-form-subscribe, #bottom .txt-desc {
        width: auto;
    }

    #bottom .txt-desc {
        padding: 0px;
    }
}

@media (max-width: 480px) {
    #navigation_mobile ul {
        padding-left: 15px;
        padding-right: 15px;
    }

    #header .header-content .header-form .header-form-heading, #header .header-content .header-form .header-form-body {
        padding: 25px;
    }

    #header .header-content .header-form .header-form-body .txt-desc {
        padding: 0px;
    }

    #header .header-content .header-txt-list li h4 {
        font-size: 22px;
        line-height: 30px;
    }

    .affa-feature-icon-left, .affa-feature-icon-right {
        position: static;
        min-height: 0px;
        text-align: center;
        padding: 0px;
        margin-bottom: 40px;
    }

    .affa-feature-icon-left .fa, .affa-feature-icon-right .fa {
        position: static;
        top: auto;
        left: auto;
        width: auto;
    }

    .affa-feature-icon-right .fa {
        right: auto;
    }

    .affa-feature-icon-left h4, .affa-feature-icon-right h4 {
        font-size: 22px;
        line-height: 30px;
        margin-top: 20px;
    }

    .affa-feature-icon-left p, .affa-feature-icon-right p {
        margin-top: 10px;
    }
}

@media (max-width: 400px) {
    #header .header-content .header-form .header-form-heading, #header .header-content .header-form .header-form-body {
        padding: 20px;
    }

    #header .header-content .header-form .header-form-body .txt-desc {
        margin-top: 15px;
    }
}

/* ========================= Project-specific overrides (clean, canonical) ========================= */

/* Hidden sections requested */
#local,
#pricing,
#testimonials,
#features2 {
    display: none !important;
}

/* Global palette */
body {
    color: #2f425f;
}
h1, h2, h3, h4, h5, h6 {
    color: #1f3455;
}
.post-heading-center h2,
.post-heading-left h2 {
    color: #1f3455 !important;
}
.post-heading-center h2 strong,
.post-heading-left h2 strong {
    color: #c29a53 !important;
}
.post-heading-center p,
.post-heading-left p {
    color: #5d708b !important;
}

/* Hero styling */
#header #primary-menu > li:not(.menu-btn):not(.phone-num) > a,
#header .nav > li:not(.menu-btn):not(.phone-num) > a {
    color: #1f3455 !important;
}
#header #primary-menu > li:not(.menu-btn):not(.phone-num) > a:hover,
#header #primary-menu > li:not(.menu-btn):not(.phone-num).active > a,
#header .nav > li:not(.menu-btn):not(.phone-num) > a:hover,
#header .nav > li:not(.menu-btn):not(.phone-num).active > a {
    color: #12223a !important;
}
#navigation_affix #primary-menu-affix > li:not(.menu-btn):not(.phone-num) > a,
#navigation_affix .nav > li:not(.menu-btn):not(.phone-num) > a {
    color: #1f3455 !important;
}
#navigation_affix #primary-menu-affix > li:not(.menu-btn):not(.phone-num) > a:hover,
#navigation_affix #primary-menu-affix > li:not(.menu-btn):not(.phone-num).active > a,
#navigation_affix .nav > li:not(.menu-btn):not(.phone-num) > a:hover,
#navigation_affix .nav > li:not(.menu-btn):not(.phone-num).active > a {
    color: #12223a !important;
    border-top-color: #1f3455 !important;
}
#header.header1 .header-overlay {
    background-color: rgba(255, 255, 255, 0.18) !important;
}
#header.header1 .header-content {
    padding-top: 61px !important;
    padding-bottom: 68px !important;
}
#header.header1 .header-content .header-heading-title,
#header.header1 .header-content .header-heading-title h1,
#header.header1 .header-content .header-heading-title h4 {
    text-align: left !important;
}
#header.header1 .header-content .header-heading-title:before {
    content: "\f015  \00a0 KONSULTACJE ARCHITEKTONICZNE";
    display: block;
    font-family: FontAwesome, var(--nt-font-sans);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: 600;
    color: #c29a53;
    margin-bottom: 28px;
}
#header.header1 .header-content .header-heading-title h1 {
    color: #1f3455 !important;
    font-size: 66px !important;
    line-height: 1.04 !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
    max-width: 640px;
}
#header.header1 .header-content .header-heading-title h4 {
    color: #3e4f6a !important;
    font-size: 33px !important;
    line-height: 1.35 !important;
    margin-top: 18px !important;
    max-width: 580px;
}

#header.header1 .header-content .header-txt-list {
    max-width: 640px;
    position: relative;
    padding: 26px 24px !important;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85) !important;
    background-image: none !important;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 36px rgba(18, 34, 58, 0.14);
}
#header.header1 .header-content .header-txt-list li {
    position: relative;
    min-height: 0 !important;
    padding: 0 0 14px 0 !important;
    list-style: none;
}
#header.header1 .header-content .header-txt-list > li:last-child {
    padding-bottom: 0 !important;
}
#header.header1 .header-content .header-txt-list li h4 {
    color: #12223a;
    font-size: 14px !important;
    line-height: 1.429;
    font-weight: 700;
    margin: 0;
}
#header.header1 .header-content .header-txt-list > li:first-child {
    padding: 0 0 18px 0 !important;
}
#header.header1 .header-content .header-txt-list > li:first-child > .fa {
    display: none !important;
}
#header.header1 .header-content .header-txt-list > li:first-child h4 {
    font-size: 30px !important;
    line-height: 1.267;
    color: #1f3455 !important;
}
#header.header1 .header-content .header-txt-list > li:first-child p:empty {
    display: none;
}
/* Hero v2 (body.nt-hero-v2): Home 1878 + Home 2 2227 — skrócona lista, karta, formularz e-mail */
body.nt-hero-v2 #header.header1 .header-content .header-txt-list:not(.header-txt-list--alt) > li:nth-child(2),
body.nt-hero-v2 #header.header1 .header-content .header-txt-list:not(.header-txt-list--alt) > li:nth-child(3),
body.nt-hero-v2 #header.header1 .header-content .header-txt-list:not(.header-txt-list--alt) > li:nth-child(4) {
    min-height: 0 !important;
    padding: 0 !important;
}
body.nt-hero-v2 #header.header1 .header-content .header-txt-list:not(.header-txt-list--alt) > li:nth-child(2) > .fa,
body.nt-hero-v2 #header.header1 .header-content .header-txt-list:not(.header-txt-list--alt) > li:nth-child(3) > .fa,
body.nt-hero-v2 #header.header1 .header-content .header-txt-list:not(.header-txt-list--alt) > li:nth-child(4) > .fa {
    display: none !important;
}
body.nt-hero-v2 #header.header1 .header-content .header-txt-list:not(.header-txt-list--alt) > li:nth-child(3),
body.nt-hero-v2 #header.header1 .header-content .header-txt-list:not(.header-txt-list--alt) > li:nth-child(4),
body.nt-hero-v2 #header.header1 .header-content .header-txt-list:not(.header-txt-list--alt) > li.header-txt-list-promo-item,
body.nt-hero-v2 #header.header1 .header-content .header-txt-list:not(.header-txt-list--alt) > li.header-txt-list-figure-item {
    display: none !important;
}

/* Home + Home 2: hero — tło full-bleed + wąska karta (bez hero_side_img) */
body.nt-hero-v2 #header.header1 .header-content .container > .header-hero-row {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    max-width: 480px;
    margin-left: 0;
    margin-right: auto;
}
body.nt-hero-v2 #header.header1 .header-content .container > .header-hero-row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    float: none !important;
    margin-left: 0 !important;
    left: auto !important;
    right: auto !important;
}
body.nt-hero-v2 #header.header1 .header-content .container > .header-hero-row .header-hero-txt-col {
    order: 1;
}
body.nt-hero-v2 #header.header1 .header-content .container > .header-hero-row .header-hero-form-col {
    order: 2;
}
@media (min-width: 992px) {
    body.nt-hero-v2 #header.header1 .header-content .container > .header-hero-row {
        max-width: 44%;
    }
}

/* Home + Home 2: hero — karta biała + opcjonalna wizualizacja (2 kolumny) */
body.nt-hero-v2 #header.header1 .header-content .header-hero-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -15px;
    margin-right: -15px;
}
body.nt-hero-v2 #header.header1 .header-content .header-hero-card-wrap {
    float: none;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 24px;
}
body.nt-hero-v2 #header.header1 .header-content .header-hero-visual-col {
    float: none;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
}
body.nt-hero-v2 #header.header1 .header-content .header-hero-visual {
    flex: 1 1 auto;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(10, 20, 38, 0.12);
    background: #ffffff;
    border: 1px solid rgba(18, 34, 58, 0.1);
}
body.nt-hero-v2 #header.header1 .header-content .header-hero-visual-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    box-shadow: none;
}
body.nt-hero-v2 #header.header1 .header-content .header-hero-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 28px 24px 24px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(18, 34, 58, 0.1);
    box-shadow: 0 14px 40px rgba(10, 20, 38, 0.12);
    color: #12223a;
}
@media (min-width: 992px) {
    body.nt-hero-v2 #header.header1 .header-content .header-hero-layout {
        flex-wrap: nowrap;
    }
    body.nt-hero-v2 #header.header1 .header-content .header-hero-card-wrap {
        flex: 0 0 44%;
        max-width: 44%;
        margin-bottom: 0;
    }
    body.nt-hero-v2 #header.header1 .header-content .header-hero-visual-col {
        flex: 0 0 56%;
        max-width: 56%;
    }
}
@media (max-width: 991px) {
    body.nt-hero-v2 #header.header1 .header-content .header-hero-visual-col {
        min-height: 280px;
    }
    body.nt-hero-v2 #header.header1 .header-content .header-hero-visual {
        min-height: 280px;
        height: 280px;
    }
}
body.nt-hero-v2 #header.header1 .header-hero-txt-col,
body.nt-hero-v2 #header.header1 .header-hero-form-col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    float: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
}
body.nt-hero-v2 #header.header1 .header-hero-txt-col {
    order: 1;
    position: relative;
    padding: 0 0 20px;
    border-radius: 0;
    box-shadow: none;
}
body.nt-hero-v2 #header.header1 .header-hero-form-col {
    order: 2;
    margin-top: 0;
}
body.nt-hero-v2 #header.header1 .header-content .header-txt-list {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 100%;
}
body.nt-hero-v2 #header.header1 .header-content .header-txt-list > li:first-child {
    padding: 0 0 16px 0 !important;
}
body.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:first-child h4 {
    color: #12223a !important;
    font-size: 28px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}
body.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:nth-child(2) h4,
body.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:nth-child(2) .nt-hero-lead {
    color: #3d4f63 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}
body.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:nth-child(2) p {
    color: #3d4f63 !important;
    margin: 14px 0 0 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}
body.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:nth-child(2) p br {
    display: block;
    margin-bottom: 6px;
    content: "";
}
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .txt-desc {
    margin: 10px 0 0 !important;
    padding: 0 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    text-align: center !important;
    color: #5c6e6e !important;
    letter-spacing: 0.01em;
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .wpcf7-form > p {
    margin-bottom: 0 !important;
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .nt-hero-form-proof {
    margin: 12px 0 0 !important;
    padding: 0 !important;
    font-weight: 400 !important;
    text-align: center !important;
    color: var(--nt-teal-muted) !important;
    letter-spacing: 0.01em;
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .txt-desc {
    margin-top: 8px !important;
    color: var(--nt-teal-muted) !important;
}
body.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list .hero-bullet {
    color: #2d8a4e;
    font-weight: 700;
}
body.nt-hero-v2 #header.header1 .header-content .header-form {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-heading {
    display: none !important;
}
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    border-top: 0;
}
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .affa-form-signup--stacked-email {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body input[type="email"] {
    width: 100%;
    height: 50px;
    margin-bottom: 0 !important;
    padding: 0 18px !important;
    color: #12223a !important;
    font-size: 16px !important;
    background: #ffffff !important;
    border: 1px solid rgba(18, 34, 58, 0.14) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body input[type="email"]::placeholder {
    color: #6b7d94;
    opacity: 1;
}
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body input[type="email"]:focus {
    border-color: #12223a !important;
    outline: none !important;
}
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body input[type="submit"],
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .wpcf7-submit {
    width: 100%;
    min-width: 100%;
    text-align: center !important;
    line-height: 1.3 !important;
    padding: 16px 20px !important;
    border-radius: 8px !important;
    border: 2px solid #2d8a4e !important;
    background: #2d8a4e !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body input[type="submit"]:hover,
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .wpcf7-submit:hover {
    background: #247040 !important;
    color: #ffffff !important;
    border-color: #247040 !important;
}
body.nt-hero-v2 #header.header1 .header-content .header-txt-list--alt {
    display: none !important;
}
@media (max-width: 767px) {
    body.nt-hero-v2 #header.header1 .header-content .header-hero-row .header-hero-form-col {
        margin-top: 0 !important;
    }
    body.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:first-child h4 {
        line-height: 1.3 !important;
    }
    body.page-id-1878.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:first-child h1,
    body.page-id-1878.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:first-child h4 {
        line-height: 1.2 !important;
    }
}

#header.header1 .header-content .header-txt-list--alt {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(31, 52, 85, 0.12);
}
#header.header1 .header-content .header-txt-list--alt > li:nth-child(2) {
    padding: 0 0 14px 0 !important;
}
#header.header1 .header-content .header-txt-list--alt > li:nth-child(2) > .fa {
    display: none !important;
}
#header.header1 .header-content .header-txt-list li p {
    color: #1b3150;
    margin: 4px 0 0;
}
#header.header1 .header-content .header-txt-list > li.header-txt-list-promo-item,
#header.header1 .header-content .header-txt-list > li.header-txt-list-figure-item {
    padding: 8px 0 0 0 !important;
}
#header.header1 .header-content .header-txt-list > li.header-txt-list-promo-item > .fa,
#header.header1 .header-content .header-txt-list > li.header-txt-list-figure-item > .fa {
    display: none !important;
}
#header.header1 .header-content .header-txt-list > li.header-txt-list-promo-item h4 {
    color: #c62828 !important;
    font-size: 30px !important;
    line-height: 1.267 !important;
    margin: 0 0 12px !important;
    max-width: 100%;
}
#header.header1 .header-content .header-txt-list .header-txt-list-figure {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 10px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(18, 34, 58, 0.12);
}
#header.header1 .header-content .header-txt-list > li.header-txt-list-promo-item p,
#header.header1 .header-content .header-txt-list > li.header-txt-list-figure-item p {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #3e4f6a;
}
@media (min-width: 992px) {
    #header.header1 .header-content .header-txt-list {
        max-width: 617px;
    }
    #header.header1 .header-content .header-txt-list > li:first-child h4 {
        font-size: 28px !important;
    }
    #header.header1 .header-content .header-txt-list > li.header-txt-list-promo-item h4 {
        font-size: 26px !important;
    }
    #header.header1 .header-content .header-txt-list .header-txt-list-figure {
        max-height: none;
    }
}

#header.header1 .header-content .header-form {
    border-radius: 8px !important;
    box-shadow: 0 18px 50px rgba(20, 35, 61, 0.22);
    background-color: #ffffff !important;
}
body.nt-hero-v2 #header.header1 .header-content .header-form .header-form-heading {
    display: none !important;
}
/* Kopia content_alt — edycja w WPB (Form kopia); ukryta na froncie (unikaj 2× submit) */
#header.header1 .header-content .header-form .header-form-body--alt {
    display: none !important;
}
#header.header1 .header-content .header-form .header-form-heading h4 {
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
}
#header.header1 .header-content .header-form .header-form-heading p {
    color: #ffffff !important;
    margin-top: 8px !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
}
#header.header1 .header-content .header-form .header-form-body {
    padding: 22px 26px 24px !important;
    background-color: #ffffff !important;
}
#header.header1 .header-content .header-form .header-form-body input[type="text"],
#header.header1 .header-content .header-form .header-form-body input[type="email"],
#header.header1 .header-content .header-form .header-form-body input[type="tel"],
#header.header1 .header-content .header-form .header-form-body input[type="date"] {
    height: 48px;
    margin-bottom: 12px !important;
    background-color: #ffffff !important;
    color: #1f3455 !important;
    border: 1px solid #1f3455 !important;
}
#header.header1 .header-content .header-form .header-form-body textarea {
    height: 86px !important;
    min-height: 86px !important;
    max-height: 86px !important;
    margin-bottom: 12px !important;
    background-color: #ffffff !important;
    color: #1f3455 !important;
    border: 1px solid #1f3455 !important;
}
#header.header1 .header-content .header-form .header-form-body .affa-form-signup {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
}
#header.header1 .header-content .header-form .header-form-body .affa-form-signup .wpcf7-form-control-wrap {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}
#header.header1 .header-content .header-form .header-form-body .wpcf7,
#header.header1 .header-content .header-form .header-form-body .wpcf7-form {
    margin: 0 !important;
}
#header.header1 .header-content .header-form .header-form-body input[type="submit"],
#header.header1 .header-content .header-form .header-form-body .wpcf7-submit {
    display: block !important;
    width: 100% !important;
    height: 52px !important;
    font-size: 16px;
    margin: 0 !important;
    padding: 0 16px !important;
    line-height: 52px !important;
    background-color: #1f3455 !important;
    color: #ffffff !important;
    border: 1px solid #1f3455 !important;
    border-radius: 4px;
    font-weight: 600;
    box-sizing: border-box !important;
}
#header.header1 .header-content .header-form .header-form-body input[type="submit"]:hover,
#header.header1 .header-content .header-form .header-form-body .wpcf7-submit:hover {
    background-color: #12223a !important;
    border-color: #12223a !important;
    color: #ffffff !important;
}
#header.header1 .header-content .header-form .header-form-body .txt-desc {
    color: #1f3455 !important;
    margin: 0 !important;
}
#header.header1 .header-content .header-form .wpcf7-not-valid-tip {
    color: #1f3455 !important;
}
#header.header1 .header-content .header-form form.init .wpcf7-response-output,
#header.header1 .header-content .header-form form.resetting .wpcf7-response-output,
#header.header1 .header-content .header-form form.submitting .wpcf7-response-output {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    min-height: 0 !important;
}
#header.header1 .header-content .header-form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0 !important;
    border-color: #1f3455 !important;
    color: #1f3455 !important;
}

/* Section rhythm */
#features.wrap-container80 {
    padding-top: 62px !important;
    padding-bottom: 48px !important;
}
#features2.wrap-container8040 {
    padding-top: 56px !important;
    padding-bottom: 34px !important;
}
#features2 .col-txt100 {
    padding-top: 26px !important;
}
#features2 .post-heading-left h2 {
    color: #1f3455;
    font-size: 52px;
    line-height: 1.12;
}
#features2 .list-icon ul li {
    color: #1f3455;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    margin-bottom: 10px;
}
#features2 .list-icon ul li i {
    color: #c29a53;
    font-size: .95em;
    margin-right: 10px;
}
#features3.wrap-container80 {
    padding-top: 56px !important;
    padding-bottom: 42px !important;
}
#features2 .col-sm-6.col-md-7.col-lg-6.col-lg-offset-1.margin-bottom20,
#features3 > .container > .row > .col-md-6.margin-bottom20 {
    display: none !important;
}
#features-copy .post-heading-center {
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
#features-copy .post-heading-center h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f3455 !important;
}
#features-copy .post-heading-center p {
    font-size: 18px;
    line-height: 1.5;
    color: #5d708b !important;
    margin: 16px auto 0;
    max-width: 720px;
}
#features-copy .row.padding-bottom20,
#features .row.padding-bottom20 {
    margin-left: 0;
    margin-right: 0;
}
#features .post-heading-center {
    display: none !important;
}
@media (min-width: 768px) {
    #features-copy .row.padding-bottom20 {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 24px;
    }
    #features-copy .row.padding-bottom20 > [class*="col-"] {
        display: flex !important;
        flex: 1 1 0 !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        float: none !important;
    }
    #features .row.padding-bottom20 {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 30px;
    }
    #features .row.padding-bottom20 > [class*="col-"] {
        display: flex !important;
        flex: 1 1 0 !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        float: none !important;
    }
}
#features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img,
#features .affa-feature-img {
    width: 100%;
    flex: 1 1 auto;
    margin-bottom: 0 !important;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(31, 52, 85, 0.1);
    background: #fff;
}
@media (min-width: 768px) {
    #features .row.padding-bottom20 > [class*="col-"] .affa-feature-img {
        height: 100%;
        min-height: 0;
    }
}
#features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:has(img),
#features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:has(img) {
    padding: 0;
    position: relative;
}
#features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:has(img) h4,
#features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:has(img) p,
#features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:has(img) h4,
#features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:has(img) p {
    display: none !important;
}
#features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:has(img) img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 0 !important;
    object-fit: cover;
    object-position: center center;
    display: block;
}
#features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:has(img) img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 0 !important;
    object-fit: contain;
    object-position: center center;
    display: block;
    background: #fff;
}
#features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) {
    text-align: left;
    padding: 14px 13px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) {
    text-align: left;
    padding: 52px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) img,
#features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) img {
    display: none !important;
}
#features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) h4 {
    display: block !important;
    color: #1f3455 !important;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 8px;
    text-align: left;
    flex-shrink: 0;
}
#features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) p {
    display: block !important;
    color: #5a6b7d !important;
    font-size: 15px;
    line-height: 1.35;
    margin: 0;
    text-align: left;
    flex-shrink: 0;
}
#features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) h4 {
    display: block !important;
    color: #1f3455;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 18px;
    text-align: left;
}
#features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) p {
    display: block !important;
    color: #5a6b7d;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    text-align: left;
}
#features-copy {
    padding-top: 40px !important;
    padding-bottom: 12px !important;
}
/* Home 1878: rytm sekcji — patrz blok „unified vertical rhythm” niżej */
/* Compact savings block — jasny układ, ~50% niższy niż wersja mockup */
#savings-examples.nt-savings-section,
.nt-savings-section {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    background: transparent;
}
#savings-examples .nt-savings-panel,
.nt-savings-section .nt-savings-panel {
    color: #12223a;
    background-color: #ffffff;
    border: 1px solid rgba(18, 34, 58, 0.08);
    border-radius: 10px;
    padding: 14px 20px;
    box-shadow: 0 6px 20px rgba(10, 20, 38, 0.05);
}
.nt-savings-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.nt-savings-table-col,
.nt-savings-highlight-col {
    display: flex;
    flex-direction: column;
}
.nt-savings-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    color: #12223a;
}
.nt-savings-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #2d8a4e;
    color: #ffffff;
    font-size: 13px;
}
.nt-savings-title-accent {
    color: #2d8a4e;
}
.nt-savings-table {
    flex: 1;
}
.nt-savings-table-head,
.nt-savings-table-row,
.nt-savings-table-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.nt-savings-table-head {
    padding-bottom: 4px;
    margin-bottom: 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.15;
    color: #6b7d94;
    border-bottom: 1px solid rgba(18, 34, 58, 0.1);
}
.nt-savings-table-row {
    padding: 5px 0;
    border-top: 1px solid rgba(18, 34, 58, 0.08);
    font-size: 13px;
    line-height: 1.2;
    color: #12223a;
}
.nt-savings-col-decision {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    padding-right: 8px;
}
.nt-savings-row-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 11px;
}
.nt-savings-row-icon--purple {
    background-color: #7c5cbf;
}
.nt-savings-row-icon--blue {
    background-color: #4a7fd4;
}
.nt-savings-row-icon--amber {
    background-color: #e8a020;
}
.nt-savings-row-icon--green {
    background-color: #2d8a4e;
}
.nt-savings-row-label {
    min-width: 0;
}
.nt-savings-col-amount {
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
    font-size: 12px;
}
.nt-savings-amount-negative {
    color: #e53935;
    font-weight: 700;
}
.nt-savings-table-total {
    margin-top: 8px;
    padding: 8px 12px;
    border-top: 0;
    border-radius: 6px;
    background-color: #e8f5ec;
}
.nt-savings-total-label {
    flex: 1;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: #12223a;
}
.nt-savings-total-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background-color: #ffffff;
    border: 2px solid #2d8a4e;
    color: #2d8a4e;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}
.nt-savings-highlight {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding: 12px 14px;
    border-radius: 10px;
    background-color: #f0f1f8;
    min-height: 0;
    overflow: hidden;
}
.nt-savings-highlight::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background-image: radial-gradient(circle, #c5c8d8 1.5px, transparent 1.5px);
    background-size: 7px 7px;
    opacity: 0.75;
    pointer-events: none;
}
.nt-savings-highlight::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 42%;
    width: 18px;
    height: 30px;
    border: 2px solid transparent;
    border-right-color: #9b8ed4;
    border-radius: 0 50% 50% 0;
    opacity: 0.55;
    pointer-events: none;
}
.nt-savings-icon-wrap {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
    flex-shrink: 0;
}
.nt-savings-icon-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nt-savings-highlight-lead {
    margin: 0 0 2px;
    font-size: 12px;
    line-height: 1.2;
    color: #12223a;
}
.nt-savings-highlight-amount {
    margin: 0 0 2px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.05;
    color: #6b4c9a;
    letter-spacing: -0.02em;
}
.nt-savings-highlight-sub {
    margin: 0 0 6px;
    font-size: 12px;
    line-height: 1.25;
    color: #1f3455;
}
.nt-savings-highlight-note {
    margin: 0;
    max-width: 280px;
    padding-top: 6px;
    border-top: 1px solid #6b4c9a;
    font-size: 10px;
    line-height: 1.3;
    color: #5a6b7d;
}
@media (max-width: 991px) {
    .nt-savings-highlight {
        margin-top: 10px;
        min-height: auto;
    }
    .nt-savings-highlight-amount {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    #savings-examples.nt-savings-section,
    .nt-savings-section {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    #savings-examples .nt-savings-panel,
    .nt-savings-section .nt-savings-panel {
        padding: 12px 14px;
        border-radius: 8px;
    }
    .nt-savings-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    .nt-savings-table-head {
        display: none;
    }
    .nt-savings-table-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
        padding: 4px 0;
    }
    .nt-savings-col-amount {
        text-align: left;
    }
    .nt-savings-table-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .nt-savings-highlight-amount {
        font-size: 18px;
    }
}
#features.features-1 {
    padding-top: 0 !important;
    padding-bottom: 24px !important;
}

/* Analiza budżetowa — ta sama szerokość / układ 50+50 co #features */
.nt-budget-analysis-section {
    padding: 16px 0 48px;
    background-color: #f6f8f9;
}
#budget-analysis .nt-budget-analysis-header,
#budget-analysis .nt-budget-analysis-card,
#savings-examples .nt-savings-panel,
.nt-savings-section .nt-savings-panel {
    box-sizing: border-box;
    margin-left: 30px;
    margin-right: 30px;
    width: calc(100% - 60px);
    max-width: calc(100% - 60px);
}
.nt-budget-analysis-header {
    margin-bottom: 24px;
}
.nt-budget-analysis-header h2 {
    color: #1f3455 !important;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}
.nt-budget-analysis-header p {
    color: #5a6b7d;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}
.nt-budget-analysis-card {
    background: #fff;
    border: 1px solid #e3e8ee;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(18, 34, 58, 0.06);
    padding: 20px 20px 16px;
}
#budget-analysis .nt-budget-analysis-main.padding-bottom20 {
    margin-left: 0;
    margin-right: 0;
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: stretch;
}
#budget-analysis .nt-budget-analysis-main.padding-bottom20::before,
#budget-analysis .nt-budget-analysis-main.padding-bottom20::after {
    display: none !important;
    content: none !important;
}
#budget-analysis .nt-budget-analysis-main.padding-bottom20 > .nt-budget-analysis-table-col,
#budget-analysis .nt-budget-analysis-main.padding-bottom20 > .nt-budget-analysis-viz-col {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    float: none !important;
    flex: 1 1 auto;
}
@media (min-width: 768px) {
    #budget-analysis .nt-budget-analysis-main.padding-bottom20 {
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 30px !important;
    }
    #budget-analysis .nt-budget-analysis-main.padding-bottom20 > .nt-budget-analysis-table-col,
    #budget-analysis .nt-budget-analysis-main.padding-bottom20 > .nt-budget-analysis-viz-col {
        flex: 1 1 0 !important;
        width: calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
        min-width: 260px !important;
        align-self: stretch !important;
    }
    #budget-analysis .nt-budget-analysis-viz-col {
        display: flex !important;
        flex-direction: column !important;
    }
}
.nt-budget-table-col {
    padding-right: 0;
    min-width: 0;
}
.nt-budget-table-head,
.nt-budget-table-row {
    display: grid;
    grid-template-columns: minmax(140px, 1.1fr) minmax(160px, 1.4fr) minmax(110px, 0.9fr);
    gap: 12px 16px;
    align-items: center;
}
.nt-budget-table-head {
    padding-bottom: 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e3e8ee;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8a96a8;
}
.nt-budget-table-row {
    padding: 14px 0;
    border-bottom: 1px solid #eef2f6;
}
.nt-budget-table-row:last-child {
    border-bottom: 0;
}
.nt-budget-col-area {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.nt-budget-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5c842;
    color: #1f3455;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}
.nt-budget-area-name {
    color: #1f3455;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}
.nt-budget-col-decision {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.nt-budget-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-transform: uppercase;
}
.nt-badge-change {
    background: #fff3cd;
    color: #8a6d00;
}
.nt-badge-same {
    background: #e8f5e9;
    color: #2e7d32;
}
.nt-budget-decision-text {
    color: #3e4f6a;
    font-size: 13px;
    line-height: 1.4;
}
.nt-budget-col-impact {
    text-align: right;
}
.nt-budget-impact-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}
.nt-budget-impact-pct {
    display: block;
    font-size: 12px;
    line-height: 1.3;
    margin-top: 2px;
}
.nt-impact-up,
.nt-impact-up .nt-budget-impact-value,
.nt-impact-up .nt-budget-summary-value {
    color: #e53935;
}
.nt-impact-down,
.nt-impact-down .nt-budget-impact-value {
    color: #2e7d32;
}
.nt-impact-neutral,
.nt-impact-neutral .nt-budget-impact-value {
    color: #6b7c90;
}
.nt-budget-analysis-viz-col {
    display: block;
}
#budget-analysis .nt-budget-viz {
    position: relative;
    display: block;
    width: 100%;
    min-height: 260px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(31, 52, 85, 0.1);
    background-color: #fff;
}
#budget-analysis .nt-budget-viz img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 260px;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain;
    object-position: center center;
    border-radius: 8px;
    background: #fff;
}
@media (min-width: 768px) {
    #budget-analysis .nt-budget-viz {
        flex: 1 1 auto;
        width: 100%;
        height: 100%;
        min-height: 100%;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    #budget-analysis .nt-budget-viz img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain;
        object-position: center center;
    }
}
.nt-budget-analysis-summary {
    display: none !important;
}
.nt-budget-summary-box {
    position: relative;
    min-height: 100%;
    padding: 16px 14px;
    border: 1px solid #e8edf2;
    border-radius: 8px;
    background: #fafbfc;
}
.nt-budget-summary-icon {
    color: #2e7d32;
    font-size: 22px;
    margin-bottom: 8px;
}
.nt-budget-summary-label {
    margin: 0 0 8px;
    color: #5a6b7d;
    font-size: 13px;
    line-height: 1.4;
}
.nt-budget-summary-value {
    margin: 0;
    color: #1f3455;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
}
.nt-budget-summary-pct {
    font-size: 16px;
    font-weight: 600;
}
.nt-budget-summary-note {
    margin: 10px 0 0;
    color: #8a96a8;
    font-size: 11px;
    line-height: 1.4;
}
.nt-budget-summary-arrow {
    position: absolute;
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
    color: #2e7d32;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
.nt-budget-summary-base .nt-budget-summary-value {
    font-size: 30px;
}
.nt-budget-legend-title {
    margin: 0 0 10px;
    color: #1f3455;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.nt-budget-legend-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}
.nt-budget-legend-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #3e4f6a;
    font-size: 13px;
    line-height: 1.35;
}
.nt-legend-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.nt-legend-up {
    background: #fdecea;
    color: #e53935;
}
.nt-legend-down {
    background: #e8f5e9;
    color: #2e7d32;
}
.nt-legend-neutral {
    background: #eef2f6;
    color: #6b7c90;
}
.nt-budget-legend-note {
    margin: 0;
    color: #5a6b7d;
    font-size: 12px;
    line-height: 1.45;
}
@media (max-width: 991px) {
    .nt-budget-table-col {
        padding-right: 15px;
        margin-bottom: 20px;
    }
    .nt-budget-summary-arrow {
        display: none;
    }
    .nt-budget-analysis-summary > [class*="col-"] {
        margin-bottom: 12px;
    }
}
@media (max-width: 767px) {
    .nt-budget-table-head {
        display: none;
    }
    .nt-budget-table-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .nt-budget-col-impact {
        text-align: left;
    }
    .nt-budget-analysis-header h2 {
        font-size: 22px;
    }
    .nt-budget-analysis-card {
        padding: 18px 14px 14px;
    }
}
#features3 > .container > .row > .col-sm-8.col-md-6.col-sm-offset-2.col-md-offset-0 {
    display: none !important;
}
#features2 .col-sm-6.col-md-5.margin-bottom40 {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
#features2 figure img,
#features3 figure img {
    width: 100%;
    height: auto;
    display: block;
}
#features2 .col-sm-6.col-md-5.margin-bottom40 figure {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
#features2 .col-sm-6.col-md-5.margin-bottom40 figure img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
}
@media (min-width: 992px) {
    .vc_row.wpb_row.vc_row-fluid:has(#features2),
    .vc_row.wpb_row.vc_row-fluid:has(#features3) {
        float: left;
        width: 50%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .vc_row.wpb_row.vc_row-fluid:has(#features2) > .wpb_column,
    .vc_row.wpb_row.vc_row-fluid:has(#features3) > .wpb_column {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .vc_row.wpb_row.vc_row-fluid:has(#features2) > .wpb_column > .vc_column-inner,
    .vc_row.wpb_row.vc_row-fluid:has(#features3) > .wpb_column > .vc_column-inner {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .vc_row.wpb_row.vc_row-fluid:has(#features3) + .vc_row.wpb_row.vc_row-fluid {
        clear: both;
    }
    #features2 .container,
    #features3 .container {
        width: 100%;
        max-width: 100%;
    }
    #features2.wrap-container8040,
    #features3.wrap-container80 {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }
    #features2 .col-sm-6.col-md-5.margin-bottom40 figure {
        width: 70%;
        max-width: 393px;
        height: 295px;
        margin-left: auto;
        margin-right: auto;
    }
}
#features3.features-3 > .container > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
#features3 .col-txt120 {
    padding-top: 0 !important;
}
#features3 figure {
    margin-top: 0 !important;
}
#faq.wrap-container80 {
    padding-top: 58px !important;
    padding-bottom: 54px !important;
}

/* Ukryta sekcja liczników (facts) */
.vc_row.wpb_row.vc_row-fluid:has(#facts),
#facts {
    display: none !important;
}

/* Home 1878: paleta mockup — ciemny teal (spójność z rysunkiem) */
body.page-id-1878 {
    --nt-teal: #1a4f4f;
    --nt-teal-hover: #153f3f;
    --nt-teal-light: #e6f0f0;
    --nt-teal-dark: #1a3d3d;
    --nt-teal-muted: #5c6e6e;
    --nt-teal-border: rgba(26, 79, 79, 0.12);
    --nt-teal-border-soft: rgba(26, 79, 79, 0.08);
    --nt-cta-btn: #e67e22;
    --nt-cta-btn-hover: #cf6d17;
    --nt-hero-submit: var(--nt-cta-btn);
    --nt-hero-submit-hover: var(--nt-cta-btn-hover);
    --nt-ce-cta-btn: var(--nt-cta-btn);
    --nt-ce-cta-btn-hover: var(--nt-cta-btn-hover);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: 400;
    color: var(--fs-body-color);
}
body.page-id-1878 h1 {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
body.page-id-1878 h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: var(--lh-heading);
}
body.page-id-1878 h3 {
    font-family: var(--font-body);
    font-size: var(--fs-h3);
    font-weight: 600;
    line-height: var(--lh-heading);
}
body.page-id-1878 .btn-custom,
body.page-id-1878 input[type="submit"],
body.page-id-1878 input[type="button"],
body.page-id-1878 button,
body.page-id-1878 .wpcf7-submit,
body.page-id-1878 .nt-landing-btn {
    font-family: var(--font-body);
    font-size: var(--fs-body) !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
}
body.page-id-1878 label,
body.page-id-1878 .wpcf7-form label {
    font-family: var(--font-body);
    font-size: var(--fs-small) !important;
    font-weight: 500 !important;
}

/* Home 1878 — typography system (semantic mapping) */
body.page-id-1878 .nt-hero-v3__lead,
body.page-id-1878 .nt-hero-v3__checks li,
body.page-id-1878 .nt-consultation-effect .nt-ce-heading p,
body.page-id-1878 .nt-consultation-effect .nt-ce-question-desc,
body.page-id-1878 .nt-consultation-effect .nt-ce-practice-desc,
body.page-id-1878 .nt-consultation-effect .nt-ce-trust-text,
body.page-id-1878 .nt-consultation-effect .nt-ce-step-text,
body.page-id-1878 .nt-cr-lead,
body.page-id-1878 .nt-cr-feature-desc,
body.page-id-1878 .nt-cr-bottom-text,
body.page-id-1878 .nt-landing-list li,
body.page-id-1878 .nt-landing-process-desc,
body.page-id-1878 .nt-landing-next-item-desc,
body.page-id-1878 .nt-landing-next-lead,
body.page-id-1878 .nt-landing-about-body,
body.page-id-1878 .nt-landing-about-lead,
body.page-id-1878 .nt-landing-about-point-desc,
body.page-id-1878 .nt-landing-about-trust li,
body.page-id-1878 #next-steps .affa-testimonial--quote-only .testimonial-txt blockquote p,
body.page-id-1878 .nt-landing-faq-a p,
body.page-id-1878 .nt-hero-plot__risk-list li,
body.page-id-1878 .nt-hero-plot__compare-name,
body.page-id-1878 .post-heading-center p,
body.page-id-1878 .post-heading-left p {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--fs-body-color);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-questions-intro,
body.page-id-1878 .nt-consultation-effect .nt-ce-question-title,
body.page-id-1878 .nt-consultation-effect .nt-ce-practice-title,
body.page-id-1878 .nt-hero-plot__head-title,
body.page-id-1878 .nt-hero-plot__mini-title,
body.page-id-1878 .nt-landing-card-head,
body.page-id-1878 .nt-landing-process-title,
body.page-id-1878 .nt-landing-faq-q,
body.page-id-1878 .nt-cr-list-title,
body.page-id-1878 .nt-cr-feature-title,
body.page-id-1878 .nt-landing-next-item-title,
body.page-id-1878 .nt-landing-about-point-title,
body.page-id-1878 .nt-landing-about-trust-title {
    font-family: var(--font-body);
    font-size: var(--fs-h3);
    font-weight: 600;
    line-height: var(--lh-heading);
}
body.page-id-1878 .header-form--v3 .header-form-body .txt-desc,
body.page-id-1878 .header-form--v3 .header-form-body .nt-hero-form-proof,
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .txt-desc,
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .nt-hero-form-proof,
body.page-id-1878 .nt-hero-v3__trust-desc,
body.page-id-1878 .nt-hero-plot__map-label,
body.page-id-1878 .nt-hero-plot__summary-note,
body.page-id-1878 .nt-consultation-effect .nt-ce-questions-footnote,
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-mockup-head,
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-mockup-title,
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-list,
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-list-extra,
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-note,
body.page-id-1878 .nt-cr-eyebrow,
body.page-id-1878 .nt-cr-savings-label,
body.page-id-1878 .nt-cr-savings-note,
body.page-id-1878 .nt-cr-bottom-note,
body.page-id-1878 #next-steps .affa-testimonial--quote-only .testimonial-attribution,
body.page-id-1878 #next-steps .affa-testimonial--quote-only .testimonial-stage,
body.page-id-1878 .nt-landing-footer-socket {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    line-height: var(--lh-body);
}
body.page-id-1878 .nt-hero-v3__trust-title {
    font-family: var(--font-body);
    font-size: var(--fs-trust-title);
    font-weight: 600;
    line-height: var(--lh-heading);
}
body.page-id-1878 .nt-landing-section-title,
body.page-id-1878 .nt-consultation-effect .nt-ce-heading h2,
body.page-id-1878 .nt-cr-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    line-height: var(--lh-heading);
    font-weight: 600;
}
body.page-id-1878 .nt-cr-savings-amount {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    line-height: var(--lh-heading);
    font-weight: 700;
}
body.page-id-1878 .nt-hero-v3__title {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    line-height: 1.15;
    font-weight: 700;
    font-synthesis: none;
}
body.page-id-1878 input[type="email"],
body.page-id-1878 input[type="text"],
body.page-id-1878 input[type="tel"],
body.page-id-1878 select,
body.page-id-1878 textarea {
    font-family: var(--font-body);
    font-size: var(--fs-body);
}
@media (max-width: 768px) {
    body.page-id-1878 {
        font-size: var(--fs-body);
    }
    body.page-id-1878 input,
    body.page-id-1878 select,
    body.page-id-1878 textarea {
        font-size: max(16px, var(--fs-body)) !important;
    }
}
/* Home 1878: Hero v3 — mockup layout (480px + 60%, trust strip) */
body.page-id-1878.nt-hero-v3 {
    --nt-hero-v3-bg: #F7FAF9;
    --nt-hero-v3-green: #143B36;
    --nt-hero-v3-muted: #4A5568;
    --nt-hero-v3-soft: #839297;
    --nt-hero-v3-border: rgba(0, 0, 0, 0.04);
    --nt-hero-v3-cta: var(--nt-cta-btn);
    --nt-hero-v3-cta-hover: var(--nt-cta-btn-hover);
    --nt-hero-v3-check: #2d8a4e;
    --nt-hero-v3-card-max: 480px;
}
body.page-id-1878.nt-hero-v3 #header.header1,
body.page-id-1878.nt-hero-v3 .vc_row.vc_custom_1481038405591,
body.page-id-1878.nt-hero-v3 .vc_row.nt-hero-row-full {
    background-image: none !important;
    background-color: var(--nt-hero-v3-bg) !important;
}
body.page-id-1878.nt-hero-v3 #header.header1 {
    margin-bottom: 0;
}
body.page-id-1878.nt-hero-v3 #header.header1 #navigation.navbar {
    min-height: 80px;
    padding: 16px 0;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}
body.page-id-1878.nt-hero-v3 #header.header1 #navigation.navbar .nav > li > a,
body.page-id-1878.nt-hero-v3 #header.header1 #navigation.navbar #primary-menu > li > a {
    font-size: var(--fs-small) !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--nt-hero-v3-green) !important;
    text-shadow: none !important;
}
body.page-id-1878.nt-hero-v3 #header.header1 .header-content > .container {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__shell {
    max-width: var(--container-hero);
    margin-left: auto;
    margin-right: auto;
    padding: clamp(2.5rem, 2rem + 2vw, 3.75rem) 20px clamp(3.75rem, 3rem + 2.5vw, 5rem);
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    align-items: stretch;
}
@media (min-width: 992px) {
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__grid {
        /* Mockup: 480px lewa + reszta (≈720px przy 1280px shell) */
        grid-template-columns: minmax(0, var(--nt-hero-v3-card-max)) minmax(0, 1fr);
        gap: clamp(1rem, 0.75rem + 1vw, 2rem);
        align-items: stretch;
    }
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__card,
body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--nt-hero-v3-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__card {
    width: 100%;
    max-width: var(--nt-hero-v3-card-max);
    padding: clamp(28px, 2rem + 1vw, 36px);
}
@media (min-width: 992px) {
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__conversion {
        display: flex;
        width: 100%;
        min-width: 0;
        height: 100%;
    }
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__card {
        max-width: var(--nt-hero-v3-card-max);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    /* Prawa kolumna — wysokość z treści wektorowej */
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual {
        aspect-ratio: auto;
        align-self: stretch;
    }
}
/* nt-hero-v2 zostawia max-width:56% na .header-hero-visual-col — wyłącz na v3 */
body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual.header-hero-visual-col {
    width: 100% !important;
    max-width: none !important;
    flex: 1 1 auto !important;
    float: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual-card.header-hero-visual {
    width: 100% !important;
    max-width: none !important;
    flex: 1 1 auto;
    height: 100% !important;
    min-height: 0 !important;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual-card {
    padding: clamp(18px, 1.2rem + 0.8vw, 24px);
    line-height: normal;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 0;
    overflow: hidden;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual-card--plot {
    height: 100% !important;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual-card .header-hero-visual-img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    object-fit: unset !important;
    border-radius: 12px;
    vertical-align: top;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__copy .header-txt-list > li:first-child {
    padding: 0 !important;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__title {
    color: var(--nt-hero-v3-green) !important;
    letter-spacing: -0.03em !important;
    margin: 0 !important;
    max-width: 100%;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__lead {
    color: var(--nt-hero-v3-muted) !important;
    font-weight: 400 !important;
    margin: 16px 0 0 !important;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__checks {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__checks li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: var(--nt-hero-v3-green) !important;
    font-weight: 600 !important;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__checks .hero-bullet {
    color: var(--nt-hero-v3-check) !important;
    line-height: 1.35;
    flex-shrink: 0;
    margin-top: 1px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__form-wrap {
    margin-top: auto;
    padding-top: 28px;
}
body.page-id-1878.nt-hero-v3 .header-form--v3 .header-form-body {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
body.page-id-1878.nt-hero-v3 .header-form--v3 .header-form-body .affa-form-signup--stacked-email {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
body.page-id-1878.nt-hero-v3 .header-form--v3 .header-form-body input[type="email"] {
    height: 52px !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    border: 1px solid #D9E3E0 !important;
    color: var(--nt-hero-v3-green) !important;
}
body.page-id-1878.nt-hero-v3 .header-form--v3 .header-form-body input[type="submit"],
body.page-id-1878.nt-hero-v3 .header-form--v3 .header-form-body .wpcf7-submit {
    height: 52px !important;
    padding: 0 24px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: var(--nt-hero-v3-cta) !important;
    border-color: var(--nt-hero-v3-cta) !important;
    box-shadow: none !important;
}
body.page-id-1878.nt-hero-v3 .header-form--v3 .header-form-body input[type="submit"]:hover,
body.page-id-1878.nt-hero-v3 .header-form--v3 .header-form-body .wpcf7-submit:hover {
    background: var(--nt-hero-v3-cta-hover) !important;
    border-color: var(--nt-hero-v3-cta-hover) !important;
}
body.page-id-1878.nt-hero-v3 .header-form--v3 .header-form-body .txt-desc {
    margin-top: 10px !important;
    font-weight: 400 !important;
    color: var(--nt-hero-v3-soft) !important;
    text-align: left !important;
}
body.page-id-1878.nt-hero-v3 .header-form--v3 .header-form-body .nt-hero-form-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 10px !important;
    font-weight: 400 !important;
    color: var(--nt-hero-v3-soft) !important;
    text-align: left !important;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__trust {
    margin-top: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: clamp(20px, 1.5rem + 1vw, 28px) clamp(20px, 1.5rem + 2vw, 32px);
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--nt-hero-v3-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__trust-grid {
        grid-template-columns: repeat(4, 1fr);
        min-height: 96px;
        align-items: center;
    }
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(20, 59, 54, 0.08);
    color: var(--nt-hero-v3-green);
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__trust-icon .nt-icon-svg {
    width: 20px;
    height: 20px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__trust-title {
    margin: 0 0 2px;
    color: var(--nt-hero-v3-green);
}
body.page-id-1878.nt-hero-v3 .nt-hero-v3__trust-desc {
    margin: 0;
    font-weight: 400;
    color: var(--nt-hero-v3-muted);
}
/* Prawa kolumna hero — wektorowa analiza działki */
body.page-id-1878.nt-hero-v3 .nt-hero-plot {
    --nt-plot-green: #143B36;
    --nt-plot-muted: #53666A;
    --nt-plot-red: #e74c3c;
    --nt-plot-ok: #2d8a4e;
    --nt-plot-orange: #e67e22;
    --nt-plot-surface: #eef5f2;
    --nt-plot-border: rgba(20, 59, 54, 0.1);
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    min-height: 0;
    font-family: var(--font-body);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__head {
    display: block;
    text-align: center;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__head-title {
    margin: 0;
    color: var(--nt-plot-green);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__map {
    background: var(--nt-plot-surface);
    border: 1px solid var(--nt-plot-border);
    border-radius: 12px;
    padding: 10px 10px 6px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__map--png {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__map-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__map-label {
    margin: 0 0 6px;
    text-align: center;
    font-weight: 600;
    color: var(--nt-plot-muted);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__diagram {
    display: block;
    width: 100%;
    height: auto;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__svg-label {
    font-family: var(--nt-font-sans);
    font-weight: 700;
    letter-spacing: 0.04em;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__svg-label--a {
    fill: var(--nt-plot-red);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__svg-label--b {
    fill: var(--nt-plot-ok);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    flex: 1 1 auto;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__mini {
    background: #fff;
    border: 1px solid var(--nt-plot-border);
    border-radius: 10px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__mini--risks {
    align-items: stretch;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__mini-title {
    margin: 0 0 8px;
    width: 100%;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    color: var(--nt-plot-green);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__risk-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__risk-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--nt-plot-green);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__risk-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--nt-plot-red);
    color: #fff;
    flex-shrink: 0;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__risk-x .nt-icon-svg {
    width: 10px;
    height: 10px;
    stroke-width: 2.5;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__rec-badge {
    width: 56px;
    height: 56px;
    margin: 4px 0;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__rec-svg {
    display: block;
    width: 100%;
    height: 100%;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__rec-label {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--nt-plot-ok);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__mini--compare {
    align-items: stretch;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 8px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-row:last-child {
    margin-bottom: 0;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__house {
    flex-shrink: 0;
    display: inline-flex;
    margin-top: 2px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-body {
    flex: 1 1 auto;
    min-width: 0;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 4px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__house-svg {
    width: 18px;
    height: 18px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-name {
    font-weight: 500;
    line-height: 1.2;
    color: var(--nt-plot-muted);
    white-space: nowrap;
    flex-shrink: 0;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-price {
    font-size: var(--fs-small);
    font-weight: 700;
    line-height: 1.1;
    color: var(--nt-plot-green);
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-row--a .nt-hero-plot__compare-price {
    color: var(--nt-plot-red);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-row--b .nt-hero-plot__compare-price {
    color: var(--nt-plot-ok);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-bar {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 999px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-bar--a {
    width: 100%;
    background: rgba(231, 76, 60, 0.35);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__compare-bar--b {
    width: 78%;
    background: rgba(45, 138, 78, 0.45);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    margin-top: auto;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__summary-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__chart-svg {
    display: block;
    width: 100%;
    height: 100%;
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__summary-amount {
    margin: 0;
    font-weight: 700;
    line-height: 1.15;
    color: var(--nt-plot-green);
}
body.page-id-1878.nt-hero-v3 .nt-hero-plot__summary-note {
    margin: 2px 0 0;
    font-weight: 400;
    line-height: 1.3;
    color: var(--nt-plot-muted);
}
@media (max-width: 991px) {
    body.page-id-1878.nt-hero-v3 .nt-hero-plot__head-title {
    }
    body.page-id-1878.nt-hero-v3 .nt-hero-plot__cards {
        grid-template-columns: 1fr;
    }
    body.page-id-1878.nt-hero-v3 .nt-hero-plot__mini {
        padding: 12px;
    }
}
@media (max-width: 991px) {
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__card {
        max-width: none;
        height: auto;
    }
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual {
        aspect-ratio: auto;
    }
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual-card.header-hero-visual {
        height: auto !important;
    }
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual-card .header-hero-visual-img {
        flex: none;
        height: auto !important;
        object-fit: unset !important;
    }
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__grid {
        display: flex;
        flex-direction: column;
    }
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__conversion { order: 1; }
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__visual { order: 2; }
    body.page-id-1878.nt-hero-v3 .nt-hero-v3__trust { order: 3; }
}

/* Home 1878: hero bez obrazka (fallback) */
body.page-id-1878 #header.header1,
body.page-id-1878 .vc_row.vc_custom_1481038405591,
body.page-id-1878 .vc_row.nt-hero-row-full {
    background-image: none !important;
    background-color: #ffffff !important;
}
body.page-id-1878.nt-hero-v3 #header.header1 {
    background-color: var(--nt-hero-v3-bg) !important;
}
body.page-id-1878 #header.header1 .header-overlay {
    background-color: transparent !important;
}
body.page-id-1878 #header.header1 .mirrored {
    display: none !important;
}
/* Hero visual 4:5 — bez letterboxingu (contain w rozciągniętym boxie = białe pasy). */
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-hero-layout {
    align-items: flex-start;
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-hero-visual {
    flex: 0 1 auto;
    height: auto;
    min-height: 0;
    line-height: 0;
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-hero-visual-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: unset;
    object-position: center center;
    vertical-align: top;
}
@media (max-width: 991px) {
    body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-hero-visual-col {
        min-height: 0;
    }
    body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-hero-visual {
        min-height: 0;
        height: auto;
    }
}
body.page-id-1878 h1,
body.page-id-1878 h2 {
    font-family: var(--font-heading) !important;
}
body.page-id-1878 h3,
body.page-id-1878 h4,
body.page-id-1878 h5,
body.page-id-1878 h6,
body.page-id-1878 p,
body.page-id-1878 li,
body.page-id-1878 label,
body.page-id-1878 input,
body.page-id-1878 select,
body.page-id-1878 textarea,
body.page-id-1878 button,
body.page-id-1878 .btn-custom,
body.page-id-1878 #header .nav > li > a,
body.page-id-1878 #navigation_affix .nav > li > a,
body.page-id-1878 #navigation_mobile,
body.page-id-1878 #header.header1 .header-content .header-form .header-form-body .txt-desc,
body.page-id-1878 .post-heading-center p,
body.page-id-1878 .post-heading-left p,
body.page-id-1878 .nt-landing-footer-socket {
    font-family: var(--font-body) !important;
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list .hero-bullet {
    color: var(--nt-teal);
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body input[type="email"]:focus {
    border-color: var(--nt-teal) !important;
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body input[type="submit"],
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .wpcf7-submit {
    border-color: var(--nt-hero-submit) !important;
    background: var(--nt-hero-submit) !important;
    box-shadow: 0 4px 14px rgba(230, 126, 34, 0.35);
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body input[type="submit"]:hover,
body.page-id-1878.nt-hero-v2 #header.header1 .header-content .header-form .header-form-body .wpcf7-submit:hover {
    background: var(--nt-hero-submit-hover) !important;
    border-color: var(--nt-hero-submit-hover) !important;
    box-shadow: 0 6px 18px rgba(230, 126, 34, 0.42);
}
body.page-id-1878 #header .nav > li.menu-btn > a,
body.page-id-1878 #header #primary-menu > li.menu-btn > a,
body.page-id-1878 #navigation_affix .nav > li.menu-btn > a,
body.page-id-1878 #navigation_affix #primary-menu-affix > li.menu-btn > a {
    background: var(--nt-cta-btn) !important;
}
body.page-id-1878 #header .nav > li.menu-btn > a:hover,
body.page-id-1878 #header .nav > li.menu-btn.active > a,
body.page-id-1878 #header #primary-menu > li.menu-btn > a:hover,
body.page-id-1878 #header #primary-menu > li.menu-btn.active > a,
body.page-id-1878 #navigation_affix .nav > li.menu-btn > a:hover,
body.page-id-1878 #navigation_affix .nav > li.menu-btn.active > a,
body.page-id-1878 #navigation_affix #primary-menu-affix > li.menu-btn > a:hover,
body.page-id-1878 #navigation_affix #primary-menu-affix > li.menu-btn.active > a {
    background: var(--nt-cta-btn-hover) !important;
}
body.page-id-1878 #header .nav > li.menu-btn,
body.page-id-1878 #header #primary-menu > li.menu-btn,
body.page-id-1878 #navigation_affix .nav > li.menu-btn,
body.page-id-1878 #navigation_affix #primary-menu-affix > li.menu-btn,
body.page-id-1878 #navigation_mobile .mobile-nav > li.menu-btn {
    display: none !important;
}
body.page-id-1878 #features-copy .nt-ce-cta {
    display: none !important;
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:first-child h1,
body.page-id-1878.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:first-child h4 {
    color: var(--nt-teal-dark) !important;
    letter-spacing: -0.02em;
    margin: 0 !important;
}
body.page-id-1878 .header-txt-list > li:first-child h1 .nt-hero-h1-range,
body.page-id-1878 .header-txt-list > li:first-child h1 .nowrap,
body.page-id-1878 .nt-hero-v3__title .nowrap,
body.page-id-1878 .nt-consultation-effect .nt-ce-question-desc .nowrap,
body.page-id-1878 .nt-savings-highlight-amount .nowrap,
body.page-id-1878 .nt-cr-savings-amount .nowrap,
body.page-id-1878 .nt-cr-bottom-text .nowrap {
    white-space: nowrap;
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:nth-child(2) h4,
body.page-id-1878.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:nth-child(2) .nt-hero-lead,
body.page-id-1878.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:nth-child(2) p {
    font-weight: 400 !important;
}
body.page-id-1878 #header.header1 #navigation.navbar .navbar-brand img {
    width: 160px !important;
    height: 40px !important;
    object-fit: contain;
}
body.page-id-1878 #header.header1 #navigation.navbar {
    padding-top: 24px;
    padding-bottom: 28px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.72) 0%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(255, 255, 255, 0.18) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
body.page-id-1878 #header.header1 #navigation.navbar #primary-menu > li:not(.menu-btn):not(.phone-num) > a,
body.page-id-1878 #header.header1 #navigation.navbar .nav > li:not(.menu-btn):not(.phone-num) > a {
    color: var(--nt-teal-dark) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(255, 255, 255, 0.65);
}
body.page-id-1878 #header.header1 #navigation.navbar #primary-menu > li:not(.menu-btn):not(.phone-num) > a:hover,
body.page-id-1878 #header.header1 #navigation.navbar #primary-menu > li:not(.menu-btn):not(.phone-num).active > a,
body.page-id-1878 #header.header1 #navigation.navbar .nav > li:not(.menu-btn):not(.phone-num) > a:hover,
body.page-id-1878 #header.header1 #navigation.navbar .nav > li:not(.menu-btn):not(.phone-num).active > a {
    color: var(--nt-teal) !important;
}
body.page-id-1878 #header #primary-menu > li:not(.menu-btn):not(.phone-num) > a,
body.page-id-1878 #header .nav > li:not(.menu-btn):not(.phone-num) > a,
body.page-id-1878 #navigation_affix #primary-menu-affix > li:not(.menu-btn):not(.phone-num) > a,
body.page-id-1878 #navigation_affix .nav > li:not(.menu-btn):not(.phone-num) > a,
body.page-id-1878 #navigation_mobile .mobile-nav li a {
    color: var(--nt-teal) !important;
}
body.page-id-1878 #header #primary-menu > li:not(.menu-btn):not(.phone-num) > a:hover,
body.page-id-1878 #header #primary-menu > li:not(.menu-btn):not(.phone-num).active > a,
body.page-id-1878 #header .nav > li:not(.menu-btn):not(.phone-num) > a:hover,
body.page-id-1878 #header .nav > li:not(.menu-btn):not(.phone-num).active > a,
body.page-id-1878 #navigation_affix #primary-menu-affix > li:not(.menu-btn):not(.phone-num) > a:hover,
body.page-id-1878 #navigation_affix #primary-menu-affix > li:not(.menu-btn):not(.phone-num).active > a,
body.page-id-1878 #navigation_affix .nav > li:not(.menu-btn):not(.phone-num) > a:hover,
body.page-id-1878 #navigation_affix .nav > li:not(.menu-btn):not(.phone-num).active > a,
body.page-id-1878 #navigation_mobile .mobile-nav li a:hover,
body.page-id-1878 #navigation_mobile .mobile-nav li.active a {
    color: var(--nt-teal-dark) !important;
    border-top-color: var(--nt-teal) !important;
}
body.page-id-1878 .footer-main-links a:hover {
    color: var(--nt-teal);
}
body.page-id-1878 .footer-legal {
    background: var(--nt-teal-dark);
}

/* Home 1878: inline SVG (landing-icons.php) — rozmiary w kontekstach */
body.page-id-1878 .nt-icon-svg {
    display: block;
    flex-shrink: 0;
}
body.page-id-1878 .nt-ce-title-icon .nt-icon-svg {
    width: 15px;
    height: 15px;
}
body.page-id-1878 .nt-ce-icon-ring .nt-icon-svg {
    width: 18px;
    height: 18px;
}
body.page-id-1878 .nt-landing-mark .nt-icon-svg {
    width: 14px;
    height: 14px;
}
body.page-id-1878 .nt-landing-list-icon .nt-icon-svg {
    width: 12px;
    height: 12px;
}
body.page-id-1878 .nt-landing-process-icon .nt-icon-svg {
    width: 42px;
    height: 42px;
}
body.page-id-1878 .nt-landing-cta-icon .nt-icon-svg {
    width: 20px;
    height: 20px;
}

/* Home (1878): sekcja efekt konsultacji — mockup 3 kolumny + pasek podsumowania */
body.page-id-1878 .nt-consultation-effect .nt-ce-heading {
    margin-bottom: var(--heading-gap);
}
body.page-id-1878 #features-copy.nt-consultation-effect .nt-ce-heading h2 {
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-heading p {
    margin: 0;
    line-height: 1.65;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -12px;
    margin-right: -12px;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-col {
    display: flex;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 18px;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 22px 20px 20px;
    border: 1px solid var(--nt-teal-border);
    border-radius: 12px;
    background: #ffffff;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-card-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--nt-teal-light);
    color: var(--nt-teal);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-card-lead {
    margin: 0 0 16px;
    line-height: 1.5;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-card-heading {
    margin: 0 0 18px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-questions-intro {
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--nt-teal-border-soft);
    font-weight: 700;
    line-height: 1.4;
    color: var(--nt-teal-dark);
    text-align: left;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-card--questions {
    flex: 1;
    padding: 20px 20px 18px;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-questions-list {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-question-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--nt-teal-border-soft);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-question-item:first-child {
    padding-top: 0;
    border-top: 0;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-question-item:last-child {
    padding-bottom: 0;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-question-num {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--nt-teal-light);
    color: var(--nt-teal);
    font-weight: 700;
    line-height: 1;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-question-body {
    flex: 1;
    min-width: 0;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-question-title {
    margin: 0 0 6px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-question-desc {
    margin: 0;
    line-height: 1.5;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-questions-footnote {
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--nt-teal-border-soft);
    line-height: 1.5;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-card--practice {
    flex: 1;
    padding: 22px 20px 20px;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-practice-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-practice-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--nt-teal-border-soft);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-practice-item:first-child {
    padding-top: 0;
    border-top: 0;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-practice-item:last-child {
    padding-bottom: 0;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-practice-body {
    flex: 1;
    min-width: 0;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-practice-title {
    margin: 0 0 6px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-practice-desc {
    margin: 0;
    line-height: 1.5;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-mockup {
    margin-top: auto;
    padding: 14px 14px 12px;
    border: 1px solid var(--nt-teal-border);
    border-radius: 8px;
    background: #f8fafc;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-mockup-head {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-brand-sub {
    font-weight: 500;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-mockup-title {
    margin: 0 0 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-list {
    margin: 0 0 8px;
    padding-left: 18px;
    line-height: 1.45;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 8px;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-bar {
    display: block;
    height: 6px;
    border-radius: 3px;
    background: #d5dde8;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-bar--a {
    width: 88%;
    background: var(--nt-teal);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-bar--b {
    width: 72%;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-bar--c {
    width: 56%;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-list-extra {
    margin: 0 0 10px;
    line-height: 1.4;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-pdf-note {
    margin: 0;
    padding: 8px 10px;
    border-radius: 6px;
    line-height: 1.4;
    color: var(--nt-teal-muted);
    background: var(--nt-teal-light);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-trust-list,
body.page-id-1878 .nt-consultation-effect .nt-ce-steps-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-trust-item,
body.page-id-1878 .nt-consultation-effect .nt-ce-step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--nt-teal-border-soft);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-trust-item:first-child,
body.page-id-1878 .nt-consultation-effect .nt-ce-step-item:first-child {
    border-top: 0;
    padding-top: 0;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-icon-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 2px solid var(--nt-teal);
    border-radius: 50%;
    color: var(--nt-teal);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-trust-text,
body.page-id-1878 .nt-consultation-effect .nt-ce-step-text {
    flex: 1;
    min-width: 0;
    line-height: 1.45;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-consultation-effect .nt-ce-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--nt-teal-dark);
    color: #ffffff;
    font-weight: 700;
}
body.page-id-1878 .nt-consultation-effect .nt-ce-cta {
    margin-top: 8px;
    text-align: center;
}
@media (max-width: 991px) {
    body.page-id-1878.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:first-child h1,
    body.page-id-1878.nt-hero-v2 #header.header1 .header-hero-txt-col .header-txt-list > li:first-child h4 {
        line-height: 1.15 !important;
    }
    body.page-id-1878 .nt-consultation-effect .nt-ce-col {
        width: 100%;
    }
}
@media (max-width: 767px) {
    body.page-id-1878 .nt-consultation-effect .nt-ce-cta .nt-landing-btn {
        width: 100%;
        text-align: center;
    }
    body.page-id-1878 .nt-consultation-effect .nt-ce-step-item {
        align-items: flex-start;
    }
}

/* Home 1878: przykład raportu PDF (nad #for-whom) — odstępy w bloku „unified vertical rhythm” */
body.page-id-1878 .nt-cr-header{
    margin-bottom: var(--heading-gap);
    text-align: center;
}
body.page-id-1878 .nt-cr-eyebrow{
    margin: 0 0 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-cr-title{
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-cr-lead{
    margin: 0 auto;
    line-height: 1.55;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-cr-panel{
    padding: 28px 28px 24px;
    border: 1px solid var(--nt-teal-border);
    border-radius: 16px;
    background: #f4f7f6;
    box-shadow: 0 10px 28px rgba(26, 79, 79, 0.06);
}
body.page-id-1878 .nt-cr-panel-row{
    margin-left: -14px;
    margin-right: -14px;
    align-items: stretch;
}
body.page-id-1878 .nt-cr-col{
    padding-left: 14px;
    padding-right: 14px;
}
@media (min-width: 992px) {
    /* Bootstrap .row clearfix + .col-md-6 psuje grid — flex + !important */
    body.page-id-1878 .nt-cr-panel-row.row{
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: flex-start;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 28px;
    }
    body.page-id-1878 .nt-cr-panel-row.row::before,
    body.page-id-1878 .nt-cr-panel-row.row::after {
        display: none !important;
        content: none !important;
    }
    body.page-id-1878 .nt-cr-panel-row > .nt-cr-col.col-md-6{
        float: none !important;
        flex: 0 0 auto;
        padding-left: 0 !important;
        padding-right: 0 !important;
        min-width: 0;
    }
    /* 35% lista / 65% podgląd ≈ +30% szerokości obrazka vs dawne 50/50 */
    body.page-id-1878 .nt-cr-col--list.col-md-6{
        width: 35% !important;
        max-width: 35% !important;
    }
    body.page-id-1878 .nt-cr-col--preview.col-md-6{
        width: 65% !important;
        max-width: 65% !important;
        flex: 1 1 auto;
    }
}
body.page-id-1878 .nt-cr-list-title{
    margin: 0 0 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-cr-feature-list{
    margin: 0;
    padding: 0;
    list-style: none;
}
body.page-id-1878 .nt-cr-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
body.page-id-1878 .nt-cr-feature-item:last-child {
    margin-bottom: 0;
}
body.page-id-1878 .nt-cr-feature-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e6f0f0;
    color: var(--nt-teal);
}
body.page-id-1878 .nt-cr-feature-icon .nt-icon-svg{
    width: 20px;
    height: 20px;
}
body.page-id-1878 .nt-cr-feature-title{
    margin: 0 0 4px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-cr-feature-desc{
    margin: 0;
    line-height: 1.5;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-cr-savings{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #e8f3f1;
    border: 1px solid rgba(26, 79, 79, 0.1);
}
body.page-id-1878 .nt-cr-savings-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: var(--nt-teal);
}
body.page-id-1878 .nt-cr-savings-icon .nt-icon-svg{
    width: 22px;
    height: 22px;
}
body.page-id-1878 .nt-cr-savings-label,
body.page-id-1878 .nt-cr-savings-note {
    margin: 0;
    line-height: 1.45;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-cr-savings-amount{
    margin: 2px 0 4px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-cr-col--preview{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
body.page-id-1878 .nt-cr-preview-figure{
    width: 100%;
    max-width: 100%;
    margin: 0;
}
body.page-id-1878 .nt-cr-preview-img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}
body.page-id-1878 .nt-cr-bottom{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding: 20px 24px;
    border: 1px solid var(--nt-teal-border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(26, 79, 79, 0.05);
}
body.page-id-1878 .nt-cr-bottom-copy{
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 280px;
    min-width: 0;
}
body.page-id-1878 .nt-cr-pdf-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff0e6;
    color: var(--nt-cta-btn);
}
body.page-id-1878 .nt-cr-pdf-icon .nt-icon-svg{
    width: 22px;
    height: 22px;
}
body.page-id-1878 .nt-cr-bottom-text{
    margin: 0;
    line-height: 1.45;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-cr-bottom-cta{
    flex: 0 0 auto;
    text-align: center;
}
body.page-id-1878 .nt-cr-bottom-note{
    margin: 8px 0 0;
    line-height: 1.4;
    color: var(--nt-teal-muted);
}
@media (max-width: 991px) {
    body.page-id-1878 .nt-cr-title{
    }
    body.page-id-1878 .nt-cr-col--preview{
        margin-top: 28px;
    }
    body.page-id-1878 .nt-cr-bottom{
        flex-direction: column;
        align-items: stretch;
    }
    body.page-id-1878 .nt-cr-bottom-cta .nt-landing-btn{
        width: 100%;
    }
}
@media (max-width: 767px) {
    body.page-id-1878 .nt-cr-panel{
        padding: 20px 16px 18px;
    }
}

/* Home 1878: layout — kontenery + rytm sekcji */
body.page-id-1878 #features-copy > .container,
body.page-id-1878 .nt-landing-section > .container {
    max-width: var(--container-content);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
body.page-id-1878 #features-copy,
body.page-id-1878 #consultation-report,
body.page-id-1878 #for-whom,
body.page-id-1878 #process,
body.page-id-1878 #next-steps,
body.page-id-1878 #faq,
body.page-id-1878 #about,
body.page-id-1878 #landing-cta {
    padding-block: var(--section-pad) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
body.page-id-1878 #features-copy .post-heading-center,
body.page-id-1878 #features-copy .post-heading-center p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
body.page-id-1878 #features-copy .post-heading-center {
    margin-bottom: var(--heading-gap);
}
body.page-id-1878 .nt-ce-heading,
body.page-id-1878 .nt-cr-header,
body.page-id-1878 .nt-landing-section-title {
    margin-top: 0;
    margin-bottom: var(--heading-gap);
}
body.page-id-1878 #features-copy > .container > *:first-child,
body.page-id-1878 .nt-landing-section > .container > *:first-child {
    margin-top: 0 !important;
}
body.page-id-1878 #features-copy > .container > *:last-child,
body.page-id-1878 .nt-landing-section > .container > *:last-child {
    margin-bottom: 0 !important;
}
body.page-id-1878.nt-hero-v3 #header.header1,
body.page-id-1878.nt-hero-v3 .vc_row.vc_custom_1481038405591,
body.page-id-1878.nt-hero-v3 .vc_row.nt-hero-row-full {
    width: 100%;
    max-width: none;
}

/* Home 1878: landing pod efektem konsultacji (mockup → stopka) */
body.page-id-1878 .nt-landing-rest {
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-section-title {
    margin: 0 0 var(--heading-gap);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
    text-align: center;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-section-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: var(--nt-teal);
}
body.page-id-1878 .nt-landing-section-title--left {
    text-align: left;
}
body.page-id-1878 .nt-landing-section-title--left::after {
    margin-left: 0;
}
body.page-id-1878 .nt-landing-card {
    height: 100%;
    padding: 24px 22px;
    border: 1px solid var(--nt-teal-border);
    border-radius: 12px;
    background: #fff;
}
body.page-id-1878 .nt-landing-for-whom .nt-landing-card--yes {
    border: 2px solid var(--nt-teal);
    background: linear-gradient(180deg, #edf6f6 0%, #fff 72%);
    box-shadow: 0 2px 14px rgba(26, 79, 79, 0.1);
}
body.page-id-1878 .nt-landing-for-whom .nt-landing-card--no {
    border: 1px solid rgba(154, 107, 101, 0.38);
    background: linear-gradient(180deg, #faf6f5 0%, #fff 72%);
    box-shadow: 0 2px 12px rgba(122, 79, 74, 0.07);
}
body.page-id-1878 .nt-landing-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--nt-teal);
}
body.page-id-1878 .nt-landing-for-whom .nt-landing-card--yes .nt-landing-card-head {
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-for-whom .nt-landing-card--no .nt-landing-card-head {
    color: #7a4f4a;
}
body.page-id-1878 .nt-landing-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}
body.page-id-1878 .nt-landing-for-whom .nt-landing-mark--yes {
    background: var(--nt-teal);
    color: #fff;
}
body.page-id-1878 .nt-landing-for-whom .nt-landing-mark--no {
    background: #ebe4e2;
    color: #9a6b65;
}
body.page-id-1878 .nt-landing-mark--yes {
    background: var(--nt-teal-light);
    color: var(--nt-teal);
}
body.page-id-1878 .nt-landing-mark--no {
    background: #f3f5f8;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-landing-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
body.page-id-1878 .nt-landing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-list li:last-child {
    margin-bottom: 0;
}
body.page-id-1878 .nt-landing-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}
body.page-id-1878 .nt-landing-list-icon--yes {
    color: var(--nt-teal);
}
body.page-id-1878 .nt-landing-for-whom .nt-landing-list-icon--yes {
    color: var(--nt-teal);
}
body.page-id-1878 .nt-landing-list-icon--no {
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-landing-for-whom .nt-landing-list-icon--no {
    color: #a67c75;
}
body.page-id-1878 .nt-landing-for-whom-grid > [class*="col-"] {
    margin-bottom: 16px;
}
body.page-id-1878 .nt-landing-process .nt-landing-section-title {
    margin-bottom: var(--heading-gap);
}
body.page-id-1878 .nt-landing-process-grid {
    margin-bottom: 0;
}
body.page-id-1878 .nt-landing-process-col {
    margin-bottom: 24px;
}
body.page-id-1878 .nt-landing-process-step {
    text-align: center;
    padding: 12px 18px;
}
body.page-id-1878 .nt-landing-process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 15px;
    color: var(--nt-teal);
}
body.page-id-1878 .nt-landing-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--nt-teal-dark);
    color: #fff;
    font-weight: 700;
}
body.page-id-1878 .nt-landing-process-title {
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-process-desc {
    margin: 0;
    line-height: 1.55;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-landing-btn {
    display: inline-block;
    padding: 16px 20px;
    border: 2px solid var(--nt-cta-btn);
    border-radius: 8px;
    background: var(--nt-cta-btn);
    color: #fff !important;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(230, 126, 34, 0.35);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
body.page-id-1878 .nt-landing-btn:hover,
body.page-id-1878 .nt-landing-btn:focus {
    background: var(--nt-cta-btn-hover);
    border-color: var(--nt-cta-btn-hover);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(230, 126, 34, 0.42);
}
body.page-id-1878 .nt-landing-next-lead {
    margin: 0;
    line-height: 1.55;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-next-list {
    border: 1px solid var(--nt-teal-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
body.page-id-1878 .nt-landing-next-item {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--nt-teal-border-soft);
}
body.page-id-1878 .nt-landing-next-item:first-child {
    border-top: 0;
}
body.page-id-1878 .nt-landing-next-item-title {
    flex: 0 0 38%;
    padding: 16px 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--nt-teal-dark);
    border-right: 1px solid var(--nt-teal-border-soft);
}
body.page-id-1878 .nt-landing-next-item-desc {
    flex: 1;
    padding: 16px 18px;
    line-height: 1.5;
    color: var(--nt-teal-muted);
}
body.page-id-1878 #next-steps .nt-landing-next-testimonials {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
body.page-id-1878 #next-steps .nt-landing-section-title {
    margin-bottom: var(--heading-gap);
}
body.page-id-1878.nt-hero-v2 #header.header1 .header-form .header-form-heading .header-form-heading__title {
    margin: 0;
    font-weight: inherit;
    line-height: inherit;
}
body.page-id-1878 #next-steps .nt-testimonials-static {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -12px;
    margin-right: -12px;
}
body.page-id-1878 #next-steps .nt-testimonials-static > .nt-testimonial-col {
    display: flex;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}
body.page-id-1878 #next-steps .nt-testimonials-static .affa-testimonial--quote-only {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 22px 20px 20px;
    border: 1px solid #e3eae6;
    border-radius: 12px;
    background: #f5f8f6;
    box-shadow: none;
}
body.page-id-1878 #next-steps .nt-testimonials-static .affa-testimonial--quote-only .testimonial-txt {
    flex: 1 1 auto;
}
body.page-id-1878 #next-steps .affa-testimonial-icon {
    display: none !important;
}
body.page-id-1878 #next-steps .nt-testimonial-quote-mark {
    display: block;
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    color: var(--nt-teal);
    opacity: 0.25;
}
body.page-id-1878 #next-steps .affa-testimonial--quote-only .testimonial-txt blockquote {
    margin: 0;
    padding: 0;
    border: 0;
}
body.page-id-1878 #next-steps .affa-testimonial--quote-only .testimonial-txt blockquote p {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-h3);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: var(--nt-teal-dark);
}
body.page-id-1878 #next-steps .affa-testimonial--quote-only .testimonial-name {
    margin-top: 18px;
}
body.page-id-1878 #next-steps .affa-testimonial--quote-only .testimonial-attribution {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    font-style: normal;
    color: var(--nt-teal-dark);
}
body.page-id-1878 #next-steps .affa-testimonial--quote-only .testimonial-stage {
    margin: 4px 0 0;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    font-style: normal;
    color: #6b7570;
    opacity: 1;
}
body.page-id-1878 .nt-landing-faq-grid > [class*="col-"] {
    margin-bottom: 16px;
}
body.page-id-1878 .nt-landing-faq-item {
    border: 1px solid var(--nt-teal-border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
body.page-id-1878 .nt-landing-faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
}
body.page-id-1878 .nt-landing-faq-summary::-webkit-details-marker {
    display: none;
}
body.page-id-1878 .nt-landing-faq-q {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 600;
    line-height: 1.4;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-faq-chevron {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--nt-teal-muted);
    border-bottom: 2px solid var(--nt-teal-muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}
body.page-id-1878 .nt-landing-faq-item[open] .nt-landing-faq-chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
}
body.page-id-1878 .nt-landing-faq-a {
    padding: 0 18px 16px;
}
body.page-id-1878 .nt-landing-faq-a p {
    margin: 0;
    line-height: 1.55;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-landing-about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
body.page-id-1878 .nt-landing-about-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
@media (min-width: 992px) {
    body.page-id-1878 .nt-landing-about-photo-col,
    body.page-id-1878 .nt-landing-about-text-col {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }
}
body.page-id-1878 .nt-landing-about-photo-col {
    align-items: stretch;
    justify-content: stretch;
}
body.page-id-1878 .nt-landing-about-photo {
    display: block;
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: auto;
}
body.page-id-1878 .nt-landing-about-photo--logo {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid var(--nt-teal-border);
}
body.page-id-1878 .nt-landing-about-photo--placeholder {
    flex: 1 1 auto;
    width: 100%;
    min-height: 220px;
    background: linear-gradient(180deg, #eef2f7 0%, #dfe6ef 100%);
}
@media (max-width: 991px) {
    body.page-id-1878 .nt-landing-about-photo--placeholder,
    body.page-id-1878 .nt-landing-about-photo--logo {
        min-height: 220px;
    }
}
body.page-id-1878 .nt-landing-about-lead {
    margin: 0 0 14px;
    line-height: 1.55;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-about-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
body.page-id-1878 .nt-landing-about-point-title {
    margin: 0 0 4px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-about-point-desc {
    margin: 0;
    line-height: 1.5;
    color: var(--nt-teal-muted);
}
body.page-id-1878 .nt-landing-about-body {
    margin: 0 0 14px;
    line-height: 1.55;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-about-trust-title {
    margin: 0 0 12px;
    font-weight: 700;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-about-trust {
    margin: 0;
    padding: 0;
    list-style: none;
}
body.page-id-1878 .nt-landing-about-trust li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--nt-teal-dark);
}
body.page-id-1878 .nt-landing-cta-bar {
    margin: 0;
    padding: 0;
    background: transparent;
    border-top: 0;
}
body.page-id-1878 .nt-landing-cta-bar .nt-cr-bottom {
    margin-top: 0;
}
body.page-id-1878 .nt-landing-footer {
    background: transparent;
    color: inherit;
    border-top: 0;
}
body.page-id-1878 .nt-landing-footer-socket {
    padding: 14px 0;
    line-height: 1.5;
    background: #1a302d;
    color: rgba(255, 255, 255, 0.85);
}
body.page-id-1878 .nt-landing-footer-socket-line {
    margin: 0;
    text-align: center;
}
body.page-id-1878 .nt-landing-footer-socket a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}
body.page-id-1878 .nt-landing-footer-socket a:hover,
body.page-id-1878 .nt-landing-footer-socket a:focus {
    color: #fff;
    text-decoration: underline;
}
body.page-id-1878 .nt-landing-footer-socket-sep {
    color: rgba(255, 255, 255, 0.45);
}
body.page-id-1878 .nt-landing-footer-copy {
    color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 991px) {
    body.page-id-1878 .nt-landing-next-item {
        flex-direction: column;
    }
    body.page-id-1878 #next-steps .nt-testimonials-static > .nt-testimonial-col {
        margin-bottom: 16px;
    }
    body.page-id-1878 #next-steps .nt-testimonials-static .affa-testimonial--quote-only {
        padding: 18px 16px;
    }
    body.page-id-1878 #next-steps .affa-testimonial--quote-only .testimonial-txt blockquote p {
    }
    body.page-id-1878 .nt-landing-next-item-title {
        flex: none;
        border-right: 0;
        border-bottom: 1px solid var(--nt-teal-border-soft);
    }
    body.page-id-1878 .nt-landing-cta-bar .nt-cr-bottom-cta .nt-landing-btn {
        width: 100%;
    }
}

/* Ukryte: wiersz bloków w #features-copy + cała sekcja #features */
#features-copy .row.padding-bottom20,
.vc_row.wpb_row.vc_row-fluid:has(#features),
#features {
    display: none !important;
}

/* Ukryta karta „Korzyści końcowe” — zostaje .footer-main (logo, nawigacja, copyright) */
#footer.default-footer {
    display: none !important;
}

/* FAQ — odpowiedzi zwinięte (WPBakery: h4 + .wpb_text_column) */
#faq .wpb_wrapper > h4.vc_custom_heading + .wpb_text_column,
#faq .nt-faq-answer {
    display: none;
}
#faq .wpb_wrapper.is-open > .wpb_text_column,
#faq .wpb_wrapper.is-open .nt-faq-answer,
#faq .nt-faq-item.is-open .wpb_text_column,
#faq .nt-faq-item.is-open .nt-faq-answer {
    display: block;
}

/* FAQ — ukryte sterowanie globalne (jeśli zostało w cache HTML) */
#faq .nt-faq-controls {
    display: none !important;
}
#faq .affa-faq {
    margin-bottom: 0;
}
#faq .nt-faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid #e3e8ee;
}
#faq .affa-faq .wpb_column {
    padding-top: 0;
    padding-bottom: 0;
}
#faq button.nt-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 16px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    color: #1f3455 !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    text-align: left;
    white-space: normal !important;
    cursor: pointer;
    box-shadow: none !important;
}
#faq button.nt-faq-toggle:hover,
#faq button.nt-faq-toggle:focus {
    color: #1f3455 !important;
    background: transparent !important;
    background-color: transparent !important;
}
#faq .nt-faq-toggle::after {
    content: "+";
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: #ff7469;
}
#faq .nt-faq-item.is-open .nt-faq-toggle::after {
    content: "−";
}
#faq .nt-faq-answer {
    display: none;
    margin: 0 0 16px !important;
    padding: 0 0 4px;
    color: #5a6b7d;
    font-size: 16px;
    line-height: 1.55;
}
@media (max-width: 767px) {
    #faq button.nt-faq-toggle {
        font-size: 17px !important;
        padding: 14px 0 !important;
    }
}

/* Facts section readability */
#facts .bg-overlay {
    background-color: rgba(23, 43, 72, 0.56) !important;
}
#facts .bg-overlay.wrap-container8040 {
    padding-top: 40px !important;
    padding-bottom: 20px !important;
}
#facts .affa-counter-txt {
    margin-bottom: 0 !important;
}
#facts .affa-counter-txt .fa {
    font-size: 32px !important;
    margin-bottom: 12px !important;
}
#facts .affa-counter-txt h4,
#facts .affa-counter-txt p {
    color: #ffffff !important;
}
#facts .affa-counter-txt h4 {
    font-size: 30px;
    line-height: 1;
}
#facts .affa-counter-txt p {
    font-size: 13px;
    margin-top: 8px !important;
}

/* Subscribe section (split layout like final mockup) */
#subscribe {
    text-align: left;
    background-image: none !important;
    background: #f8f8f6 !important;
}
#subscribe.parallax-window,
#subscribe.bg-img {
    background-image: none !important;
    background: #f8f8f6 !important;
}
#subscribe .bg-img-base {
    display: none !important;
    background-image: none !important;
}
#subscribe .post-heading-center {
    display: none !important;
}
#subscribe > .bg-overlay {
    display: none !important;
}
#subscribe .bg-overlay {
    padding: 56px 0 !important;
    background-color: rgba(255, 255, 255, 0.24) !important;
}
#subscribe .container {
    width: 100%;
    max-width: 1160px !important;
}
#subscribe .subscribe-split {
    margin: 0 !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(19, 36, 62, 0.16);
    background: rgba(255, 255, 255, 0.9);
}
#subscribe .subscribe-split > [class*="col-"] {
    padding: 0 !important;
}
#subscribe .subscribe-info-panel {
    padding: 46px 44px 42px;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.78);
}
#subscribe .subscribe-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c29a53;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
#subscribe .subscribe-badge i {
    font-size: 18px;
}
#subscribe .subscribe-info-panel h2 {
    margin: 10px 0 10px;
    color: #1f3455;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
}
#subscribe .subscribe-info-panel .subscribe-lead {
    color: #304766;
    font-size: 28px;
    line-height: 1.45;
    margin: 0 0 36px;
    max-width: 560px;
}
#subscribe .subscribe-points {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
#subscribe .subscribe-points li {
    flex: 1 1 155px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 140px;
    color: #4a5f7f;
    font-size: 14px;
    line-height: 1.35;
}
#subscribe .subscribe-points li i {
    color: #c29a53;
    font-size: 22px;
    margin-bottom: 4px;
}
#subscribe .subscribe-points li strong {
    color: #1f3455;
    font-size: 16px;
    line-height: 1.25;
}

#subscribe .header-form {
    margin: 32px auto !important;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    color: #777;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 16px 44px rgba(22, 39, 63, 0.18);
}
#subscribe .header-form .header-form-heading {
    color: #fff;
    line-height: 22px;
    background-color: #1f3455 !important;
    padding: 24px 28px !important;
}
#subscribe .header-form .header-form-heading h4 {
    overflow: hidden;
    color: #d2b26d !important;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0;
}
#subscribe .header-form .header-form-heading h4 .fa {
    float: left;
    font-size: 22px;
    line-height: 1;
    margin-right: 10px;
}
#subscribe .header-form .header-form-heading p {
    margin: 8px 0 0;
    color: #fff !important;
}
#subscribe .header-form .header-form-body {
    overflow: hidden;
    position: relative;
    padding: 22px 26px 24px !important;
}
#subscribe .header-form .header-form-body .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 15px;
}
#subscribe .header-form .header-form-body p {
    margin: 0;
}
#subscribe .header-form .header-form-body input[type="text"],
#subscribe .header-form .header-form-body input[type="email"],
#subscribe .header-form .header-form-body input[type="tel"],
#subscribe .header-form .header-form-body .wpcf7-text,
#subscribe .header-form .header-form-body .wpcf7-email,
#subscribe .header-form .header-form-body .wpcf7-tel,
#subscribe .header-form .header-form-body .wpcf7-textarea {
    width: 100% !important;
}
#subscribe .header-form .header-form-body textarea,
#subscribe .header-form .header-form-body .wpcf7-textarea {
    height: 90px !important;
    min-height: 90px !important;
    max-height: 90px !important;
    resize: none;
}
#subscribe .header-form .header-form-body .wpcf7-submit,
#subscribe .header-form .header-form-body input[type="submit"] {
    width: 100% !important;
    min-width: 100% !important;
    border: 0;
    border-radius: 4px;
    background-color: #c29a53 !important;
    color: #fff !important;
    font-weight: 600;
}
#subscribe .header-form .header-form-body .wpcf7-submit:hover,
#subscribe .header-form .header-form-body input[type="submit"]:hover {
    background-color: #b18842 !important;
}
#subscribe .header-form .header-form-body .txt-desc {
    font-family: var(--nt-font-sans);
    color: #8b98ab;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    margin-top: 20px;
}

/* Footer links */
.default-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    width: 100%;
    clear: both;
    margin: 10px 0 0;
}
.default-footer .footer-links a {
    color: #1f3455;
    font-size: 13px;
    line-height: 1.2;
}
.default-footer .footer-links a:hover {
    color: #c29a53;
    text-decoration: underline;
}

/* Footer CTA card */
#footer.default-footer {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
}
#footer.default-footer .footer-cta-card {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-height: 178px;
    padding: 26px 34px;
    border-radius: 8px;
    border: 0;
    background: #fff;
    box-shadow: 0 4px 24px rgba(31, 52, 85, 0.1);
    margin: 40px auto 0;
    text-align: center;
}
#footer.default-footer .footer-cta-card:after {
    display: none;
}
#footer.default-footer .footer-cta-icon {
    flex: 0 0 124px;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    border: 1px solid #d9bf84;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f3455;
    background: #fff;
}
#footer.default-footer .footer-cta-icon i {
    font-size: 46px;
}
#footer.default-footer .footer-cta-content {
    flex: 0 1 auto;
    max-width: 520px;
    text-align: center;
}
#footer.default-footer .footer-cta-content h3 {
    margin: 0 0 12px;
    color: #1f3455;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}
#footer.default-footer .footer-cta-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
#footer.default-footer .footer-cta-content ul li {
    margin: 0 0 6px;
    color: #1f3455;
    font-size: 19px;
    line-height: 1.35;
}
#footer.default-footer .footer-cta-content ul li:last-child {
    margin-bottom: 0;
}
#footer.default-footer .footer-cta-content p {
    margin: 0;
    color: #1f3455;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 400;
}
#footer.default-footer .footer-cta-action {
    margin-left: auto;
    padding-right: 88px;
}
#footer.default-footer .footer-cta-action .btn-custom {
    border: 0;
    min-width: 240px;
    height: 58px;
    padding: 0 30px;
    border-radius: 6px;
    background: #c29a53;
    color: #fff;
    font-size: 22px;
    line-height: 58px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: .2px;
}
#footer.default-footer .footer-cta-action .btn-custom:hover {
    background: #b18842;
}
#footer.default-footer .footer-cta-action .btn-custom .fa {
    margin-left: 10px;
}

/* Traditional site footer (above legal bar) — tło z hero (URL w nt-hero-bg-attachment.php) */
.footer-main {
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #12223a;
    padding: 44px 0 28px;
}
.footer-main-row {
    margin-bottom: 8px;
}
.footer-main-brand {
    margin-bottom: 28px;
}
.footer-main-logo {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    background: #fff;
    border-radius: 6px;
    line-height: 0;
}
.footer-main-logo img {
    max-width: 200px;
    max-height: 50px;
    width: auto;
    height: auto;
    display: block;
}
.footer-main-name {
    color: #12223a;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.footer-main-tagline {
    margin: 0;
    max-width: 280px;
    font-size: 14px;
    line-height: 1.55;
    color: #1f3455;
}
.footer-main-heading {
    margin: 0 0 14px;
    color: #12223a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.footer-main-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-main-links li {
    margin: 0 0 10px;
}
.footer-main-links a {
    color: #1f3455;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
}
.footer-main-links a:hover {
    color: #2d8a4e;
    text-decoration: none;
}
.footer-main-contact p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.55;
    color: #1f3455;
    max-width: 280px;
}
.footer-main-cta {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 4px;
    background: #c29a53;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.footer-main-cta:hover {
    background: #b18842;
    color: #fff !important;
    text-decoration: none;
}
.footer-main-copy {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(18, 34, 58, 0.12);
    text-align: center;
}
.footer-main-copy .copyright-txt {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #1f3455;
}
.footer-legal {
    padding: 16px 0;
    font-size: 13px;
    background: #12223a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}
.footer-legal a:hover {
    color: #c29a53;
    text-decoration: underline;
}

/* Responsive tuning */
@media (max-width: 991px) {
    .vc_row.wpb_row.vc_row-fluid:has(#features2),
    .vc_row.wpb_row.vc_row-fluid:has(#features3) {
        float: none;
        width: 100%;
    }
    #header.header1 .header-content {
        padding-top: 48px !important;
        padding-bottom: 52px !important;
    }
    #header.header1 .header-content .header-heading-title h1 {
        font-size: 46px !important;
        line-height: 1.08 !important;
    }
    #header.header1 .header-content .header-heading-title h4 {
        font-size: 26px !important;
        line-height: 1.35 !important;
    }
    #header.header1 .header-content .header-txt-list {
        margin-top: 18px;
    }
    #header.header1 .header-content .header-form {
        margin-top: 16px;
    }
    #subscribe .bg-overlay {
        padding: 40px 0 !important;
    }
    #subscribe .subscribe-info-panel {
        padding: 30px 28px;
    }
    #subscribe .subscribe-info-panel h2 {
        font-size: 44px;
    }
    #subscribe .subscribe-info-panel .subscribe-lead {
        font-size: 22px;
        margin-bottom: 24px;
    }
    #subscribe .header-form {
        margin: 22px auto !important;
        max-width: 400px;
    }
    #footer.default-footer .footer-cta-card {
        gap: 18px;
        padding: 20px;
    }
    #footer.default-footer .footer-cta-icon {
        flex-basis: 86px;
        width: 86px;
        height: 86px;
    }
    #footer.default-footer .footer-cta-icon i {
        font-size: 34px;
    }
    #footer.default-footer .footer-cta-content h3 {
        font-size: 21px;
    }
    #footer.default-footer .footer-cta-content p {
        font-size: 17px;
    }
    #footer.default-footer .footer-cta-action {
        padding-right: 0;
    }
    #footer.default-footer .footer-cta-action .btn-custom {
        min-width: 230px;
        height: 52px;
        line-height: 52px;
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    #header.header1 .header-content {
        padding-top: 39px !important;
        padding-bottom: 42px !important;
    }
    #header.header1 .header-content .header-heading-title:before {
        margin-bottom: 18px;
    }
    #header.header1 .header-content .header-heading-title h1 {
        font-size: 40px !important;
        line-height: 1.08 !important;
        max-width: 100%;
    }
    #header.header1 .header-content .header-heading-title h4 {
        font-size: 22px !important;
        max-width: 100%;
    }
    #header.header1 .header-content .header-txt-list {
        padding: 18px 16px !important;
        border-radius: 10px;
    }
    #header.header1 .header-content .header-txt-list > li:first-child {
        padding: 0 0 14px 0 !important;
    }
    #header.header1 .header-content .header-txt-list > li:nth-child(2),
    #header.header1 .header-content .header-txt-list > li:nth-child(3),
    #header.header1 .header-content .header-txt-list > li:nth-child(4) {
        padding: 0 0 12px 0 !important;
    }
    #header.header1 .header-content .header-txt-list li h4 {
        font-size: 14px !important;
        line-height: 1.429;
    }
    #header.header1 .header-content .header-txt-list > li:first-child h4 {
        font-size: 24px !important;
        line-height: 1.267;
    }
    #header.header1 .header-content .header-txt-list > li.header-txt-list-promo-item h4 {
        font-size: 22px !important;
    }
    #header.header1 .header-content .header-txt-list > li.header-txt-list-promo-item,
    #header.header1 .header-content .header-txt-list > li.header-txt-list-figure-item {
        padding-left: 0 !important;
    }
    #header.header1 .header-content .header-txt-list li p {
        font-size: 14px;
        line-height: 1.35;
    }
    #header.header1 .header-content .header-form .header-form-heading {
        padding: 18px 18px !important;
    }
    #header.header1 .header-content .header-form .header-form-body {
        padding: 16px 18px 18px !important;
    }
    #header.header1 .header-content .header-form .header-form-body input[type="text"],
    #header.header1 .header-content .header-form .header-form-body input[type="email"],
    #header.header1 .header-content .header-form .header-form-body input[type="tel"] {
        height: 44px;
    }
    #header.header1 .header-content .header-form .header-form-body textarea {
        height: 76px !important;
        min-height: 76px !important;
        max-height: 76px !important;
    }
    #features.wrap-container80,
    #features2.wrap-container8040,
    #features3.wrap-container80,
    #faq.wrap-container80 {
        padding-top: 40px !important;
        padding-bottom: 34px !important;
    }
    #features-copy .post-heading-center {
        margin-bottom: 32px;
    }
    #features-copy .post-heading-center h2 {
        font-size: 32px;
        line-height: 1.2;
    }
    #features-copy .post-heading-center p {
        font-size: 16px;
        line-height: 1.45;
        max-width: 100%;
    }
    #features-copy .row.padding-bottom20,
    #features .row.padding-bottom20 {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 20px;
    }
    #features-copy .row.padding-bottom20 > [class*="col-"],
    #features .row.padding-bottom20 > [class*="col-"] {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    #features-copy .affa-feature-img,
    #features .affa-feature-img {
        aspect-ratio: auto;
        min-height: 0;
    }
    #features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)),
    #features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) {
        padding: 32px 22px;
    }
    #features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) h4,
    #features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) h4 {
        font-size: 20px;
        margin-bottom: 14px;
    }
    #features-copy .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) p,
    #features .row.padding-bottom20 > [class*="col-"] .affa-feature-img:not(:has(img)) p {
        font-size: 15px;
        line-height: 1.5;
    }
    #subscribe .bg-overlay {
        padding: 24px 0 !important;
    }
    #subscribe .container {
        max-width: 94% !important;
    }
    #subscribe .subscribe-split {
        border-radius: 10px;
    }
    #subscribe .subscribe-info-panel {
        padding: 24px 18px;
    }
    #subscribe .subscribe-info-panel h2 {
        font-size: 34px;
        line-height: 1.08;
    }
    #subscribe .subscribe-info-panel .subscribe-lead {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    #subscribe .subscribe-points {
        gap: 12px;
    }
    #subscribe .subscribe-points li {
        flex: 1 1 100%;
    }
    #subscribe .header-form {
        margin: 0 auto 18px !important;
        max-width: 100%;
        box-shadow: none;
    }
    #footer.default-footer {
        padding: 0 !important;
    }
    #footer.default-footer .footer-cta-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding: 16px;
    }
    #footer.default-footer .footer-cta-card:after {
        display: none;
    }
    #footer.default-footer .footer-cta-icon {
        flex: 0 0 72px;
        width: 72px;
        height: 72px;
    }
    #footer.default-footer .footer-cta-icon i {
        font-size: 28px;
    }
    #footer.default-footer .footer-cta-content h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }
    #footer.default-footer .footer-cta-content p {
        font-size: 16px;
        line-height: 1.25;
    }
    #footer.default-footer .footer-cta-action {
        margin-left: 0;
        width: 100%;
    }
    #footer.default-footer .footer-cta-action .btn-custom {
        width: 100%;
        min-width: 0;
        text-align: center;
        font-size: 18px;
    }
    .footer-main {
        padding: 32px 0 24px;
    }
    .footer-main-nav,
    .footer-main-contact {
        margin-bottom: 24px;
    }
    .footer-main-tagline,
    .footer-main-contact p {
        max-width: none;
    }
}
