:root {
    --light-gray-bg: #f3f3f3;
    --light-gray-bg-2: #d8d8d8;
    --gray-bg: #aeaeae;
    --gray-bg-2: #888888;
    --dark-gray-bg: #939393;
    --yellow-bg: #f8da3f;
    --blue-bg: #284dfa;
}

.row {
    --bs-gutter-x: 0.9375rem;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0.9375rem;
}


@media (min-width: 1300px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1280px;
    }
}

@media (min-width: 1420px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1415px;
    }
}

body {
    font-family: "Schibsted Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5em;
    color: #000000;
}

header {
    padding: 5px 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

header.bg {
    background-color: #000000;
}

header.sticky {
    position: fixed;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*.sticky-active main {
    padding-top: 84px;
}*/
nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

nav > ul > li {
    position: relative;
    padding: 25px 0;
}

nav > ul > li > a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    display: block;
}

.sticky nav > ul > li > a {
    color: #414141;
}

nav > ul > li.menu-item-has-children > a::after {
    content: url("../img/menu-down.svg");
    transition: all .3s ease-in-out;
    margin-left: 3px;
    display: inline-block;
}

.sticky nav > ul > li.menu-item-has-children > a::after {
    content: url("../img/menu-down-black.svg");
}

nav > ul > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

nav .sub-menu {
    position: absolute;
    top: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap; /* Prevents text wrapping */
    min-width: 150px;
    width: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

nav > ul > li:hover > .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

nav > ul .sub-menu > li {
    display: block;
    padding: 15px 20px 15px 10px;
    border-bottom: 1px solid #d9d9d9;
    position: relative;
    counter-increment: menu-counter;
}

nav > ul .sub-menu > li > a {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
    color: #000000;
    text-decoration: none;
}

nav > ul .sub-menu > li::before {
    content: counter(menu-counter, decimal-leading-zero) " ";
    margin-right: 20px;
    font-size: 15px;
    width: 20px;
    display: inline-block;
}

nav > ul .sub-menu > li:hover,
nav > ul .sub-menu > li.current_page_item {
    background: rgba(217, 217, 217, 0.2);
}

nav > ul .sub-menu > li.current_page_item > a,
nav > ul .sub-menu > li:hover > a,
nav > ul .sub-menu > li.current_page_item::before,
nav > ul .sub-menu > li:hover::before {
    color: #30A7DE;
}

nav > ul .sub-menu > li:last-child {
    border-bottom: none;
}

.lang {
    text-align: right;
}

.lang a {
    text-transform: uppercase;
    color: #b4b4b4;
    font-size: 15px;
    font-weight: 500;
}

.header-logo .main {
    display: block;
}

.header-logo .sticky {
    display: none;
}

.sticky .header-logo .main {
    display: none;
}

.sticky .header-logo .sticky {
    display: block;
}

#home-slider {
    position: relative;
    overflow: hidden;
}

#home-slider img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

#home-slider .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76vh;
}

.slide-content {
    position: relative;
    padding-top: 37px;
}

.slide-title {
    font-weight: 500;
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0;
}

.slide-text {
    padding-top: 10px;
}

.slide-text p {
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    color: #ffffff;
}

.slide-gradient {
    opacity: 0.5;
    mix-blend-mode: multiply;
    background: linear-gradient(180deg, #FFFFFF 0%, #737373 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
}

#home-usluge {
    padding-top: 80px;
}

.section-title {
    font-weight: 500;
    font-size: 54px;
    line-height: 1em;
    letter-spacing: 0;
    margin-bottom: 50px;
}

.section-desc {
    margin-bottom: 0;
    line-height: 26px;
}

#home-usluge .section-desc {
    padding-bottom: 50px;
}

.service-box {
    position: relative;
    min-height: 387px;
    margin-bottom: 15px;
    overflow: hidden;
}


.service-box > a {
    display: block;
}

.service-box h4 {
    font-weight: 500;
    font-size: 36px;
    line-height: 34px;
    letter-spacing: 0;
    color: #ffffff;
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0;
}

