@charset "UTF-8";

:root {
  /* --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Noto-Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd; */

  /* Vars */
  --Blue-Darkest: #142233;
  --Blue-Lightest: #F5F7FA;
  --Medium-blue: #7a92af;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: Noto-Sans, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji,
    Segoe UI Symbol, Noto Color Emoji;
  --bs-blue: #236cc4;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-body-bg: #fff;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #405063;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.form-control {
  padding: 1rem;
  color: #7A92AF;
  border-color: #fff;
}

.btn {
  border-radius: 44px;
  padding: 14px 34px;
  font-weight: 700;;
}

.btn-primary {
  background-color: var(--bs-blue) !important;
  border-color: var(--bs-blue) !important;
}

.btn-outline-secondary {
  border: 1px solid var(--Medium-blue);
  color: var(--Blue-Darkest);
}

.bg-dark {
  background-color: var(--Blue-Darkest) !important;
}

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar .language-switcher-icon {
  background-image: url(/assets/toll4all/img/language-icon.svg);
  background-repeat: no-repeat;
  width: 39px;
  height: 39px;
}

.navbar .login-button {
  border-radius: 26px;
  padding: 9px 22px;
  font-size: 0.8rem;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  font-size: 0.8rem;
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

h1,
.h1 {
  font-size: 3.5rem;
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
}

h2,
.h2 {
  font-size: 2.5rem;
  color: #142233;
  /* Desktop/H2 */
  font-family: "Noto Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
/* 
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
} */

h3,
.h3 {
font-size: 0.8rem;  
color: #7A92AF;
line-height: 1.5rem;
text-transform: uppercase;
}

h4,
.h4 {
font-size: 1.8rem;  
line-height: 1.8rem;
font-weight: 500;
color: var(--Blue-Darkest)

}

/* @media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 1.75rem;
  }
} */

p {
  margin-top: 0;
  margin-bottom: 0;
  color: #405063;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6rem;
}

.label {
  color: #7A92AF;
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-weight: 300;
}

.label-dark {
  color: #405063;
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 400;
}

.w-33 {
  width: 33.33%;
}

.w-66 {
  width: 66.66%;
}

/* Landing Section */
.landing-section {
  background: url(/assets/toll4all/img/bg-toll4all.jpg) no-repeat center center;
  position: relative;
  background-color: #343a40;
  background-size: cover;
  padding-top: 420px;
  padding-bottom: 100px;
}

.landing-section .subheader {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

.landing-section .button-block {
  width: 290px;
}

.landing-section .button-block button {
  border-radius: 44px;
  padding: 14px 10px;
  font-size: 14px;
}

.landing-section .border-lr {
  border: 1px solid #dae5f238;
  border-top: 0;
  border-bottom: 0;
}

/* Mockup section */
.mockup-image {
  margin-top: -70px;
}

/* Info section */
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-padding-small {
  padding-top: 40px;
  padding-bottom: 40px;
}

.info-section-content {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
}

.how-it-works-content {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.gap-100px {
  gap: 100px;
}

.mb-3rem {
  margin-bottom: 3rem;
}

.cards-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.number-card {
  background-color: var(--Blue-Lightest);
  padding: 1.5rem;
  border-radius: 26px;
  display: flex;
  gap: 18px;
  width: calc(50% - 24px);
  align-items: center;
  justify-content: flex-start;
}

.number-card .number {
  font-size: 56px;
  color: var(--Medium-blue);
  font-weight: 700;
  width: 40px;
}

.number-card .description {
  flex: 1;
  margin-bottom: 0;
}

.number-card .description .small {
  font-size: 14px;
}

.number-card .line {
  border-left: 2px solid #DAE5F2;
  height: 100px;
}

/* Search Tag Section */
.search-tag-section {
  background-color: var(--bs-body-color);
  padding: 80px;
}

.search-tag-section .container {
  display: flex;
  align-items: center;
}

.search-input {
  height: 100%;
  border-radius: 84px;
}

.search-input:focus {
  outline: none;
  border-color: white;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.section-image-header {
  background: url(/assets/toll4all/img/header-background.jpg) no-repeat center center;
  background-size: cover;
  padding: 80px 25%;
  border-radius: 40px;
}

.bg-image-user {
  background: url(/assets/toll4all/img/bg-korisnik.jpg) no-repeat center center;
  background-size: cover;
}

.bg-image-questions {
  background: url(/assets/toll4all/img/bg-pitanja.jpg) no-repeat center center;
  background-size: cover;
}

.mw-600 {
  max-width: 600px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.accordion-item {
  background-color: var(--Blue-Lightest);
  padding: 12px;
  border-radius: 40px !important;
  outline: none;
  border: none;
}

.accordion-item .accordion-header {
  font-size: 20px;
  color: #142233;
}

.accordion-button {
  background-color: initial;
  font-size: 20px;
}

.accordion-button:not(.collapsed) {
  color: inherit;
  background-color: inherit;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-subitem {
  background-color: white;
  padding: 12px 12px 12px 24px;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion .btn-accordion {
  background-color: #142233;
  color: white;
  padding: 12px 32px;
  font-size: 12px;
}

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

.mw-1000 {
  max-width: 1000px;
}

.contact-section {
  background: url(/assets/toll4all/img/kontakt-bg.png) no-repeat center center;
  background-color: #f5f7fa;
  background-size: cover;
}

.contact-section .line {
  border-left: 1px solid #7A92AF;
  height: 32px;
}

.contact-section .contact-item .icon {
  width: 27px;
}

.contact-info {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

.contact-section .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid #7A92AF;
  color: rgb(64, 80, 99);
  text-decoration: none;
  cursor: pointer;
}

.contact-section .contact-item-label {
  font-weight: 700;
  font-size: 14px;
}

/* Footer */

.footer-list-item {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.8rem;
  vertical-align: middle;
  color: white;
  font-size: 14px;
}

.footer-list-item a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.footer-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.payment-icon {
  width: 100px;
}

.footer-info-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-link {
  text-decoration: none;
  color: #7A92AF;
  font-size: 14px;
  cursor: pointer;
}

.footer-images {
  display: flex;
  gap: 12px;
  justify-content: end;
}

.footer-bg-image {
  height: 450px;
}

.copyright-text {
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-size: 12px;
  color: #8797A8;
}

/* Responsive */
@media (max-width: 1000px) {
  h2,
  .h2 {
    font-size: 2rem;
  }

  .mbm-1 {
    margin-bottom: 1rem;
  }

  .landing-section {
    padding-top: 240px;
    text-align: center;
  }

  .landing-section .subheader {
    margin-bottom: 2rem;
  }

  .gap-100px {
    gap: 50px;
  }

  .info-section-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .w-50 {
    width: 100% !important;
  }

  .mb-3rem {
    margin-bottom: 2rem;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .how-it-works-content {
    flex-direction: column;
    gap: 40px;
  }

  .how-it-works-content .w-33,
  .how-it-works-content .w-66 {
    width: 100%;
  }

  .search-tag-section {
    padding: 3rem;
  }

  .search-tag-section .container {
    flex-direction: column-reverse;
  }

  .section-image-header {
    padding: 40px;
  }

  .accordion-button {
    font-size: 16px;
  }  

  .accordion .btn-accordion {
    padding: 8px 24px;
  }

  .accordion-body {
    padding: 1rem 0.5rem;
  }

  .accordion-subitem {
    font-size: 14px;
  }

  .footer-info-section {
    gap: 30px;
    margin-bottom: 2rem;
  }

  .footer-images {
    justify-content: start;
  }

  .copyright-text {
    right: 220px;
  }

  .footer-bg-image {
    height: 320px;
  }
  .electronic-parking-payment .container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 576px) {
  .number-card {
    width: 100%;
  }
  .search-tag-section {
    pad: 2rem;
  }

  .contact-info {
    flex-direction: column;
  }

  .contact-section .contact-item {
    justify-content: center;
  }

  .copyright-text {
    right: 65px;
  }
}

.scroll-social-icons {
  position: fixed;
  top: 25%;
  right: 5px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 10000;
}

.scroll-social-icons img.footer-icon {
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-social-icons img.footer-icon:hover {
  transform: scale(1.1);
}

#modal_privacy_policy h6,
#modal_privacy_policy h5,
#modal_terms h6,
#modal_terms h5 {
  color: #405063;
}