:root {
    --brand-red: #ce202e;
    --light-gray: #ECECEC;
    --black: #000;
    --font-main: 'Roboto Condensed', sans-serif;
}

* {
    font-family: var(--font-main);

    /* box-sizing: 0 1rem */
}

img {
  width:100%;
}

h1,
h2,
h3,
h4,
h5,
p {
    font-family: Roboto Condensed;
}

body {
    overflow-x: hidden;
    margin: 0;
}

.w-33 {
    width: 33vw;
}

.w-66 {
    width: 66vw;
}

.s-section-vozila-container .icon {
    max-height: calc(100px + 3vw) !important;
}

.s-section-vozila-container {
    padding-bottom: calc(3vw + 20px);
    padding-top: calc(2vw + 20px);
}

.s-section-ekipa-container .flex-container {
    text-align: right;
    display: flex;
    max-width: 50vw;
}

.s-section-vozila-container .flex-container {
    text-align: right;
    display: flex;
}


.s-section-ekipa-container .flex-container .item-1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.s-section-ekipa-container .flex-container .item-2 {
    flex: 2;
    align-content: end;
 
}

.s-section-vozila-container .flex-container .item-3 {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.s-section-vozila-container .flex-container .item-4 {
    flex: 2;
    align-content: end;
    padding-left: 20px;
}



.s-section-ekipa .e-title--heading {
    max-width: max(80vw,1000px);
    margin-top: 4rem;
    text-align: right;
}

.s-section-ekipa .e-text--emphasized--primary {
    text-align: center;
}

.s-section-ekipa-container .s-section-banner-left {
    object-fit: contain;
}

.s-section-vozila-container .s-section-banner-left {
    object-fit: contain;
    width: 100%;
    max-width: 45vw;
    padding: 0;
}

.s-section-ekipa-container,
.s-section-vozila-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s-section-ekipa .icon {
    width: 100%;
    object-fit: fill;
    height: calc(100px + 3vw);
    max-height: calc(70px + 3vw) !important;
}

/* BS slider */
.thumbnail-indicators {
    position: relative;
    bottom: -25px;
    margin-bottom: 45px !important;
    display: flex;
    width: 100%;
    gap: 12px;
    margin: 0;
    padding: 0 3rem;
    z-index: 5;
    justify-content: center;
}

.thumbnail-indicators button {
    width: 20vw;
    height: 100%;
    border: none;
    padding: 0;
    background: transparent;
    opacity: 0.8;
    transition: all 0.3s ease;
    overflow: hidden;
}

.thumbnail-indicators button {
    filter: grayscale(100%);
}

.s-section .thumbnail-indicators button.active {
    filter: grayscale(0%) !important;
}

.thumbnail-indicators button img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-indicators button.active {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-indicators button:hover {
    opacity: 1;
}

/* Typography */
.e-text--constrained {
    max-width: 75%;
    padding-left: 10px;
}

.e-text {
    font-size: 1.1rem;
    z-index: 2;
    color: black;
}

.e-text--large {
    font-size: 1.3rem;
}

.e-title--heading,
.e-title--subheading,
.e-title--accent {
    max-width: 100%;
    color: var(--light-gray);
}

.e-title--heading {
    line-height: 100%;
    font-size: clamp(2rem, 2rem + 4vw, 7rem);
    font-weight: 800;
    margin: auto;
}

.e-title--subheading {
    text-align: center;
    font-size: clamp(2rem, 2rem + 5vw, 8rem);
    font-weight: 900;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.e-title--accent {
    line-height: 100%;
    font-size: clamp(2rem, 2rem + 5vw, 8rem);
    font-weight: 900;
    width: 100%;
}

.e-subtitle {
    width: 75%;
    margin: auto;
    font-size: 1.2rem;
}

.e-subtitle--small {
    font-size: clamp(0.9rem, 0.9rem + 0.4vw, 1.1rem);
}

.s-intro {
    text-align: center;
    padding: 0 20px;
}

.s-intro .e-text {
    padding-top: 10px;
    padding-bottom: 10px;
}

.s-intro .e-title--heading {
    margin: auto;
}

/* Grids */
.g-grid,
.g-list {
    max-width: max(55vw, 700px);
    display: grid;
    width: 100%;
    margin: 0 auto;
}

.g-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(2vw + 10px);
}

.g-list {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(7vw + 20px);
}

.g-item--grid,
.g-item--list {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Icons */
.e-icon--grid {
    width: 33%;
}

/* Layout Components */
.c-hero {
    display: block;
    width: 100%;
}

.c-hero__wrapper {
    position: relative;
}

.c-hero__image {
    object-fit: cover;
    object-position: center bottom;
    width: 100%;
    min-height: 600px;
    max-height: 100vh;
}

.c-hero__title {
    line-height: 115%;
    color: #ffffff;
    font-size: clamp(1rem, 1rem + 3vw, 5rem);
    font-weight: 800;
    padding: 10px 50vw 10px 5vw;
    position: absolute;
    top: 10%;
    text-align: center;
    text-shadow: 0 0 5px rgba(0,0,0,0.33);
}

.c-topbanner__text {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    color: white;
    width: 100%;
    max-width: max(400px, 33vw) !important;
}

.c-topbanner__text h1 {
    font-size: clamp(1.75rem, 1.75rem + 6vw, 8rem);
    font-weight: 700;
    line-height: 1;
}

.c-topbanner__text p {
    font-size: clamp(0.9rem, 0.9rem + 0.6vw, 1.5rem);
    font-weight: 300;
    line-height: 1.3;
}

.c-topbanner__text2 {
    position: absolute;
    text-align: right;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    color: white;
    width: 100%;
    max-width: max(280px, 33vw) !important;
}

.c-topbanner__text2 h2 {
    font-size: clamp(1rem, 1rem + 2.25vw, 5rem);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0,0,0,0.33);
    line-height: 1.1;
}

.c-topbanner__image {
    object-fit: fill;
    width: 100%;
}

.c-topbanner__title {
    line-height: 125%;
    color: #ffffff;
    font-size: clamp(1rem, 1rem + 3vw, 5rem);
    font-weight: 800;
    padding-left: 10vw;
    position: absolute;
    top: 33%;
    text-align: center;
    transform: translateY(-50%);
}

.afterhero {
    margin: clamp(2rem, 2rem + 2vw, 6rem) 0px;
}

.c-hero__content {
    display: flex;
    gap: 15px;
    margin: auto;
    padding-bottom: 1rem;
    align-items: center;
}

.c-hero__content--left,
.c-hero__content--right {
    min-height: 100px;
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
}

.c-hero__content--left {
    align-items: end;
    justify-content: flex-end;
}

.s-about {
    min-height: 100px;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
}

.s-about p {
    max-width: 100%;
}

.c-hero__image--portrait {
    width: 100%;
    object-fit: contain;
}

/* Sections */
.section-zaposlitev {
    padding: 0 2rem;
    max-width: max(1000px, 75vw);
    margin: auto;
}

.e-text--hero {
    font-size: clamp(1.35rem, 1.35rem + 2vw, 3rem);
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    line-height: 0.3;
    padding: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

.s-section,
.s-listing {
    margin-bottom: calc(3vw + 20px);
    width: 100%;
}

.col-sm-12.col-lg-4 {
    text-align: center;
}

/* Buttons */
.e-button--hero,
.e-button--hero-mobile,
.e-button--primary,
.e-button--cta {
    background-color: var(--brand-red);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: clamp(0.8rem, 0.8rem + 0.8vw, 1.5rem);
    font-weight: 600;
    padding: 15px calc(25px + 1.5vw);
    z-index: 10;
}

.e-button--cta {
    margin: 0 auto;
    display: block;
}

.c-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 10%;
    bottom: 25%;
    gap: 15px;
}

.e-button--primary {
    width: fit-content;
    margin-top: 10px;
}

.c-button-wrapper {
    margin: auto;
    text-align: center;
}

/* Emphasized text */
.e-text--emphasized--accent,
.e-text--emphasized--primary {
    margin-bottom: 5px;
    margin-top: 10px;
    font-weight: 800;
    font-size: clamp(1.2rem, 1.2rem + 1vw, 1.8rem);
}

.e-text--emphasized--accent {
    color: var(--brand-red);
}

.e-text--emphasized--primary {
    line-height: 1.2;
    color: var(--black);
}

/* Images & Containers */
.c-image-container {
    margin-left: 0;
    text-align: left;
    margin-top: calc(25px + 5vw);
}

.s-vehicles {
    margin-top: -3vw;
    position: static;
}

.s-vehicles .e-text {
    margin-bottom: calc(1rem + 2vw);
    text-align: center;
    padding: 0 20px;
}

.s-careers {
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: 1400px;
}

.s-careers__actions {
    align-content: end;
    text-align: right;
}

.s-careers__actions .e-button--primary {
    margin: 0;
}

/* Contact Info */
.c-contact--telephone,
.c-contact--location,
.c-contact--email,
.c-contact--facebook,
.c-contact--instagram,
.c-contact--linkedin {
    justify-content: center;
    display: flex;
    padding-bottom: 1.5rem !important;
}

.c-contact--telephone {
    margin-top: 1rem;
}

.c-contact--email,
.c-contact--location {
    justify-content: center;
}

.c-contact--facebook,
.c-contact--instagram,
.c-contact--linkedin {
    justify-content: right;
    align-items: center;
}

.c-contact__email {
    display: flex;
    align-items: center;
    color:black;
}

.c-contact--email a, 
.c-contact--email a:hover, 
.c-contact--email a:focus, 
.c-contact--email a:active {
  color:black !important;
}

.telephone-numbers a, 
.telephone-numbers a:hover, 
.telephone-numbers a:focus, 
.telephone-numbers a:active {
  color:black !important;
}

.c-contact--facebook a, .c-contact--facebook a:hover, .c-contact--facebook a:focus, .c-contact--facebook a:active,
.c-contact--linkedin a, .c-contact--linkedin a:hover, .c-contact--linkedin a:focus, .c-contact--linkedin a:active, 
.c-contact--instagram a, .c-contact--instagram a:hover, .c-contact--instagram a:focus, .c-contact--instagram a:active {
color:black !important;
}

.c-contact__wrapper {
    max-width: fit-content;
    text-align: left;
    justify-items: left;
}

.l-column--center {
    padding: 1.5rem 0 3rem 0;
}

/* Utilities */
.u-margin-auto {
    margin: auto;
}

/* Column alignments */
.l-column--center {
    align-content: end;
    text-align: center;
}

.l-column--left {
    text-align: left;
}

.l-column--right {
    text-align: right;
    justify-items: end;
}

.zaposlitev-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========== MEDIA QUERIES ========== */
@media (max-width:991px){
    .s-section-ekipa .e-title--heading {
        text-align: center !important;
    }

    .s-section-ekipa-container .s-section-banner-left {
        object-fit: contain;
        width: 100%;
        max-width: 90vw;
    }

    .s-section-vozila-container .s-section-banner-left {
        flex-direction: row-reverse;
        object-fit: contain;
        width: 100%;
        max-width: 90vw;
    }

    .s-section-vozila-container .flex-container {
        text-align: center !important;
    }

    .flex-container .item-2 {
        text-align: center;
        flex: 1;
    }

    .flex-container {
        margin: auto;
        max-width: 600px !important;
    }
}

/* Mobile: max-width 767px */
@media (max-width: 767px) {
    .c-topbanner__text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 7%;
        text-align: center;
        line-height: 1.2;
        text-shadow: 0 0 5px rgba(0,0,0,0.33);
    }

    .c-topbanner__text2 {
        text-align: center;
        position: absolute;
        left: 50%;
        top: 85%;
        transform: translateY(-50%) translateX(-50%);
    }

    .flex-container {
        flex-direction: column !important;
        text-align: center;
    }

    .l-column--right .e-text--large {
        text-align: center;
    }

    .social-media-wrapper {
        flex-direction: row !important;
        display: flex;
        margin: auto;
    }

    .c-contact--facebook .facebook,
    .c-contact--instagram .instagram,
    .c-contact--linkedin .linkedin {
        display: none;
    }

    .l-column--left {
        margin: auto !important;
    }

    .c-contact__wrapper {
        margin: auto;
    }

    .s-vehicles .e-title--heading {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .g-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
        column-gap: 0;
        padding: 10px;
    }

    .g-list {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 30px;
        column-gap: 0;
        padding: 10px;
    }

    .e-icon--grid,
    .e-icon--list {
        width: 50% !important;
    }

    .c-hero__title {
        font-size: clamp(1rem, 1rem + 5vw, 5rem);
        text-align: center;
        padding: 0 5vw;
        width: 100%;
        top: 8%;
        line-height: 1.15;
    }

    .c-hero__content {
        flex-direction: column;
    }

    .c-hero__content--left,
    .c-hero__content--right {
        width: 100%;
    }

    .c-hero__content--left {
        justify-content: center;
        margin: auto;
    }

    .e-text--constrained,
    .e-text--accent,
    .e-text--emphasized--accent,
    .e-title--heading {
        max-width: 100%;
    }

    .e-title--heading {
        text-align: center;
    }

    .s-section {
        margin: 30px 0 40px 0;
    }

    .c-hero__actions {
        display: none;
    }

    .e-button--hero-mobile,
    .e-button--hero {
        font-size: 17px;
        width: 280px;
    }

    .section-kdo-smo .mega-title {
        display: none !important;
    }

    .hero-buttons-mobile {
        text-align: center;
        gap: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0px;
        margin-bottom: 50px;
    }

    .zaposlitev-wrapper .btn-background {
        height: 100%;
        width: 50%;
    }

    .zaposlitev-wrapper {
        text-align: center;
        margin: auto;
    }

    .image {
        width: 100vw;
        margin-bottom: 10px;
    }

    .section-storitve .mega-subtitle {
        padding-left: 20px;
        margin-bottom: -20px;
    }

    .kdo-smo-text {
        padding: 0 20px;
        text-align: center;
        width: 100%;
    }

    .kdo-smo-image {
        width: 100%;
        padding: 0 20px 10px 20px;
    }

    .mega-subtitle {
        width: 100%;
    }
}

/* Tablet and up: min-width 768px */
@media (min-width: 768px) {
    .s-section-ekipa-container .flex-container .item-1, 
    .s-section-ekipa-container .flex-container .item-2, 
    .s-section-vozila-container .flex-container .item-3, 
    .s-section-vozila-container .flex-container .item-4 {
       text-align: left !important;
    }

    .contact-info .e-title--heading {
        margin-right: 0 !important;
    }

    .s-vehicles .e-title--right {
        transform: translate(calc(33vw - 200px), calc(-30px - 5vw));
        width: 600px;
        text-align: right;
    }

    .center-column {
        align-content: end;
        text-align: center;
    }

    .left-column {
        text-align: left;
    }

    .right-column {
        text-align: right;
    }

    .nasa-vozila-ikone {
        width: 66%;
    }

    .kdo-smo-image {
        width: clamp(400px, 400px + 5vw, 800px);
        padding: 1.5rem;
    }

    .kdo-smo-text {
        max-width: 40vw;
        width: 100%;
        padding-right: 1.5rem;
    }

    .zaposlitev-wrapper {
        padding-right: 2rem !important;
    }

    .zaposlitev-wrapper .btn-background {
        height: 100%;
        width: 50%;
    }

    .image {
        width: 66vw;
    }

    .section-nasa-vozila .wrapper {
        margin-top: calc(-15vw - 70px);
    }

    .mega-title-right {
        padding-right: 1rem;
        position: static;
        align-items: right;
        justify-items: right;
        text-align: right;
    }

    .mega-title-right .text {
        max-width: 320px;
        margin-right: 15vw;
    }
}


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

    .s-section-vozila-container .flex-container {
        flex-direction: row-reverse;
        padding: 0 35px;
    }

    .facebook-info,
    .instagram-info,
    .linkedin-info {
        justify-content: center !important;
    }

    .center-column,
    .left-column,
    .right-column {
        text-align: center;
    }

    .contact-info-wrapper {
        margin: auto;
    }
}