.service-box.big h4 {
    font-size: 48px;
    line-height: 50px;
}

.service-box .num {
    font-size: 32px;
    line-height: 34px;
    color: #ffffff;
    position: absolute;
    top: 22px;
    left: 20px;
    z-index: 1;
}

.service-box.big .num {
    font-size: 48px;
    line-height: 34px;
}

.service-box .arrow {
    position: absolute;
    right: 30px;
    bottom: 30px;
    /*padding: 9px 9px 10px 8px;
    border: 1px solid #ffffff;
    */
    transition: all .3s ease-in-out;
}

.service-box .arrow img {
    max-width: 46px;
    display: block;
}

.service-box .arrow .hover {
    display: none;
}

.service-box:hover .default {
    display: none;
}

.service-box:hover .hover {
    display: block;
}

.service-box .service-cover {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
}

.service-box:hover .service-cover {
    transform: scale(1.1);
}

.service-box .gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48%;
    mix-blend-mode: multiply;
    background: linear-gradient(0deg, #13121B 0%, #FFFFFF 100%);
}

.light-gray-bg {
    background-color: var(--light-gray-bg);
}

.light-gray-bg-2 {
    background-color: var(--light-gray-bg-2);
}

.gray-bg {
    background-color: var(--gray-bg);
}

.gray-bg-2 {
    background-color: var(--gray-bg-2);
}

.dark-gray-bg {
    background-color: var(--dark-gray-bg);
}

.yellow-bg {
    background-color: var(--yellow-bg);
}

.blue-bg {
    background-color: var(--blue-bg);
}

#why-us {
    padding-top: 140px;
}

#why-us .section-title {
    margin-bottom: 50px;
}

.why-box {
    padding: 35px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 475px;
}

.why-box .icon {
    position: absolute;
    right: 30px;
    top: 25px;
}

.why-box h4 {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.1em;
    margin-bottom: 65px;
}

.why-box p {
    letter-spacing: -0.02em;
    margin: 0;
}

#aktuelno {
    padding-top: 130px;
}

#aktuelno .section-title {
    margin-bottom: 45px;
}

.slider-item {
    position: relative;
    padding: 10px 20px;
    height: 334px;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: end;
}

#aktuelno .slider-item {
    cursor: pointer;
    padding: 10px 20px;
}

.slick-slide {
    /*margin-right: 15px;*/
    padding: 0 7.5px;
}

.slick-list {
    /*margin-right: -15px;*/

}
.ampere-slider .slick-list {
    margin-right: 0;
}

.ampere-slider .slick-slide {
    margin-right: 0;
    padding-right: 7.5px;
    padding-left: 7.5px;
}
#aktuelno .slick-slide:not(:last-child) {
    margin-right: 15px;
}


#aktuelno .slider-item a {
    text-decoration: none;
}

.montaza-reg-sis .slick-slide img {
    display: block;
    height: 390px;
    width: 100%;
    object-fit: cover;
}

.slider-item h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2em;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
    z-index: 1;
    position: relative;
}

.slider-item .gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #000000 0%, #FFFFFF 100%);
    height: 127px;
    width: 100%;
    mix-blend-mode: multiply;
}

.slider-info {
    align-items: center;
    padding-top: 25px;
}

.slider-counter {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0;
    color: #929292;
}

.slider-nav {
    display: flex;
    justify-content: flex-end;
}

.slider-nav .prev {
    margin-right: 10px;
}

#vizija {
    padding-top: 140px;
}

.vizija {
    font-size: 40px;
    line-height: 55px;
    letter-spacing: -0.04em;
    color: #284dfa;
    padding-left: 6%;
}

#clients {
    padding-top: 140px;
}

#clients .section-title {
    margin-bottom: 50px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid #cbcbcb;
}

.client-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 233px;
    background: #fff;
    border-right: 1px solid #cbcbcb;
    border-bottom: 1px solid #cbcbcb;
}

