@media only screen and (min-width: 0rem) {
  #hero {
    background-color: #f3f8fd;
    padding: var(--sectionPadding);
  }
  #hero .cs-container {
    width: 100%;
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #hero .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #hero .cs-text {
    margin-bottom: 1rem;
  }
  #hero .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #hero .cs-list {
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }
  #hero .cs-li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.25rem;
  }
  #hero .cs-icon {
    width: 3rem;
    height: auto;
    display: block;
  }
  #hero .cs-h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    text-align: left;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #hero .cs-li-text {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #hero .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #hero .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #hero .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero .cs-image-group {
    font-size: min(2.235vw, 0.8em);
    width: 40.625em;
    height: 40.8125em;
    display: block;
    position: relative;
    z-index: 1;
  }
  #hero .cs-picture {
    position: absolute;
  }
  #hero .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #hero .cs-picture1 {
    width: 22.75em;
    height: 23.4375em;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #hero .cs-picture2 {
    width: 24.25em;
    height: 24.25em;
    bottom: 0;
    right: 0;
  }
  #hero .cs-graphic {
    width: 8.75em;
    height: auto;
    position: absolute;
    top: 5.9375em;
    right: 6.5625em;
  }
  #hero .cs-box {
    width: 100%;
    max-width: 10.625rem;
    padding: 1.5rem;
    box-sizing: border-box;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    z-index: 20;
    left: 6.375em;
    bottom: 4.9375em;
  }
  #hero .cs-number {
    font-size: clamp(1.25rem, 4vw, 2.4375rem);
    text-align: center;
    line-height: 1.2em;
    font-weight: 700;
    width: 100%;
    margin: 0 0 clamp(0.25rem, 1vw, 0.5rem);
    color: var(--bodyTextColorWhite);
    display: block;
  }
  #hero .cs-desc {
    font-size: clamp(0.75rem, 1.9vw, 1rem);
    text-align: center;
    line-height: 1.2em;
    font-weight: 700;
    width: 100%;
    max-width: 12ch;
    margin: 0;
    color: var(--bodyTextColorWhite);
    display: block;
  }
}
@media only screen and (min-width: 64rem) {
  #hero .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #hero .cs-image-group {
    font-size: min(1.2vw, 1em);
    flex: none;
  }
}
@media only screen and (min-width: 0rem) {
  #usluge {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #usluge .cs-container {
    gap: clamp(3rem, 6vw, 4rem);
    margin: auto;
    max-width: 80rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  #usluge .cs-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  #usluge .cs-title {
    margin: 0;
  }
  #usluge .cs-flex-group {
    display: flex;
    flex-direction: column;
  }
  #usluge .cs-card-group {
    display: grid;
    gap: 1rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  #usluge .cs-item {
    background-color: #f3f8fd;
    border: 1px solid transparent;
    border-radius: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: clamp(1.25rem, 3.2vw, 3rem);
    text-align: left;
    transition: background-color 0.3s;
    width: 100%;
  }
  #usluge .cs-item:hover {
    background-color: #e6f1fc;
    border: 1px solid var(--primary);
  }
  #usluge .cs-item:hover .cs-h3 {
    color: var(--primary);
  }
  #usluge .cs-item:hover .cs-icon {
    transform: rotateY(1turn) translateY(0);
  }
  #usluge .cs-picture {
    align-items: center;
    background-color: #fff;
    border-radius: 5rem;
    display: flex;
    height: 6.25rem;
    justify-content: center;
    margin: 0 0 2rem;
    position: relative;
    width: 6.25rem;
  }
  #usluge .cs-icon {
    display: block;
    height: auto;
    transition: transform 0.5s;
    width: 3.25rem;
  }
  #usluge .cs-h3 {
    color: var(--headerColor);
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
    line-height: 1.5em;
    text-align: inherit;
    transition: color 0.3s;
  }
  #usluge .cs-item-text {
    line-height: 1.5em;
    text-align: inherit;
    transition: color 0.3s;
    color: var(--bodyTextColor);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin: 0;
  }
  #usluge .cs-graphic {
    display: none;
    font-size: min(2.5vw, 1em);
    height: 27.875em;
    left: 50%;
    margin-left: 42.5rem;
    position: absolute;
    right: auto;
    top: -12.5rem;
    width: 20em;
    z-index: -1;
  }
}
@media only screen and (min-width: 48rem) {
  #usluge .cs-card-group {
    grid-template-columns: repeat(12, 1fr);
  }
  #usluge .cs-item {
    grid-column: span 6;
    margin: 0;
  }
}
@media only screen and (min-width: 64rem) {
  #usluge .cs-card-group {
    max-width: 80rem;
  }
  #usluge .cs-content {
    max-width: 80rem;
  }
  #usluge .cs-title {
    max-width: 46.875rem;
  }
  #usluge .cs-item {
    grid-column: span 4;
    max-width: none;
  }
}
@media only screen and (min-width: 80rem) {
  #usluge .cs-graphic {
    display: block;
  }
}
@media only screen and (min-width: 0rem) {
  #lokacije {
    background-color: #f3f8fd;
    overflow: hidden;
    padding: var(--sectionPadding);
    position: relative;
  }
  #lokacije .cs-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 4rem);
    margin: auto;
    max-width: 34.375rem;
    position: relative;
    width: 100%;
  }
  #lokacije .cs-title {
    max-width: 16ch;
    color: var(--headerColor);
  }
  #lokacije .cs-content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    max-width: 38.5625rem;
    text-align: left;
    width: 100%;
  }
  #lokacije .cs-text {
    margin-bottom: 0.75rem;
    color: var(--bodyTextColor);
  }
  #lokacije .cs-text:last-of-type {
    margin: 0;
  }
  #lokacije .cs-ul {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
    padding: 0;
    width: 100%;
  }
  #lokacije .cs-li {
    align-items: center;
    color: var(--bodyTextColor);
    display: flex;
    font-size: clamp(0.875rem, 2vw, 1rem);
    gap: 0.5rem;
    justify-content: flex-start;
    line-height: 1.5em;
    list-style: none;
    width: 100%;
  }
  #lokacije .cs-tick {
    display: block;
    height: auto;
    margin-top: 1px;
    width: 1.25rem;
  }
  #lokacije .cs-ul-icons {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: clamp(3rem, 6vw, 4rem) 0 0;
    max-width: 39.375rem;
    padding: 0;
    width: 100%;
  }
  #lokacije .cs-li-icons {
    align-items: flex-start;
    border-bottom: 1px solid rgba(72, 72, 72, 0.4);
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0 0 2rem;
  }
  #lokacije .cs-li-icons:last-of-type {
    border: none;
    padding: 0;
  }
  #lokacije .cs-icon {
    display: block;
    height: auto;
    width: 3rem;
  }
  #lokacije .cs-h3 {
    color: var(--bodyTextColorWhite);
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 1rem;
    text-align: left;
  }
  #lokacije .cs-button-solid {
    margin-top: 2rem;
  }
  #lokacije .cs-button-solid:hover {
    color: var(--headerColor);
  }
  #lokacije .cs-button-solid:before {
    background-color: var(--white);
  }
  #lokacije .cs-li-text {
    color: var(--bodyTextColorWhite);
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    opacity: 0.8;
    text-align: left;
  }
  #lokacije .cs-map-service {
    z-index: 1;
    position: relative;
    height: 20rem;
    width: 100vw;
    max-width: 100%;
    margin: 0 auto;
  }
  #lokacije .cs-box {
    background-color: #f2fbf8;
    border-radius: 0.5rem;
    bottom: clamp(1rem, 4vw, 2.5rem);
    box-sizing: border-box;
    left: clamp(1rem, 4vw, 2.5rem);
    max-width: 19.0625rem;
    padding: 2rem;
    position: absolute;
    text-align: left;
    width: 89%;
    z-index: 1;
  }
  #lokacije .cs-box-icon {
    display: block;
    height: auto;
    margin: 0 0 1rem;
    width: 3.75rem;
  }
  #lokacije .cs-box-number {
    color: var(--headerColor);
    display: block;
    font-size: 1.9375rem;
    font-weight: 900;
    line-height: 1.2em;
    margin: 0 0 0.75rem;
  }
  #lokacije .cs-box-desc {
    color: var(--bodyTextColor);
    display: block;
    font-size: 1rem;
    line-height: 1.5em;
  }
  #lokacije .cs-topper {
    color: var(--primary);
  }
  #lokacije .cs-graphic {
    bottom: 0;
    display: none;
    font-size: min(2.5vw, 1em);
    height: 13.4375rem;
    left: auto;
    margin-right: 39.375rem;
    position: absolute;
    right: 50%;
    width: 19.6875rem;
    z-index: 1;
  }
}
@media only screen and (min-width: 48rem) {
  #lokacije .cs-box {
    max-width: 19.0625rem;
    width: 73%;
  }
}
@media only screen and (min-width: 64rem) {
  #lokacije .cs-container {
    align-items: stretch;
    flex-direction: row;
    justify-content: flex-end;
    max-width: 80rem;
    position: relative;
    z-index: 1;
    justify-content: flex-start;
  }
  #lokacije .cs-content {
    width: 48vw;
    flex: none;
    width: 45vw;
  }
  #lokacije .cs-map-service {
    z-index: 1;
    position: relative;
    height: auto;
    width: 50vw;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 80rem) {
  #lokacije .cs-graphic {
    display: block;
  }
}
@media only screen and (min-width: 0rem) {
  #proces {
    background-color: var(--primaryDark);
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #proces .cs-container {
    gap: clamp(3rem, 6vw, 4rem);
    margin: auto;
    max-width: 44rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  #proces .cs-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  #proces .cs-title {
    color: var(--bodyTextColorWhite);
  }
  #proces .cs-text {
    color: var(--bodyTextColorWhite);
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    margin: 0;
    max-width: 53.125rem;
    text-align: inherit;
    width: 100%;
  }
  #proces .cs-card-group {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(12, 1fr);
    margin: 0;
    padding: 0;
    width: 100%;
  }
  #proces .cs-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    grid-column: span 12;
    list-style: none;
    position: relative;
    text-align: center;
  }
  #proces .cs-item:last-of-type:after {
    display: none;
  }
  #proces .cs-item:nth-of-type(2n):after {
    transform: rotate(-135deg) scaleX(-1);
  }
  #proces .cs-item:after {
    background: url(../images/arrow.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: clamp(3.375rem, 6vw, 5.25rem);
    margin-top: 1.25rem;
    opacity: 1;
    position: relative;
    transform: rotate(135deg);
    width: clamp(3.375rem, 6vw, 5.25rem);
  }
  #proces .cs-picture {
    align-items: center;
    background-color: #183438;
    box-shadow: 4px 4px 0 0 #21464c;
    display: flex;
    height: 5.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 5.5rem;
  }
  #proces .cs-icon {
    display: block;
    height: auto;
    width: 2.5rem;
  }
  #proces .cs-h3 {
    color: var(--bodyTextColorWhite);
    font-size: 1.9375rem;
    line-height: 1.2em;
    margin: 0 0 0.75rem;
    text-align: inherit;
  }
  #proces .cs-item-text {
    color: #e6e7e7;
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    max-width: 25.8125rem;
    text-align: inherit;
  }
  #proces .cs-graphic-wrapper {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
  }
  #proces .cs-graphic {
    height: auto;
    left: -5rem;
    opacity: 0.1;
    position: absolute;
    top: -5rem;
    transform: rotate(-10deg);
    width: 52.5rem;
    z-index: -1;
  }
  #proces .cs-brake {
    display: none;
  }
}
@media only screen and (min-width: 48rem) {
  #proces .cs-container {
    max-width: 80rem;
  }
  #proces .cs-item {
    grid-column: span 4;
  }
  #proces .cs-item:first-of-type:after {
    transform: rotate(45deg);
  }
  #proces .cs-item:nth-of-type(2):after {
    transform: rotate(135deg) scaleX(-1);
  }
  #proces .cs-item:after {
    margin: 0;
    position: absolute;
    right: -2.5rem;
    top: 0;
    transform: rotate(45deg);
  }
}
@media only screen and (min-width: 1300px) {
  #proces .cs-brake {
    display: block;
    height: auto;
    position: absolute;
    right: 0;
    top: -6.25rem;
    width: 22.0625rem;
  }
}
@media only screen and (min-width: 0rem) {
  #cena {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #cena .cs-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 4rem);
    margin: auto;
    max-width: 36.5rem;
    width: 100%;
  }
  #cena .cs-content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 39.375rem;
    text-align: left;
    width: 100%;
  }
  #cena .cs-title {
    max-width: 26ch;
  }
  #cena .cs-text {
    margin-bottom: 1rem;
  }
  #cena .cs-text:last-of-type {
    margin-bottom: 1.5rem;
  }
  #cena .cs-card-group {
    align-items: center;
    display: grid;
    gap: clamp(1rem, 2vw, 1.25rem);
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    margin: 0 0 1.5rem;
    max-width: 39.375rem;
    padding: 0;
    width: 100%;
  }
  #cena .cs-item {
    align-items: flex-start;
    align-self: stretch;
    background-color: #e6f1fc;
    border: 1px solid #e6f1fc;
    border-radius: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    padding: clamp(1rem, 3vw, 1.5rem);
  }
  #cena .cs-h3 {
    align-items: center;
    color: var(--headerColor);
    display: flex;
    font-size: 1.25rem;
    font-weight: 700;
    gap: 0.5rem;
    justify-content: flex-start;
    line-height: 1.2em;
    margin: 0;
  }
  #cena .cs-h3-icon {
    display: block;
    height: auto;
    width: 2rem;
  }
  #cena .cs-item-text {
    color: var(--bodyTextColor);
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
  }
  #cena .cs-ul {
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 0 1.5rem;
    padding: 0;
    align-items: flex-start;
    display: flex;
    width: 100%;
  }
  #cena .cs-li {
    align-items: flex-start;
    display: flex;
    width: 100%;
    color: var(--bodyTextColor);
    font-size: var(--bodyFontSize);
    gap: 0.5rem;
    justify-content: flex-start;
    line-height: 1.5em;
    list-style: none;
  }
  #cena .cs-icon {
    display: block;
    height: auto;
    margin-top: 1px;
    width: 1.5rem;
  }
  #cena .cs-graphic {
    display: none;
    font-size: min(2.5vw, 1em);
    height: 27.875em;
    left: 50%;
    margin-left: 42.5rem;
    position: absolute;
    right: auto;
    top: -1.875rem;
    width: 23.75em;
    z-index: -1;
  }
}
@media only screen and (min-width: 64rem) {
  #cena .cs-container {
    align-items: stretch;
    flex-direction: row;
    justify-content: center;
    max-width: 80rem;
  }
  #cena .cs-image-group {
    height: auto;
  }
}
@media only screen and (min-width: 80rem) {
  #cena .cs-graphic {
    display: block;
  }
}
@media only screen and (min-width: 0rem) {
  #proof {
    background-color: #f3f8fd;
    overflow: hidden;
    padding: var(--sectionPadding);
  }
  #proof .cs-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 4rem);
    margin: auto;
    max-width: 34.375rem;
    width: 100%;
  }
  #proof .cs-content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    max-width: 33.875rem;
    text-align: left;
    width: 100%;
  }
  #proof .cs-text {
    margin-bottom: 1rem;
  }
  #proof .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #proof .cs-ul {
    margin: 0 0 2rem;
    max-width: 39.375rem;
    overflow: hidden;
    padding: 0;
  }
  #proof .cs-li {
    color: var(--bodyTextColor);
    display: block;
    list-style: none;
    margin: 0 0 0.75rem;
    padding-left: 1.25rem;
    position: relative;
    text-align: left;
  }
  #proof .cs-li strong {
    display: inline;
    margin-right: 0.25rem;
  }
  #proof .cs-li:before {
    background: #13daec;
    content: "";
    display: block;
    height: 0.5rem;
    width: 0.5rem;
    position: absolute;
    left: 0;
    top: 0.35rem;
  }
  #proof .cs-image-group {
    display: block;
    font-size: min(2.15vw, 0.8em);
    height: 36.75em;
    position: relative;
    width: 42.375em;
    z-index: 1;
  }
  #proof .cs-picture {
    position: absolute;
  }
  #proof .cs-picture img {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
  }
  #proof .cs-picture1 {
    height: 24.375em;
    left: 0;
    top: 0;
    width: 39.375em;
    z-index: 10;
  }
  #proof .cs-picture2 {
    bottom: 0;
    height: 18.75em;
    right: 0;
    width: 28.8125em;
    z-index: 10;
  }
  #proof .cs-graphic {
    height: auto;
    position: absolute;
  }
  #proof .cs-graphic1 {
    right: -3.75em;
    top: 1.25em;
    transform: rotate(-15deg);
    width: 72.125em;
  }
  #proof .cs-graphic2 {
    right: -1.5625em;
    top: 11.5625em;
    width: 67.8125em;
  }
  #proof .cs-box {
    align-items: center;
    background-color: var(--primary);
    bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 11.125em;
    justify-content: center;
    left: 0;
    padding: 0.5rem;
    position: absolute;
    width: 12.3125em;
    z-index: 20;
  }
  #proof .cs-number {
    font-family: var(--headerFont);
    font-size: clamp(1.25rem, 4vw, 2.4375rem);
    margin: 0 0 clamp(0.25rem, 1vw, 0.5rem);
    color: var(--bodyTextColorWhite);
    display: block;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    width: 100%;
  }
  #proof .cs-desc {
    color: var(--bodyTextColorWhite);
    display: block;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    width: 100%;
    font-size: clamp(0.75rem, 1.9vw, 1rem);
    margin: 0;
    max-width: 12ch;
  }
}
@media only screen and (min-width: 64rem) {
  #proof .cs-container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    max-width: 80rem;
  }
  #proof .cs-image-group {
    flex: none;
    font-size: min(1.2vw, 1em);
  }
}

/*# sourceMappingURL=service.css.map */