@media only screen and (max-width:767px) {
  .image {
    width: 85vw;
  }

    .c-hero__image--portrait {
        margin: auto;
        max-width: 400px;
    }
}

.gallery-carousel {
    max-width: max(50vw, 1000px);
    justify-items: center;
    margin: auto;
}

.c-vehicles-text {
    padding: 0 1rem;
}

/* O nas */
.s-section-o-podjetju {
    max-width: max(700px, 80vw);
}

.s-section-digitalizacija-podpora {
    max-width: max(1000px, 80vw);
    margin: auto;
}

@media (min-width:1200px) {
    .s-section-o-podjetju {
        margin: calc(-100px - 10vw) auto auto auto !important;
    }
}

@media (min-width:768px) {
    .s-section-o-podjetju {
        margin: calc(-100px - 5vw) auto auto auto;
    }

    .c-topbanner__title__o-nas {
        font-size: clamp(3em, 3rem + 5vw, 10rem) !important;
        padding-left: 7vw !important;
        top: 35% !important;
        font-weight: 800;
        text-shadow: 0 0 12px rgba(0,0,0,0.75);
    }

    .c-topbanner__subtitle {
        font-size: clamp(1em, 1rem + 1vw, 1rem) !important;
        top: 40% !important;
        left: 0;
        z-index: 123;
        position: absolute;
        color: white;
    }

    .s-section-nasa-zgodba .e-text-container {
        text-align: center;
        margin: auto;
        max-width: max(50vw, 600px);
    }
}

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

    .c-topbanner__title__o-nas {
        font-size: clamp(2rem, 2rem + 8vw, 10rem) !important;
        top: 15% !important;
        text-shadow: 0px 0px 8px #000;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .s-section-nasa-zgodba .e-text-container {
        text-align: center;
        margin: auto;
        max-width: max(75vw, 300px);
    }
}