@media screen and (min-width: 768px) {

    /* Remove right border on last column */
    .client-item:nth-child(6n) {
        border-right: none;
    }

    /* Remove bottom border on last row */
    .client-item:nth-last-child(-n+6) {
        border-bottom: none;
    }
}

.client-logo {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
}


#home-contact {
    padding-top: 120px;
    padding-bottom: 100px;
}

#home-contact h4 {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.33em;
    letter-spacing: 0;
    margin: 0;
}

.form-control {
    background-color: rgba(217, 217, 217, 0.3);
    border-radius: 0;
    border: none;
    padding: 10px;
}

input[type=submit] {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.01em;
    text-align: center;
    padding: 8px 32px;
    background: #000000;
    border: none;
    border-radius: 0;
}

footer {
    background-color: #000000;
    padding: 50px 0 0;
}

.footer-text {
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 0;
    color: #414141;
}

footer h5 {
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    margin-bottom: 26px;
    color: #ffffff;
}

.footer-info p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: #a4a4a4;
    margin-bottom: 25px;
}

.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.footer-info ul li {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    margin-bottom: 0;
}

.footer-info ul li a {
    color: #a4a4a4;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
}

.social ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.social ul li {
    margin-right: 18px;
}

.bottom-row {
    padding-bottom: 1rem;
}

footer hr {
    border-top-color: #ffffff;
    opacity: 0.5;
    margin: 1rem 0 2rem;
}

footer .copy,
.footer-bottom-link {
    font-size: 14px;
    line-height: 22px;
    color: rgba(164, 164, 164, 0.8);
    text-decoration: none;
}

.text-gray {
    color: #a4a4a4;
}

.contact-page {
    padding-top: 102px;
}

.breadcrumbs {
    font-size: 14px;
    line-height: 1em;
    letter-spacing: -0.03em;
    color: #000000;
}

.breadcrumbs a {
    color: #000000;
    text-decoration: none;
}

.breadcrumbs .current {
    color: #30a7de;
}

#all-contact {
    padding-top: 95px;
    padding-bottom: 80px;
}

#all-contact h1 {
    font-weight: 500;
    font-size: 54px;
    line-height: 1em;
    letter-spacing: 0;
    margin-bottom: 2rem;
}

.map iframe {
    width: 100%;
    margin-top: 3rem;
}

.contact-form {
    margin-top: 20px;
}

.contact-form .form-control {
    background-color: #ffffff;
    border: 1px solid #929292;
}

.cblock {
    margin-bottom: 40px;
}

.cblock h4 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.33em;
    letter-spacing: 0;
    color: #929292;
    margin-bottom: 18px;
}

.cblock p {
    margin-bottom: 18px;
}

#cover {
    padding-top: 90px;
    min-height: 650px;
    position: relative;
}

#cover .breadcrumbs {
    position: relative;
    z-index: 1;
}

#cover .breadcrumbs,
#cover .breadcrumbs a {
    color: #ffffff;
}

#cover .gradient {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(19, 18, 27, 0.75) 82.77%);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cover-content {
    margin-top: 90px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.cover-content .num {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
}

.cover-content h1 {
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0;
}

.cover-content h2 {
    font-weight: 500;
    font-size: 54px;
    line-height: 1em;
    letter-spacing: -0.04em;
    margin-bottom: 33px;
}

.cover-content p {
    line-height: 28px;
    letter-spacing: -0.04em;
    margin-bottom: 43px;
}

.cover-content a {
    font-weight: 500;
    font-size: 21px;
    line-height: 1em;
    letter-spacing: -0.04em;
    padding: 11px 38px 12px;
    border: 1px solid #ffffff;
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.cover-content a:hover {
    background-color: #ffffff;
    color: #000000;
}

#pristup {
    padding-top: 120px;
}

#pristup .section-title {
    margin-bottom: 70px;
}

.pbox {
    padding: 30px;
}

.pbox .num {
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;
    display: block;
    color: #30A7DE;
}