.s-section-nasa-zgodba .e-title--heading {
    text-align: center;
}

.s-section-nasa-zgodba .e-text::before {
    content: attr(data-text);
    position: absolute;
    z-index: -1;
    color: #ffffff;
    -webkit-text-stroke: 30px #ffffff;
    width: 100%;
    left: 0%;
    filter: blur(2px);
}

.background-container {
    background: url("../images/mauri/nasa-zgodba-bg.svg");
    background-repeat: repeat-y;
    background-size: contain;
}

@media (min-width:768px) {
    .background-container {
        background-repeat: no-repeat;
        background-size: max(66vw, 777px) 100%;
        background-position-x: center;
    }

    .s-section-storitve .text {
        text-align: left;
    }
}

.s-section-digitalizacija-podpora .e-title--heading {
    max-width: max(45w, 700px);
    margin: unset;
}

.o-nas-logos img {
    width: 75%;
    max-width: 450px;
    object-fit: contain;
}

.o-nas-logos {
    display: flex;
    justify-content: center;
}

.s-section-nasa-vizija {
    max-width: max(50vw, 750px);
    margin: auto;
}

.s-section-storitve {
    background: #ECECEC;
    max-width: max(66vw, 700px);
    padding: 0 20px;
    margin: auto;
    border-radius: 15px;
}

.s-section-storitve h2 {
    font-size: clamp(1.75rem, 1.75rem + 1vw, 2.25rem);
    line-height: 1;
}

.s-section-storitve h3 {
    font-size: clamp(1.1rem, 1.1rem + 0.5vw, 1.5rem);
}

.s-section-storitve img {
    max-width: 170px;
    padding-left: 15px;
    padding-bottom: 10px;
    margin: auto;
}



#sp-header.header-with-modal-menu a {
  color: black !important;
}
.burger-icon>span {
  background-color: #fff !important;
}

#sp-logo.has-border {
    padding: 0 !important;
}

#sp-header{
min-height:80px;
align-content: center;
}

#sp-header .logo {
    height: 0px;
}

#sp-logo {
  width:100%;
}

.logo-image {
  position:relative;
}


.com-sppagebuilder .body-innerwrapper{
    background: #333;
}

.com-sppagebuilder #sp-main-body {
    background: #fff;
    padding-bottom: 75px;
}


.burger-icon>span {
    height: 4px;
    margin: 6px 0;
}
.burger-icon {
    width: calc(30px + 2vw);
}

body.ltr #offcanvas-toggler.offcanvas-toggler-left {
    margin-right: 0;
}



@media (max-width:767px){
  .logo-image {
    height: 120px !important;
    top: 35px;
  }

  #sp-header .hamburger {
    padding:0 8px;
  }

  #sp-logo.has-border {
    text-align: center !important;
    position: absolute;
    z-index: -5;
  }
}