.pbox .border {
    margin: 30px 0 32px;
    display: block;
    width: 14px;
    height: 3px;
    background-color: #30A7DE;
    border: none !important;
}

.pbox h4 {
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;
    margin-bottom: 60px;
    min-height: 80px;
}

.pbox p {
    font-size: 21px;
    line-height: 28px;
    letter-spacing: -0.01em;
    color: #929292;
}

#regali {
    padding-top: 120px;
}

#regali .section-title {
    margin-bottom: 70px;
}

.grey-bigger {
    font-size: 18px;
    line-height: 1.33em;
    color: #a4a4a4;
}

#regali .num-bullets {
    margin-top: 60px;
}

.num-bullet {
    border-top: 1px solid #b4b4b4;
}

.num-bullet:last-child {
    border-bottom: 1px solid #b4b4b4;
}

.num-bullets .row {
    padding-top: 43px;
    padding-bottom: 40px;
    align-items: center;
}


.num-bullets .num {
    font-size: 70px;
    line-height: 60px;
}

.num-bullets h5 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.33em;
    margin: 0;
}

.regali .why-box,
.hor-vert .why-box {
    min-height: 457px;
}

#resenja {
    padding-top: 130px;
    padding-bottom: 140px;
}

#resenja .section-title {
    margin-bottom: 70px;
}

#resenja p {
    color: #929292;
    font-size: 21px;
    line-height: 40px;
}

#resenja h5 {
    font-weight: 400;
    font-size: 36px;
    line-height: 1.33em;
    margin: 0;
}

.w-med {
    font-weight: 500;
}

#contact-cta {
    padding-top: 135px;
    padding-bottom: 125px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

#contact-cta.regali {
    background: url("../img/regali-kontakt.webp") no-repeat center;
    background-size: cover;
}

#contact-cta.hor-vert {
    background: url("../img/hor-vert-kontakt.webp") no-repeat center;
    background-size: cover;
}

#contact-cta.brav-rad {
    background: url("../img/bravarski-radovi-cta.webp") no-repeat center;
    background-size: cover;
    margin-top: -150px;
    z-index: 0;
    padding-top: 270px;
    padding-bottom: 125px;
}

#contact-cta.mas-obr {
    background: url("../img/masinska-obrada-cta.webp") no-repeat center;
    background-size: cover;
    margin-top: -150px;
    z-index: 0;
    padding-top: 250px;
    padding-bottom: 105px;
}

#contact-cta.mont-reg {
    background: url("../img/montaza-reg-sistema-cta.webp") no-repeat center;
    background-size: cover;
    margin-top: -150px;
    z-index: 0;
    padding-top: 250px;
    padding-bottom: 105px;
}

#contact-cta.prof-gate {
    background: url("../img/profilgate-cta.webp") no-repeat center;
    background-size: cover;
    margin-top: -150px;
    z-index: 0;
    padding-top: 250px;
    padding-bottom: 105px;
}

#contact-cta.about-cta {
    background: url("../img/o-nama-imal-cta.webp") no-repeat center;
    background-size: cover;
    margin-top: -150px;
    z-index: 0;
    padding-top: 260px;
    padding-bottom: 105px;
}

#contact-cta .cta-content {
    z-index: 1;
    position: relative;
}

#contact-cta h4 {
    font-weight: 500;
    font-size: 54px;
    line-height: 54px;
    margin-bottom: 35px;
}

#contact-cta p {
    margin-bottom: 23px;
}

#contact-cta.mas-obr p,
#contact-cta.mont-reg p {
    margin-bottom: 40px;
}

#contact-cta.about-cta p {
    margin-bottom: 65px;
}

#contact-cta a {
    font-weight: 500;
    font-size: 18px;
    line-height: 1em;
    letter-spacing: -0.04em;
    padding: 13px 30px;
    border: 1px solid #ffffff;
    display: block;
    margin: 0 auto;
    width: 194px;
    color: #ffffff;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

#contact-cta a:hover {
    background-color: #d9d9d9;
    color: #000000;
}