@media (min-width:768px) {
  .logo-image {
    height: 140px !important;
    top: 40px;
  }

  #sp-logo.has-border {
    text-align: right !important;
  }

  #sp-header .container-fluid {
    width: 85%;
  }
}

.footer-left-menu{
  text-align:center;
}

.footer-left-menu {
   margin-top: 40px;
}

.footer-left-menu ul>li {
  font-family: 'Roboto Condensed';
  line-height: 1.1;
  margin-bottom: 10px !important;
  font-size: 1.1rem;
  
}

.footer-left-menu .sp-module-content {
  margin: auto;
}

.footer-left-menu {
  padding-left:15px;
}

#sp-footer a, #sp-bottom a {
  color:#ECECEC;
}


#sp-bottom {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
  font-family: Roboto Condensed;
}

.footer-right-image img {
  margin-top: 50px;
  padding: 20px;
  max-width: 300px;
}

#sp-responsive-footer-image{
  background:#171717;
  padding:0 50px;
}

#sp-footer-menu {
  padding-right: 0;
  padding-left:10px;

}

#sp-footer1 {
  text-align:center;
}

@media (min-width:767px) {

.footer-left-menu .sp-module-content {
  width: 66%;
  padding-left:10px;
}

#sp-poslji-povprasevanje-hero .hero-text.c-hero__title {
  top: 25%;
}

#sp-galerija-hero-intro .hero-text.c-hero__title {
  top: 15%;
  padding: 10px 20vw 10px 5vw;
}


.footer-left-menu .sp-module-content {
  column-count: 2;
}
}

.footer-middle-logo p {
  margin:0 !important;
}

.footer-middle-logo .mod-menu {
  text-align:center;
}

.footer-middle-logo .mod-menu li {
  font-family:'Roboto';
  font-size: 1.1rem;
  line-height: 1.1;
  margin-bottom: 10px !important;
  color:#ECECEC;
}

#sp-poslji-povprasevanje-hero img, #sp-galerija-hero-intro img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 450px;
    max-height: 700px;
}


#sp-poslji-povprasevanje-hero .hero-text.c-hero__title {
  font-size: clamp(1.5rem, 1.5rem + 4vw, 6rem) !important;
  top: calc(10% + 3vw);
}

#sp-galerija-hero-intro .hero-text.c-hero__title {
  font-size: clamp(1.75rem, 1.75rem + 5vw, 6rem) !important;
  top: calc(10% + 2vw);
}

#sp-footer-right-image {
  margin-top:30px;
}


.footer-left-menu .link-pogoji-poslovanja, 
.footer-left-menu .link-poslji-povprasevanje, 
.footer-left-menu .link-poslji-prijavo,
.footer-left-menu .create-blog-post,
.footer-left-menu .gallery-upload
{
  display:none !important;
}

.mauri-galerija #sp-main-body {
  padding-top:50px;
}


.mauri-galerija .ig-main-scope-wrapper{
    max-width: 1280px;
    margin: auto;
    padding: 0 10px;
}

.layout-blog .article img {
  display:none;
}

.article-list .article .article-info {
    flex-direction: column;
    line-height: 1.2;
    text-align: right;
    height: 100%;
    position: absolute;
    right: 2%;
    display: flex;
    top: 0;
    justify-content: center;
}

.article-info>span {
    font-size: .9rem;
}


.article-list .article .article-header h2 a:hover,
.article-list .article .readmore a:hover, .article-list .article .readmore a:active, .article-list .article .readmore a:focus{
      color: var(--brand-red);
}

.article-introtext{
 line-height: 1.13;
 margin-right: calc(65px + 4vw);
}

.article-introtext .readmore {
  display: none;
}

.article-list .article .article-header h2 {
  margin-bottom: 0;
  font-size: clamp(0.9rem, 0.9rem + 0.33vw, 1.4rem);
  font-weight: 600;
  margin-right: calc(60px + 8vw);
  margin-bottom: 3px;
  line-height: 1.2;
}

.article-list .article {
  height: auto;
  border-radius: 10px;
  margin: auto;
  margin-bottom: 20px;
  padding: 12px 12px 2px 12px;
  background: #ECECEC;
  position: relative;
}

.article-body {
  margin-left:55px;
}