#contact-cta .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    mix-blend-mode: multiply;
}

#contact-cta .gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #636363 100%);
    mix-blend-mode: multiply;
    position: absolute;
    width: 100%;
    height: 58%;
    bottom: 0;
    left: 0;
}

#offer {
    padding-top: 90px;
}
#offer.regali-offer {
    padding-top: 120px;
}
#offer .section-title {
    margin-bottom: 85px;
}

.offer-block {
    margin-bottom: 110px;
}

.offer-slider {
    margin-top: 60px;
}
.offer-slider.ampere-slider {
    margin-top: 0;
}

.offer-slider .slider-info {
    padding-top: 10px;
}

#why-us.hor-vert {
    padding-top: 0;
}

#prednosti-hor-vert {
    padding-top: 140px;
    padding-bottom: 140px;
}

#prednosti-hor-vert .section-title {
    margin-bottom: 50px;
}

.hor-vert-bullets .row {
    border-bottom: 1px solid #B4B4B4;
    padding-bottom: 19px;
    padding-top: 22px;
}

.hor-vert-bullets .row h5 {
    font-weight: 500;
    font-size: 36px;
    line-height: 34px;
    letter-spacing: 0;
    margin: 0;
}

.hor-vert-bullets .row h5 .num {
    display: inline-block;
    margin-right: 34px;
    font-weight: 400;
    color: #aaaaaa;
}

.hor-vert-bullets .row p {
    margin-bottom: 0;
}

#hor-vert-big-blue {
    padding-bottom: 140px;
}

#hor-vert-big-blue h4 {
    font-weight: 400;
    color: #284DFA;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.01em;
    margin: 0;
}

.offer-block h5 {
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;
    margin: 0;
}

.offer-block p {
    color: #7b7b7b;
    margin-bottom: 0;
}

.offer-products {
    margin-top: 100px;
}

.offer-block .op-title {
    margin-bottom: 30px;
}

.off-prod {
    position: relative;
    min-height: 387px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.off-prod img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.off-prod .title {
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
}

.off-prod .title h6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0;
}

.off-prod .title h6 span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}

.offer-text-cta {
    padding-top: 125px;
    padding-bottom: 30px;
}

.offer-text-cta p {
    color: #7b7b7b;
}

.offer-text-cta strong {
    font-weight: 600;
}

.offer-text-cta .bigger {
    font-size: 18px;
    line-height: 28px;
}

.btn {
    display: inline-block;
    background: #000000;
    padding: 13px 31px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1em;
    color: #ffffff;
    letter-spacing: -0.04em;
    border-radius: 0;
}

.btn:hover {
    border: 1px solid #000000;
}

.offer-text-cta .btn {
    margin-top: 40px;
}

.bravarski-radovi #why-us,
.masinska-obrada #why-us,
.montaza-reg-sis #why-us,
.profilgate #gde-se-koristi-pg,
.about #why-us {
    padding-top: 0;
    z-index: 1;
    position: relative;
}


.bravarski-radovi #why-us .why-box {
    padding: 30px 20px;
}

.bravarski-radovi #why-us .why-box h4 {
    min-height: 110px;
    margin-bottom: 50px;
}

.masinska-obrada #why-us .why-box p {
    min-height: 90px;
}

#why-us.hor-vert .why-box p {
    min-height: 75px;
}

.montaza-reg-sis #why-us .why-box {
    min-height: 340px;
}

.montaza-reg-sis #why-us .why-box h4 {
    margin-bottom: 0;
    min-height: 120px;
}

.about #why-us .why-box h4 {
    letter-spacing: -0.06em;
    min-height: 120px;
    margin-bottom: 50px;
}

.offer-num-bullets {
    margin-top: 60px;
}

.offer-num-bullets .bullet {
    border-bottom: 1px solid #B4B4B4;
}

.offer-num-bullets .bullet:first-child {
    border-top: 1px solid #B4B4B4;
}

.offer-num-bullets .row {
    align-items: center;
    padding: 32px 0;
}