.article-listing-prefix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.article-listing-prefix::after {
  content:"";
  display:block;
  background: url("/images/mauri/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}

.article-info>span+span::before {
 display:none;
}

.article-info .published {
  font-weight:600;
}

.blog-latest-articles.view-category .infoblock-author {
  display:none;
}

.blog-latest-articles .blog-hero-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    color: white;
    width: 100%;
}

.com-content.view-category .blog-hero-text {
    left: 5%;
}


.com-content.view-category .blog-hero-text h1 {
  font-size: clamp(2rem, 2rem + 3vw, 4.5rem);
  font-weight: 700;
  line-height: 115%;
}

.blog-latest-articles .blog-hero img {
  min-height:300px;
  object-fit:cover;
}


@media (min-width:768px) {

  .blog-latest-articles .latest-posts-title.e-text--emphasized--accent {
    max-width: max(66vw, 767px);
    margin: auto;

  }

 .com-content.view-category .blog-hero-text {
    max-width:max(25vw, 767px);
  }
}


@media (max-width:767px) {
.com-content img.c-topbanner__image {
  max-height: 500px;
}

.article-body {
    margin-left: 35px;
}
.article-listing-prefix::after {
    width: 30px;
    height: 30px;
}


.latest-posts-title.e-text--emphasized--accent {
  padding:0 15px;
}

  .blog-latest-articles .blog-hero-text, 
  .blog-latest-articles .latest-posts-title.e-text--emphasized--accent {
	max-width:100%;
  }
 .blog-latest-articles .blog-hero {
    text-align:center;
  }
  .blog-latest-articles .blog-hero-text{
    left:0 !important;
  }
}

.blog-latest-articles #sp-main-body {
  padding-top:0;
}

.blog-latest-articles .mod-finder__search.input-group {
  float:right;
  justify-content: end;
}

.blog-latest-articles table {
  max-width:max(66vw, 767px);  
  margin: auto;
  border:none;
}

.blog-latest-articles table td {
   vertical-align: top;
}

.blog-latest-articles label.finder {
  text-align: right;
  width: 100%;
}

 .com-content.view-category .sp-module-content-top {
  display:none;
}

.blog-latest-articles .input-group .btn{
  border:0 !important;
  background-color: #ECECEC !important;
  padding-bottom: 0px;
  padding-top: 0px;
}

.btn-primary:hover, .sppb-btn-primary:hover{
  border:0 !important;
  background-color: #ECECEC !important;
}


.com-finder.view-search .com-finder__form .btn:hover{
  border:0 !important;
  background-color: #6d757d !important;
}


.awesomplete input {
  border:0;
  background: #ECECEC;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.awesomplete .form-control:focus {
  background: #ECECEC;
}

.icon-search:hover {
  color: var(--brand-red);
}

.icon-search {
  color: #999;
}


.mod-finder, .icon-search::before, .icon-search, .mod-finder .form-control {
  font-size: 0.75rem !important;
}

.mod-finder__search.input-group {
  flex-wrap: nowrap;
}

.introtext-searchbar {
    max-width: max(66vw, 767px);
    padding: 0 15px;
    margin: auto;
}

 .com-content.view-category .article-list {
   padding:0 15px;
   max-width: max(767px, 67vw);
   margin: auto;
}

.com-content.view-article .article-info {
  margin-bottom: 35px !important;
  flex-direction: column;
  display: flex;
  color: #777777;
}

.com-content.view-article .article-info, .view-article .sp-module-content-top, [itemprop="articleBody"] {
  padding:0 15px;
  max-width: max(767px, 67vw);
  margin: auto;
}

.com-content.view-article .infoblock-author-name{
  font-weight:600;
}

.com-content.view-category .infoblock-date-published {
  display: flex;
  flex-direction: column;
  max-width: 90px;
  hyphens: auto;
  font-size: 0.85rem;
}

.com-content.view-article .article-details .blog-hero-text {
  text-align: center;
}

.com-content.view-article .article-details .blog-hero-text h1,
.com-content.view-article .article-details .blog-hero-text h2,
.com-content.view-article .article-details .blog-hero-text h3,
.com-content.view-article .article-details .blog-hero-text h4,
.com-content.view-article .article-details .blog-hero-text p {
  font-size: clamp(1.25rem, 1.25rem + 2vw, 3rem);
  font-weight: 700;
  max-width: max(66vw, 767px);
  margin: auto auto 0 auto !important;
  line-height: 1.2;
}

.com-content.view-article .article-details .blog-hero-text h1 {
  color: var(--brand-red);
  font-size: clamp(1.5rem, 1.5rem + 2vw, 3rem) !important;
}

.com-content.view-article #hero-anchor {
   anchor-name: --hero-anchor;
}

.com-content.view-article .blog-post-searchbar {
    position: absolute;
    top: anchor(110%);
    left: anchor(68%);
    position-anchor: --hero-anchor;
    z-index: 123;
    transform: translateX(-10px)
}