.offer-num-bullets .num {
    font-size: 70px;
    line-height: 32px;
    letter-spacing: 0;
    display: block;
}

.offer-num-bullets h5 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    margin: 0;
}

.off-block-prod-row {
    border-bottom: 1px solid #B4B4B4;
    padding-bottom: 25px;
    padding-top: 25px;
}

.off-block-prod-row ul {
    margin: 0;
    padding-left: 10px;
}

.off-block-prod-row .title {
    display: flex;
}

.off-block-prod-row .num {
    color: #aaaaaa;
    font-size: 36px;
    line-height: 34px;
    margin-right: 26px;
    width: 31px;
}

.off-block-prod-row h4 {
    font-weight: 500;
    font-size: 36px;
    line-height: 34px;
    margin: 0;
}

.gray-box {
    margin-bottom: 15px;
    position: relative;
    padding: 35px 20px 70px;
}

.gray-box .num {
    font-weight: 500;
    font-size: 36px;
    line-height: 36px;
    display: block;
    margin-bottom: 28px;
}

.gray-box h4 {
    font-weight: 500;
    font-size: 36px;
    line-height: 34px;
    min-height: 70px;
    margin-bottom: 119px;
}

.gray-box p {
    margin: 0;
    min-height: 75px;
    font-weight: 500;
}

#why-prod {
    margin-top: 125px;
    padding-bottom: 140px;
}

#why-prod p {
    font-size: 18px;
    line-height: 32px;
    margin: 0;
    color: #939393;
}

#why-prod .text-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 50px;
}

.blue-lead {
    margin-bottom: 90px;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.01em;
    color: #284DFA;
}

#how-profilgate-works {
    padding-bottom: 125px;
}

#how-profilgate-works .pbox {
    margin-bottom: 15px;
}

#how-profilgate-works .pbox p {
    margin-top: 190px;
}

#prednosti-pg .section-title {
    margin-bottom: 33px;
}

.pred-pg {
    padding: 35px 0;
    border-bottom: 1px solid #B4B4B4;
}

.pred-pg .num {
    display: block;
    font-size: 36px;
    line-height: 34px;
    color: #aaaaaa;
}

.pred-pg h4 {
    font-weight: 500;
    font-size: 36px;
    line-height: 35px;
    margin: 0;
}

.pred-pg p {
    margin: 0;
}

.profilgate #why-us .why-box {
    min-height: 457px;
}

#gde-se-koristi-pg {
    margin-top: 140px;
}

#gde-se-koristi-pg .section-title {
    margin-bottom: 80px;
}

#gde-se-koristi-pg .above-gray-boxes {
    margin-bottom: 25px;
    color: #929292;
    font-size: 18px;
    line-height: 22px;
}

#gde-se-koristi-pg .gray-box {
    padding-bottom: 30px;
}

#gde-se-koristi-pg .gray-box h4 {
    margin-bottom: 173px;
}

#gde-se-koristi-pg .gray-box p {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    min-height: 60px;
}

.about #cover h1 {
    font-size: 64px;
    line-height: 58px;
    letter-spacing: -0.04em;
}

.about .cover-content {
    margin-top: 170px;
}

#o-nama {
    padding-top: 80px;
}

#o-nama .about-row {
    margin-bottom: 120px;
}

#o-nama .about-row .section-title {
    margin: 0;
    letter-spacing: -0.02em;
}

#o-nama .about-row .text {
    display: flex;
    align-items: center;
}

#o-nama .about-row .text p {
    margin: 0;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -0.05em;
    color: #7b7b7b;
}

#o-nama .about-row .double-ls {
    letter-spacing: -0.04em;
}

.about #cover .cover-text p {
    letter-spacing: 0;
}

#all-contact .wp-block-column a {
    color: inherit;
}
footer .footer-info a {
	color: inherit;
	text-decoration: none;
}
.wp-block-gallery img {
    width: 100%;
    height: auto;
    margin: 20px 0;
}