.com-content.view-article .article-ratings-social-share .align-self-center {
  display:none;
}


.com-content.view-article .article-ratings-social-share {
  justify-self: center;
}


.article-social-share .social-share-icon ul li a {
    font-size: 1.75rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    width: 3rem;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);

}

.article-social-share .social-share-icon ul li a:hover, .article-social-share .social-share-icon ul li a:focus {
  color: var(--brand-red);
}

.socials-cta{
  margin-bottom: 10px;
  font-size: clamp(1rem, 1rem + 0.25vw, 1.1rem) !important;
  font-weight: 500;
  padding: 0 15px;
  text-align: center;
}

.article-social-share {
  float: none;
  text-align: center;
}

.sp-scroll-up:hover, .sp-scroll-up:active, .sp-scroll-up:focus {
    color: #fff;
    background: var(--brand-red);
}

.hero-section.o-nas .c-topbanner__image{
  min-height: 420px;
  object-fit: cover;
}



.feature h2 {
  font-size:2rem;
  line-height: 90%;
}

.feature .sppb-img-responsive {
min-width:200px;
}

.feature .clearfix,
.lahka-tovorna-vozila, 
.lahka-tovorna-vozila .sppb-addon-content,
.feature .spp-addon, 
.tezka-tovorna-vozila, 
.tezka-tovorna-vozila .sppb-addon-content,
.feature .addon-root-feature, 
.feature .sppb-addon-wrapper {
  height:100% !important;
}



.feature .sppb-row {
  row-gap:20px;
}

.posebnosti h3 {
  font-family: Roboto Condensed;
  font-size: 1.25rem;
  margin-bottom: 0;
  line-height: 1.2;
  font-weight: 700;
}

.posebnosti p {
  font-family: Roboto Condensed;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  font-size: 1rem;
}



.lahka-tovorna-vozila .sppb-addon-text { margin-bottom: 5rem; font-size: 1rem; }
.tezka-tovorna-vozila .sppb-addon-text { margin-bottom: 6rem; font-size: 1rem; }
.posebnosti .sppb-addon-title { margin-top: 3rem;}

@media (max-width:767px) {
   .lahka-tovorna-vozila .sppb-addon-text {

}
   .posebnosti .sppb-addon-title {
  padding-top: 4rem !important;
}
  #column-wrap-id-2760e7e9-573f-44c6-8cac-6fdbf0a52d1b {
    z-index: 100 !important;
  }
 .lahka-tovorna-vozila .sppb-feature-box-title{
   margin-top: 5rem;
 }
}

@media (max-width:767px) {
.feature .sppb-img-responsive { 
    transform: translateY(-20px);
  }
}

.coming-soon-login{
  display:none;
}
.coming-soon-logo {
  max-width: 500px;
}

.error-code, .coming-soon-number { color: #333;}

@media (max-width: 767px) {
    .ig-tags-button {
        height: 100%;
        line-height: 1.2;
        padding: 12px 8px;
    }
}


.ig-tags-button {
        width: 47%;
        margin: 5px;
    }
.ig-tags-button.ig-tag-show-all {
        width:96% !important;
    }


@media (max-width: 767px) {
    .ig-tags-button {
      width: 96%
    }
}


.btn-primary, .sppb-btn-primary {
  background-color: #6d757d;
}

.article-info .association{
  display:none !important;
}

.com-finder.view-search .com-finder__form, .com-finder.view-search .com-finder__results {
    max-width: max(55vw, 800px);
    margin: auto;
}

.com-finder.view-search .com-finder__form .btn {
    border: none !important;
}

.com-finder.view-search .com-finder__form .icon-search.icon-white:hover {
  color:#fff;
}

.com-finder.view-search .com-finder__form .icon-search.icon-white {
    color: #fff;
}

#ig_admin_table img {
  width: fit-content;
  margin: auto;
}

table#ig_admin_table th a {
  color: #666666;
}

#ig_admin_table .table_thumb_image {
  max-width: 170px;
}

td.ig_order input {
  width: 50px !important;
}

.offcanvas-menu .offcanvas-inner .sp-module:not(:last-child) {
    margin-right: 0;
}

.offcanvas-menu.border-menu .offcanvas-inner ul.menu>li>a, .offcanvas-menu.border-menu .offcanvas-inner ul.menu>li>.nav-header {
    padding: 15px 5px 15px 10px;
}