/*
Theme Name: PC Bolit — Divi Child
Theme URI: https://www.pc-bolit.si/
Description: Minimalna Divi 5 child tema za novu PC Bolit web stranicu.
Author: PC Bolit
Version: 1.0.0
Template: Divi
Text Domain: pc-bolit-divi-child
*/

/* BOLIT HERO BACKGROUND */
.bolit-hero-bg {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: #f7f6f3;
}

/* Veliki kružni element */
.bolit-hero-bg::before {
	content: "";
	position: absolute;
	z-index: 0;
	pointer-events: none;

	width: clamp(560px, 62vw, 980px);
	aspect-ratio: 1;
	left: 50%;
	top: 54%;
	transform: translate(-50%, -50%);

	border: clamp(45px, 5vw, 90px) solid rgba(210, 15, 30, 0.06);
	border-radius: 50%;
	box-sizing: border-box;
}

/* Dijagonalna crvena linija */
.bolit-hero-bg::after {
	content: "";
	position: absolute;
	z-index: 0;
	pointer-events: none;

	width: 130vw;
	height: 2px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-14deg);

	background: rgba(220, 15, 30, 0.28);
}

/* Hero sadržaj */
.bolit-hero-bg .et_pb_row {
	position: relative;
	z-index: 1;
}

@media (max-width: 767px) {
	.bolit-hero-bg::before {
		width: 115vw;
		top: 56%;
		border-width: 34px;
	}

	.bolit-hero-bg::after {
		width: 170vw;
		top: 53%;
	}
}

/* Logo hover */
.bolit-logo-hover {
	position: relative;
	transition:
		transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
		filter 0.35s ease;
	will-change: transform;
}

@media (hover: hover) {
	.bolit-logo-hover:hover {
		transform: translateY(-8px) scale(1.035);
		filter: drop-shadow(0 14px 18px rgba(20, 20, 20, 0.16));
	}
}

/* Klikabilni Bolit logo */
.bolit-logo-link {
	cursor: pointer;
}

.bolit-logo-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 4px;
	width: 0;
	height: 3px;
	border-radius: 10px;
	background: #df1728;
	transform: translateX(-50%);
	transition: width 0.35s ease;
}

@media (hover: hover) {
	.bolit-logo-link:hover::after {
		width: 100%;
	}
}

/* Bez animacija za korisnike koji ih isključe */
@media (prefers-reduced-motion: reduce) {
	.bolit-logo-hover,
	.bolit-logo-link::after {
		transition: none;
		transform: none;
	}
}

/* PC Bolit - "Spoznajte nas" sekcija */

/* ========================================
   PC BOLIT — ABOUT SECTION
   ======================================== */

.bolit-about-section {
  position: relative;
  overflow: hidden;
}

.bolit-about-row {
  position: relative;
  z-index: 1;
  align-items: center;
}


/* STATISTIKA I CTA
   ======================================== */

.bolit-about-stats,
.bolit-about-actions {
  gap: 14px;
}

.bolit-about-stat {
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.bolit-about-stat::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: #ef2b32;
  transition: width 220ms ease;
}

.bolit-about-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 43, 50, 0.55);
}

.bolit-about-stat:hover::after {
  width: 100%;
}

.bolit-about-phone a {
  text-decoration: none;
  transition: color 180ms ease;
}

.bolit-about-phone a:hover {
  color: #ef2b32 !important;
}


/* FOTOGRAFIJA
   ======================================== */

.bolit-about-visual {
  position: relative;
  align-self: center;
  overflow: hidden;
  isolation: isolate;

  /* Odnos originalne fotografije */
  aspect-ratio: 3 / 2;

  height: auto !important;
  min-height: 0 !important;

  background: #1a1a1e;
}

.bolit-about-photo {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;

  clip-path: polygon(
    9% 0,
    100% 0,
    100% 100%,
    0 100%,
    0 9%
  );
}

.bolit-about-photo .et_pb_image_wrap {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.bolit-about-photo img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  aspect-ratio: auto !important;

  object-fit: cover;
  object-position: center center;

  filter: saturate(0.95) contrast(1.03);
}

.bolit-about-photo-label {
  z-index: 4;
  width: auto !important;
  pointer-events: none;
}

@media (max-width: 980px) {
  .bolit-about-copy {
    order: 1;
  }

  .bolit-about-visual {
    order: 2;
    width: 100%;
    margin-top: 32px;
    aspect-ratio: 3 / 2;
  }
}


@media (max-width: 479px) {
  .bolit-about-stats,
  .bolit-about-actions {
    gap: 12px;
  }

  .bolit-about-actions .et_pb_column:first-child {
    margin-bottom: 4px;
  }

  .bolit-about-visual {
    margin-top: 24px;
  }

  .bolit-about-photo {
    clip-path: polygon(
      7% 0,
      100% 0,
      100% 100%,
      0 100%,
      0 7%
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolit-about-stat,
  .bolit-about-stat::after,
  .bolit-about-phone a {
    transition: none;
  }
}

/* ========================================
   PC BOLIT — ZAKAJ IZBRATI NAS
   ======================================== */

.bolit-why-section {
  position: relative;
  overflow: hidden;
}

.bolit-why-section::before {
  content: "";
  position: absolute;
  width: clamp(440px, 42vw, 760px);
  aspect-ratio: 1;
  right: -16%;
  top: -56%;
  border: clamp(52px, 5vw, 88px) solid rgba(239, 43, 50, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.bolit-why-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 72%;
  left: 34%;
  bottom: 18%;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  transform: rotate(-5deg);
  transform-origin: left center;
  pointer-events: none;
}

.bolit-why-intro,
.bolit-why-cards-row {
  position: relative;
  z-index: 1;
}

.bolit-why-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.bolit-why-grid > .bolit-why-card {
  grid-column: span 2;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
}

.bolit-why-grid > .bolit-why-card-04 {
  grid-column: 2 / span 2;
}

.bolit-why-grid > .bolit-why-card-05 {
  grid-column: 4 / span 2;
}

.bolit-why-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.bolit-why-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: #ef2b32;
  transition: width 220ms ease;
}

.bolit-why-card::after {
  content: "↗";
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 26px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 21px;
  line-height: 1;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.bolit-why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 43, 50, 0.55) !important;
  background-color: #1d1d22 !important;
}

.bolit-why-card:hover::before {
  width: 100%;
}

.bolit-why-card:hover::after {
  color: #ef2b32;
  transform: translate(3px, -3px);
}

.bolit-why-number {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .bolit-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bolit-why-grid > .bolit-why-card,
  .bolit-why-grid > .bolit-why-card-04 {
    grid-column: auto;
  }

  .bolit-why-grid > .bolit-why-card-05 {
    grid-column: 1 / -1;
    width: calc(50% - 9px) !important;
    justify-self: center;
  }

  .bolit-why-section::before {
    right: -36%;
    top: -24%;
  }
}

@media (max-width: 600px) {
  .bolit-why-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .bolit-why-grid > .bolit-why-card,
  .bolit-why-grid > .bolit-why-card-04,
  .bolit-why-grid > .bolit-why-card-05 {
    grid-column: auto;
    width: auto !important;
  }

  .bolit-why-card::after {
    top: 21px;
    right: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolit-why-card,
  .bolit-why-card::before,
  .bolit-why-card::after {
    transition: none;
  }
}

/* PC BOLIT — KAKO DO IZPITA */

.bolit-steps-section {
  position: relative;
  overflow: hidden;
}

.bolit-steps-section::before {
  content: "";
  position: absolute;
  width: clamp(420px, 38vw, 700px);
  aspect-ratio: 1;
  right: -13%;
  bottom: -55%;
  border: clamp(48px, 4.5vw, 82px) solid rgba(239, 43, 50, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.bolit-steps-intro,
.bolit-steps-main {
  position: relative;
  z-index: 1;
}

.bolit-steps-intro {
  padding-bottom: 29px !important;
}

.bolit-steps-intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #ef2b32 0 34%, rgba(16, 16, 20, 0.12) 34% 100%);
  pointer-events: none;
}

.bolit-steps-main {
  gap: 34px;
}

.bolit-steps-main > .bolit-steps-panel {
  flex: 0 0 35% !important;
  width: 35% !important;
}

.bolit-steps-main > .bolit-steps-accordion-col {
  flex: 1 1 0 !important;
  width: auto !important;
  min-width: 0;
}

.bolit-steps-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bolit-steps-panel::before {
  content: "B";
  position: absolute;
  z-index: -1;
  right: -34px;
  top: 50%;
  transform: translateY(-51%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.075);
  font: 800 clamp(300px, 26vw, 440px)/0.8 Montserrat, sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.bolit-steps-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 13%;
  right: 34px;
  width: 12px;
  height: 74%;
  background:
    radial-gradient(circle, #ef2b32 0 4px, transparent 4.5px) center top / 12px 72px repeat-y,
    linear-gradient(rgba(239, 43, 50, 0.24), rgba(239, 43, 50, 0.24)) center / 1px 100% no-repeat;
  opacity: 0.8;
  pointer-events: none;
}

.bolit-steps-number,
.bolit-steps-years {
  position: relative;
  z-index: 1;
}

.bolit-steps-number::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 24px;
  background: #ef2b32;
}

.bolit-steps-accordion .et_pb_accordion_item,
.bolit-steps-accordion .et_pb_toggle {
  position: relative;
  margin: 0 0 12px !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 20, 0.13) !important;
  border-left: 3px solid transparent !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: none;
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.bolit-steps-accordion .et_pb_accordion_item:last-child,
.bolit-steps-accordion .et_pb_toggle:last-child {
  margin-bottom: 0 !important;
}

.bolit-steps-accordion .et_pb_toggle:hover {
  transform: translateX(4px);
  border-color: rgba(239, 43, 50, 0.42) !important;
}

.bolit-steps-accordion .et_pb_toggle_open {
  border-left-color: #ef2b32 !important;
  background: #ffffff !important;
  box-shadow: 0 16px 42px rgba(16, 16, 20, 0.07);
}

.bolit-steps-accordion .et_pb_toggle_title {
  position: relative;
  padding: 25px 82px 25px 28px !important;
  color: #101014 !important;
  font: 700 18px/1.4 Montserrat, sans-serif !important;
}

.bolit-steps-accordion .et_pb_toggle_title::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  right: 25px !important;
  display: block !important;
  width: 36px;
  height: 36px;
  margin: 0 !important;
  border-radius: 50%;
  background:
    linear-gradient(#101014, #101014) center / 14px 2px no-repeat,
    linear-gradient(#101014, #101014) center / 2px 14px no-repeat,
    #eeeeef;
  color: transparent !important;
  font-family: Arial, sans-serif !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.bolit-steps-accordion .et_pb_toggle_open .et_pb_toggle_title::before {
  content: "" !important;
  background:
    linear-gradient(#ffffff, #ffffff) center / 14px 2px no-repeat,
    linear-gradient(#ffffff, #ffffff) center / 2px 14px no-repeat,
    #ef2b32;
  transform: translateY(-50%) rotate(45deg);
}

.bolit-steps-accordion .et_pb_toggle_content {
  padding: 0 82px 25px 28px !important;
  color: #626269 !important;
  font: 400 15px/1.7 Montserrat, sans-serif !important;
  animation: none !important;
  transition: none !important;
}

.bolit-steps-accordion .et_pb_toggle_content p {
  padding-bottom: 0;
}

.bolit-steps-accordion .et_pb_toggle_open > .et_pb_toggle_content {
  display: block !important;
  height: auto !important;
  max-height: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.bolit-steps-accordion .et_pb_toggle_close > .et_pb_toggle_content {
  display: none !important;
  height: auto !important;
  max-height: none !important;
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 980px) {
  .bolit-steps-section::before {
    right: -38%;
    bottom: -18%;
  }

  .bolit-steps-main {
    gap: 26px;
  }

  .bolit-steps-main > .bolit-steps-panel,
  .bolit-steps-main > .bolit-steps-accordion-col {
    flex: 0 0 100% !important;
    width: 100% !important;
  }

  .bolit-steps-panel::before {
    right: 7%;
    font-size: 360px;
  }

  .bolit-steps-panel::after {
    right: 46px;
  }
}

@media (max-width: 600px) {
  .bolit-steps-intro::after {
    background: linear-gradient(90deg, #ef2b32 0 46%, rgba(16, 16, 20, 0.12) 46% 100%);
  }

  .bolit-steps-intro {
    padding-bottom: 23px !important;
  }

  .bolit-steps-main {
    gap: 20px;
  }

  .bolit-steps-panel::before {
    right: -30px;
    font-size: 285px;
  }

  .bolit-steps-panel::after {
    right: 24px;
    height: 70%;
  }

  .bolit-steps-number::before {
    margin-bottom: 18px;
  }

  .bolit-steps-accordion .et_pb_toggle_title {
    padding: 21px 66px 21px 21px !important;
    font-size: 16px !important;
  }

  .bolit-steps-accordion .et_pb_toggle_title::before {
    right: 18px !important;
    width: 32px;
    height: 32px;
  }

  .bolit-steps-accordion .et_pb_toggle_content {
    padding: 0 66px 21px 21px !important;
    font-size: 14px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolit-steps-accordion .et_pb_toggle,
  .bolit-steps-accordion .et_pb_toggle_title::before {
    transition: none;
  }
}

/* PC BOLIT CTA PRIJAVA */


.bolit-cta-section {
  position: relative;
  overflow: hidden;
}

.bolit-cta-section::before {
  content: "B";
  position: absolute;
  left: -4vw;
  top: 50%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  font: 800 clamp(420px, 42vw, 760px)/0.7 Montserrat, sans-serif;
  letter-spacing: -0.08em;
  transform: translateY(-48%);
  pointer-events: none;
}

.bolit-cta-row {
  position: relative;
  z-index: 1;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.bolit-cta-row > .bolit-cta-copy {
  flex: 0 0 68% !important;
  width: 68% !important;
}

.bolit-cta-row > .bolit-cta-action {
  flex: 0 0 32% !important;
  width: 32% !important;
}

.bolit-cta-copy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bolit-cta-copy::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 0;
  width: 150px;
  height: 4px;
  background: #ef2b32;
}

.bolit-cta-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 48%;
  bottom: 12%;
  width: 72%;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  transform: rotate(-8deg);
  transform-origin: left center;
  pointer-events: none;
}

.bolit-cta-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
}


.bolit-cta-action {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%, 0 13%);
}

.bolit-cta-action::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 7%;
  top: 50%;
  width: 190px;
  height: 132px;
  background: rgba(255, 255, 255, 0.11);
  clip-path: polygon(
    0 44%,
    66% 44%,
    66% 0,
    100% 50%,
    66% 100%,
    66% 56%,
    0 56%
  );
  transform: translateY(-50%);
  pointer-events: none;
}

.bolit-cta-action::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 52%);
  pointer-events: none;
}

.bolit-cta-button,
.bolit-cta-button .et_pb_button {
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .bolit-cta-row > .bolit-cta-copy,
  .bolit-cta-row > .bolit-cta-action {
    flex: 0 0 100% !important;
    width: 100% !important;
  }

  .bolit-cta-copy::before {
    left: 50px;
  }

  .bolit-cta-action {
    min-height: 210px;
    clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
  }

  .bolit-cta-action::before {
    right: 8%;
    width: 170px;
    height: 118px;
  }
}

@media (max-width: 600px) {
  .bolit-cta-copy::before {
    left: 28px;
    width: 100px;
    height: 3px;
  }

  .bolit-cta-action {
    min-height: 185px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 24%);
  }

  .bolit-cta-action::before {
    right: -8px;
    width: 140px;
    height: 98px;
  }

  .bolit-cta-button,
  .bolit-cta-button .et_pb_button {
    width: 100%;
  }
}

/* PC BOLIT — PRICING TABLES */


.bolit-price-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.bolit-price-grid > .bolit-price-card {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.bolit-price-card {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  height: 100%;
  min-height: 570px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(16, 16, 20, 0.07);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.bolit-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 43, 50, 0.55) !important;
  box-shadow: 0 24px 58px rgba(16, 16, 20, 0.12);
}

.bolit-price-featured {
  box-shadow: 0 25px 62px rgba(16, 16, 20, 0.14);
}

.bolit-price-featured:hover {
  transform: translateY(-6px);
}

.bolit-price-head {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.bolit-price-head::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 20px;
  background: #ffffff;
  clip-path: polygon(0 100%, 50% 25%, 100% 100%);
  pointer-events: none;
}

.bolit-price-amount,
.bolit-price-amount p {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.bolit-price-number {
  font-size: 62px;
  letter-spacing: -0.06em;
}

.bolit-price-euro {
  position: relative;
  top: -22px;
  margin-left: 8px;
  font-size: 22px;
  letter-spacing: 0;
}

.bolit-price-features {
  flex: 0 0 auto;
  width: 100%;
  margin: 0 !important;
  padding: 34px 30px 26px;
}

.bolit-price-features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bolit-price-features li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 15px 0 15px 18px;
  border-bottom: 1px solid rgba(16, 16, 20, 0.09);
}

.bolit-price-features li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #ef2b32;
  transform: translateY(-50%) rotate(45deg);
}

.bolit-price-features li strong {
  color: #101014;
  font-weight: 700;
}

.bolit-price-button {
  width: 210px;
  max-width: calc(100% - 60px);
  margin: auto auto 0 !important;
  padding-top: 30px;
}

.bolit-price-button .et_pb_button {
  width: 100%;
  text-align: center;
}

@media (max-width: 980px) {
  .bolit-price-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .bolit-price-featured,
  .bolit-price-featured:hover {
    transform: none;
  }
}

@media (max-width: 600px) {
  .bolit-price-number {
    font-size: 52px;
  }

  .bolit-price-euro {
    top: -18px;
    font-size: 19px;
  }

  .bolit-price-features {
    padding-right: 24px;
    padding-left: 24px;
  }

  .bolit-price-button {
    width: 210px;
    max-width: calc(100% - 48px);
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolit-price-card,
  .bolit-price-button .et_pb_button {
    transition: none;
  }
}
/* PC BOLIT CONTACT FORM 7 SECTION */

.bolit-contact-section {
  position: relative;
  overflow: hidden;
}

.bolit-contact-row {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.bolit-contact-row > .et_pb_column {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.bolit-contact-copy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bolit-contact-copy::before {
  content: "B";
  position: absolute;
  z-index: -1;
  right: -52px;
  bottom: -65px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  font: 800 clamp(320px, 29vw, 500px) / 0.8 Montserrat, sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.bolit-contact-copy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 70px;
  width: 150px;
  height: 4px;
  background: #ef2b32;
}

.bolit-contact-panel {
  position: relative;
}

.bolit-contact-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 100%;
  background: #ef2b32;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.bolit-contact-form,
.bolit-contact-form .wpcf7 {
  width: 100%;
}

.bolit-contact-form .bolit-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.bolit-contact-form .bolit-field-full,
.bolit-contact-form .bolit-cf7-grid > p:has(.bolit-field-full) {
  grid-column: 1 / -1;
  width: 100%;
}

.bolit-contact-form label,
.bolit-contact-form label > span:first-child {
  display: block;
}

.bolit-contact-form label > span:first-child {
  margin-bottom: 8px;
  color: #35353b;
  font: 700 12px/1.3 Montserrat, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bolit-contact-form input:not([type="submit"]),
.bolit-contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 16px 17px;
  border: 1px solid rgba(239, 43, 50, 0.45);
  border-radius: 0;
  outline: 0;
  background: #f5f4f1;
  color: #101014;
  font: 500 15px/1.45 Montserrat, sans-serif;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.bolit-contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.bolit-contact-form input:focus,
.bolit-contact-form textarea:focus {
  border-color: #ef2b32;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(239, 43, 50, 0.1);
}

.bolit-contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #c91f27;
  font-size: 12px;
}

.bolit-contact-form .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 14px 16px !important;
  border: 1px solid #ef2b32 !important;
  font-family: Montserrat, sans-serif;
}

/* PC BOLIT SHARED BUTTONS */

body .et_pb_button.et_pb_button,
.bolit-contact-form input[type="submit"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 210px;
  min-height: 51px;
  padding: 17px 28px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ef2b32 !important;
  color: #ffffff !important;
  font: 700 13px/1.3 Montserrat, sans-serif !important;
  letter-spacing: 0.05em !important;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

body .et_pb_button.et_pb_button::after {
  display: none !important;
  content: none !important;
}

body .et_pb_button.et_pb_button:hover,
.bolit-contact-form input[type="submit"]:hover {
  transform: translateY(-3px);
  background: #151519 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(16, 16, 20, 0.16);
}

/* PC BOLIT PRICING BUTTON ALIGNMENT */

.bolit-price-card {
  position: relative;
  padding-bottom: 120px !important;
}

.bolit-price-card .et_pb_button_module_wrapper {
  position: absolute !important;
  left: 50%;
  bottom: 36px;
  width: 210px;
  max-width: calc(100% - 60px);
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%);
  text-align: center;
}

.bolit-price-card .et_pb_button_module_wrapper .et_pb_button {
  width: 100%;
}

@media (max-width: 980px) {
  .bolit-contact-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .bolit-contact-copy::after {
    left: 52px;
  }

  .bolit-contact-panel::before {
    width: 100%;
    height: 16px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}

@media (max-width: 600px) {
  .bolit-contact-copy::after {
    left: 28px;
    width: 100px;
    height: 3px;
  }

  .bolit-contact-form .bolit-cf7-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
  }

  body .et_pb_button.et_pb_button,
  .bolit-contact-form input[type="submit"] {
    width: 100%;
    min-width: 0;
  }

  .bolit-price-card {
    padding-bottom: 112px !important;
  }

  .bolit-price-card .et_pb_button_module_wrapper {
    bottom: 30px;
    width: calc(100% - 48px);
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .et_pb_button.et_pb_button,
  .bolit-contact-form input,
  .bolit-contact-form textarea {
    transition: none;
  }
}

/* PC BOLIT SERVICES SECTION */

.bolit-services-section {
  position: relative;
  overflow: hidden;
}

.bolit-services-section::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: clamp(420px, 38vw, 700px);
  aspect-ratio: 1;
  border: clamp(48px, 4.5vw, 82px) solid rgba(239, 43, 50, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.bolit-services-grid {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.bolit-services-grid > .bolit-service-card {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.bolit-service-card {
  position: relative;
  display: grid !important;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(16, 16, 20, 0.08);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.bolit-service-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #a8a8ae;
}

.bolit-service-card-red::before {
  background: #ef2b32;
}

.bolit-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 43, 50, 0.5) !important;
  box-shadow: 0 26px 62px rgba(16, 16, 20, 0.13);
}

.bolit-service-image,
.bolit-service-image .et_pb_image_wrap {
  display: block;
  width: 100% !important;
  height: 100%;
  overflow: hidden;
}

.bolit-service-image {
  aspect-ratio: 3 / 2;
}

.bolit-service-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.bolit-service-card:hover .bolit-service-image img {
  transform: scale(1.035);
}

.bolit-service-content,
.bolit-service-content .et_pb_text_inner,
.bolit-service-copy {
  height: 100%;
}

.bolit-service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bolit-service-copy h3 {
  margin: 0 0 16px;
  padding: 0;
  color: #101014;
  font: 700 24px/1.25 Montserrat, sans-serif;
  letter-spacing: -0.025em;
}

.bolit-service-copy p {
  margin: 0 0 28px;
  padding: 0;
}

.bolit-service-link {
  margin-top: auto;
}

@media (max-width: 980px) {
  .bolit-services-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .bolit-service-card {
    grid-template-columns: minmax(260px, 42%) minmax(0, 58%);
    grid-template-rows: auto;
  }

  .bolit-service-image {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 600px) {
  .bolit-service-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr;
  }

  .bolit-service-image {
    aspect-ratio: 3 / 2;
  }

  .bolit-service-copy h3 {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolit-service-card,
  .bolit-service-image img {
    transition: none;
  }
}
/* PC BOLIT GLOBAL FOOTER */

.bolit-footer-section {
  position: relative;
  overflow: hidden;
  border-top: 4px solid #ef2b32;
  background: #0e0e11;
}

.bolit-footer-section::before {
  content: "B";
  position: absolute;
  right: -5vw;
  bottom: 18px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
  font: 800 clamp(380px, 38vw, 680px) / 0.72 Montserrat, sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.bolit-footer-top,
.bolit-footer-main,
.bolit-footer-bottom {
  position: relative;
  z-index: 1;
}

.bolit-footer-top {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.bolit-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.bolit-footer-social-column {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px;
}

.bolit-footer-social {
  width: 46px !important;
  height: 46px;
  margin: 0 !important;
}

.bolit-footer-social p {
  margin: 0;
  padding: 0;
}

.bolit-footer-social a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.bolit-footer-social a::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #ffffff;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.bolit-footer-facebook a::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-5 2-5 5v2H6v4h3v9h4v-9h3.4l.6-4h-4V9c0-.7.3-1 1-1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-5 2-5 5v2H6v4h3v9h4v-9h3.4l.6-4h-4V9c0-.7.3-1 1-1Z'/%3E%3C/svg%3E");
}

.bolit-footer-instagram a::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.5-3.3a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.5-3.3a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4Z'/%3E%3C/svg%3E");
}

.bolit-footer-social a:hover {
  transform: translateY(-3px);
  border-color: #ef2b32;
  background: #ef2b32;
}

.bolit-footer-main {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: clamp(44px, 7vw, 110px);
}

.bolit-footer-main > .bolit-footer-column {
  flex: 1 1 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.bolit-footer-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px;
}

.bolit-footer-heading {
  position: relative;
  width: 100%;
  margin: 0 0 18px !important;
  padding: 0 0 14px !important;
}

.bolit-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: #ef2b32;
}

.bolit-footer-link {
  width: auto !important;
  max-width: 100%;
  margin: 0 !important;
}

.bolit-footer-link p {
  margin: 0 !important;
  padding: 0 !important;
}

.bolit-footer-link a {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 5px 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #aaaab1 !important;
  font: 500 14px/1.5 Montserrat, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: color 180ms ease, transform 180ms ease;
}

.bolit-footer-column:not(.bolit-footer-contact-column) .bolit-footer-link a {
  min-width: 210px;
  justify-content: space-between;
}

.bolit-footer-column:not(.bolit-footer-contact-column) .bolit-footer-link a::after {
  content: "›";
  color: #ef2b32;
  font: 700 20px/1 Montserrat, sans-serif;
}

.bolit-footer-link a:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}

.bolit-footer-contact-link a {
  position: relative;
  padding-left: 29px !important;
  overflow-wrap: anywhere;
}

.bolit-footer-contact-link a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  background: #ef2b32;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.bolit-footer-address a::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z'/%3E%3C/svg%3E");
}

.bolit-footer-phone a::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6.6 10.8 2.2-2.2-3.4-5.1L2 5c0 9.4 7.6 17 17 17l1.5-3.4-5.1-3.4-2.2 2.2a15.2 15.2 0 0 1-6.6-6.6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6.6 10.8 2.2-2.2-3.4-5.1L2 5c0 9.4 7.6 17 17 17l1.5-3.4-5.1-3.4-2.2 2.2a15.2 15.2 0 0 1-6.6-6.6Z'/%3E%3C/svg%3E");
}

.bolit-footer-email a::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 5h20v14H2V5Zm2 2v.4l8 5.2 8-5.2V7l-8 5-8-5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 5h20v14H2V5Zm2 2v.4l8 5.2 8-5.2V7l-8 5-8-5Z'/%3E%3C/svg%3E");
}

.bolit-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .bolit-footer-top {
    flex-wrap: wrap !important;
  }

  .bolit-footer-social-column {
    justify-content: flex-start !important;
    margin-top: 30px !important;
  }

  .bolit-footer-main {
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .bolit-footer-main {
    flex-direction: column !important;
    gap: 36px;
  }

  .bolit-footer-main > .bolit-footer-column {
    flex: 0 0 100% !important;
    width: 100% !important;
  }

  .bolit-footer-column:not(.bolit-footer-contact-column) .bolit-footer-link a {
    min-width: min(280px, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolit-footer-social a,
  .bolit-footer-link a {
    transition: none;
  }
}
/* PC BOLIT DEFAULT MOBILE MENU */

@media (max-width: 980px) {
  #main-header {
    background: #ffffff !important;
  }

  #main-header .mobile_menu_bar::before {
    color: #ef2b32 !important;
    font-size: 34px;
  }

  #main-header .et_mobile_menu {
    padding: 10px 0;
    border-top: 3px solid #ef2b32 !important;
    background: #f8f6f3 !important;
    box-shadow: 0 20px 45px rgba(16, 16, 20, 0.16);
  }

  #main-header .et_mobile_menu li {
    padding: 0 18px;
  }

  #main-header .et_mobile_menu li a {
    padding: 15px 8px !important;
    border-bottom: 1px solid rgba(16, 16, 20, 0.08) !important;
    background: transparent !important;
    color: #151519 !important;
    font: 600 13px/1.4 Montserrat, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  #main-header .et_mobile_menu li:last-child a {
    border-bottom: 0 !important;
  }

  #main-header .et_mobile_menu li a:hover,
  #main-header .et_mobile_menu .current-menu-item > a {
    padding-left: 15px !important;
    background: rgba(239, 43, 50, 0.06) !important;
    color: #ef2b32 !important;
    opacity: 1;
  }

  #main-header .et_mobile_menu .current-menu-item > a {
    box-shadow: inset 3px 0 0 #ef2b32;
  }
}
/* PC BOLIT CPP TECAJ + PRIJAVA */

.bolit-cpp-intro-section,
.bolit-cpp-form-section {
  position: relative;
  overflow: hidden;
}

.bolit-cpp-intro-row,
.bolit-cpp-form-row {
  position: relative;
  z-index: 1;
}

.bolit-cpp-intro-visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(16, 16, 20, 0.18);
}

.bolit-cpp-intro-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -22%;
  top: 22%;
  width: 145%;
  height: 2px;
  background: rgba(239, 43, 50, 0.85);
  transform: rotate(-17deg);
  transform-origin: center;
}

.bolit-cpp-intro-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border: 46px solid rgba(239, 43, 50, 0.07);
  border-radius: 50%;
}

.bolit-cpp-letters {
  position: absolute !important;
  left: 56px;
  top: 70px;
  margin: 0 !important;
  pointer-events: none;
}

.bolit-cpp-letters p {
  margin: 0;
  padding: 0;
}

.bolit-cpp-phone a,
.bolit-cpp-form-help a {
  text-decoration: none;
  transition: color 180ms ease;
}

.bolit-cpp-phone a:hover,
.bolit-cpp-form-help a:hover {
  color: #ef2b32 !important;
}

.bolit-cpp-scroll-button .et_pb_button {
  box-shadow: 0 13px 30px rgba(239, 43, 50, 0.18);
}

.bolit-cpp-form-row {
  display: grid !important;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.bolit-cpp-form-row > .et_pb_column {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.bolit-cpp-form-copy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bolit-cpp-form-copy::before {
  content: "CPP";
  position: absolute;
  z-index: -1;
  right: -52px;
  bottom: -22px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  font: 800 clamp(170px, 17vw, 300px)/0.75 Montserrat, sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.bolit-cpp-form-copy::after {
  content: "";
  position: absolute;
  left: 70px;
  top: 0;
  width: 150px;
  height: 4px;
  background: #ef2b32;
}

.bolit-cpp-form-panel {
  position: relative;
}

.bolit-cpp-form-panel::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 22px;
  height: 100%;
  background: #ef2b32;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  pointer-events: none;
}

.bolit-cpp-form,
.bolit-cpp-form .wpcf7 {
  width: 100%;
}

.bolit-cpp-form .bolit-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.bolit-cpp-form .bolit-field-full,
.bolit-cpp-form .bolit-cf7-grid > p:has(.bolit-field-full) {
  grid-column: 1 / -1;
  width: 100%;
}

.bolit-cpp-form label,
.bolit-cpp-form label > span:first-child {
  display: block;
}

.bolit-cpp-form label > span:first-child {
  margin-bottom: 8px;
  color: #35353b;
  font: 700 12px/1.3 Montserrat, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bolit-cpp-form input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
.bolit-cpp-form select,
.bolit-cpp-form textarea {
  width: 100%;
  margin: 0;
  padding: 16px 17px;
  border: 1px solid rgba(239, 43, 50, 0.45);
  border-radius: 0;
  outline: 0;
  background: #f5f4f1;
  color: #101014;
  font: 500 15px/1.45 Montserrat, sans-serif;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.bolit-cpp-form textarea {
  min-height: 145px;
  resize: vertical;
}

.bolit-cpp-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2364646c' d='m5 7 5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  cursor: pointer;
}

.bolit-cpp-form input:focus,
.bolit-cpp-form select:focus,
.bolit-cpp-form textarea:focus {
  border-color: #ef2b32;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(239, 43, 50, 0.1);
}

.bolit-cpp-form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bolit-cpp-form .wpcf7-list-item {
  margin: 0;
}

.bolit-cpp-form .wpcf7-list-item label {
  position: relative;
  cursor: pointer;
}

.bolit-cpp-form .wpcf7-list-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bolit-cpp-form .wpcf7-list-item-label {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(16, 16, 20, 0.14);
  background: #f5f4f1;
  color: #35353b;
  font: 700 13px/1.3 Montserrat, sans-serif;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.bolit-cpp-form .wpcf7-list-item input:checked + .wpcf7-list-item-label {
  border-color: #ef2b32;
  background: #ef2b32;
  color: #ffffff;
}

.bolit-cpp-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 51px;
  padding: 17px 28px;
  border: 0;
  border-radius: 0;
  background: #ef2b32;
  color: #ffffff;
  font: 700 13px/1.3 Montserrat, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.bolit-cpp-form .bolit-cf7-submit {
  margin-top: 4px;
}

.bolit-cpp-form input[type="submit"]:hover {
  transform: translateY(-3px);
  background: #151519;
  box-shadow: 0 14px 30px rgba(16, 16, 20, 0.16);
}

.bolit-cpp-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #c91f27;
  font-size: 12px;
}

.bolit-cpp-form .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 14px 16px !important;
  border: 1px solid #ef2b32 !important;
  font-family: Montserrat, sans-serif;
}

@media (max-width: 980px) {
  .bolit-cpp-letters {
    left: 42px;
    top: 54px;
  }

  .bolit-cpp-form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .bolit-cpp-form-copy::after {
    left: 52px;
  }

  .bolit-cpp-form-panel::before {
    width: 100%;
    height: 16px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}

@media (max-width: 600px) {
  .bolit-cpp-letters {
    left: 24px;
    top: 38px;
  }

  .bolit-cpp-form-copy::after {
    left: 28px;
    width: 100px;
    height: 3px;
  }

  .bolit-cpp-form .bolit-cf7-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
  }

  .bolit-cpp-form .bolit-field-full,
  .bolit-cpp-form .bolit-cf7-grid > p:has(.bolit-field-full) {
    grid-column: auto;
  }

  .bolit-cpp-form input[type="submit"] {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolit-cpp-phone a,
  .bolit-cpp-form-help a,
  .bolit-cpp-form input,
  .bolit-cpp-form select,
  .bolit-cpp-form textarea,
  .bolit-cpp-form .wpcf7-list-item-label {
    transition: none;
  }
}
/* PC BOLIT O NAS */

.bolit-about-page-story-section,
.bolit-about-page-values-section,
.bolit-about-page-mission-section {
  position: relative;
  overflow: hidden;
}

.bolit-about-page-story-section::before {
  content: "";
  position: absolute;
  width: min(760px, 54vw);
  aspect-ratio: 1;
  right: -14%;
  top: -45%;
  border: 78px solid rgba(239, 43, 50, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.bolit-about-page-story-row,
.bolit-about-page-mission-row {
  position: relative;
  z-index: 1;
  gap: 0;
}

.bolit-about-page-story-visual,
.bolit-about-page-mission-visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bolit-about-page-story-photo,
.bolit-about-page-story-photo .et_pb_image_wrap,
.bolit-about-page-story-photo img,
.bolit-about-page-mission-photo,
.bolit-about-page-mission-photo .et_pb_image_wrap,
.bolit-about-page-mission-photo img {
  width: 100%;
  height: 100%;
}

.bolit-about-page-story-photo,
.bolit-about-page-mission-photo {
  position: absolute !important;
  inset: 0;
  margin: 0 !important;
}

.bolit-about-page-story-photo {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
}

.bolit-about-page-story-photo img,
.bolit-about-page-mission-photo img {
  display: block;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.bolit-about-page-story-visual::after,
.bolit-about-page-mission-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 12, 0.34));
  pointer-events: none;
}

.bolit-about-page-story-label {
  z-index: 4;
  width: auto !important;
}

.bolit-about-page-kicker p,
.bolit-about-page-story-text p,
.bolit-about-page-values-intro p,
.bolit-about-page-mission-text p {
  margin: 0;
}

.bolit-about-page-story-text p + p {
  margin-top: 18px;
}

.bolit-about-page-stats-module {
  margin-top: 34px;
}

.bolit-about-page-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bolit-about-page-stat {
  position: relative;
  min-height: 132px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1b1b20;
  transition: transform 180ms ease, border-color 180ms ease;
}

.bolit-about-page-stat::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: #ef2b32;
}

.bolit-about-page-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 43, 50, 0.6);
}

.bolit-about-page-stat strong,
.bolit-about-page-stat span {
  display: block;
  font-family: Montserrat, sans-serif;
}

.bolit-about-page-stat strong {
  color: #ef2b32;
  font-size: clamp(28px, 2.1vw, 38px);
  font-weight: 800;
  line-height: 1;
}

.bolit-about-page-stat span {
  margin-top: 15px;
  color: #aaaab1;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bolit-about-page-values-section::before {
  content: "";
  position: absolute;
  width: 52%;
  height: 1px;
  left: -8%;
  top: 18%;
  background: rgba(239, 43, 50, 0.35);
  transform: rotate(-9deg);
  pointer-events: none;
}

.bolit-about-page-values-row {
  position: relative;
  z-index: 1;
}

.bolit-about-page-values-intro {
  width: min(820px, 100%);
  margin: 0 auto;
}

.bolit-about-page-values-module {
  margin-top: 52px;
}

.bolit-about-page-values-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.bolit-about-page-value {
  position: relative;
  grid-column: span 2;
  min-height: 270px;
  margin: 0;
  padding: 34px 30px 32px;
  border: 1px solid #dedbd7;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 16, 20, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.bolit-about-page-value:nth-child(4) {
  grid-column: 2 / span 2;
}

.bolit-about-page-value:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 43, 50, 0.5);
  box-shadow: 0 24px 56px rgba(16, 16, 20, 0.1);
}

.bolit-about-page-value::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: #ef2b32;
  transition: width 200ms ease;
}

.bolit-about-page-value:hover::after {
  width: calc(100% - 60px);
}

.bolit-about-page-value > span {
  display: block;
  margin-bottom: 28px;
  color: #ef2b32;
  font: 800 13px/1 Montserrat, sans-serif;
  letter-spacing: 0.12em;
}

.bolit-about-page-value h3 {
  margin: 0 0 14px;
  color: #101014;
  font: 800 20px/1.25 Montserrat, sans-serif;
}

.bolit-about-page-value p {
  margin: 0;
  color: #6d6d74;
  font: 400 14px/1.7 Montserrat, sans-serif;
}

/* PC BOLIT O NAS â€” MISSION */

.bolit-about-page-mission-section::after {
  content: "B";
  position: absolute;
  right: -4%;
  bottom: -10%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
  font: 800 clamp(360px, 37vw, 680px)/0.75 Montserrat, sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.bolit-about-page-mission-copy {
  position: relative;
  z-index: 2;
}

.bolit-about-page-mission-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ef2b32;
}

.bolit-about-page-mission-text blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 3px solid #ef2b32;
  background: #222228;
  color: #ffffff;
  font: 700 16px/1.6 Montserrat, sans-serif;
}

.bolit-about-page-mission-actions {
  gap: 12px;
  margin-top: 32px;
}

.bolit-about-page-button-secondary .et_pb_button {
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background: transparent !important;
}

.bolit-about-page-button-secondary .et_pb_button:hover {
  border-color: #ef2b32 !important;
  background: #ef2b32 !important;
}

.bolit-about-page-mission-photo {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}

@media (max-width: 980px) {
  .bolit-about-page-story-row,
  .bolit-about-page-mission-row {
    gap: 0;
  }

  .bolit-about-page-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bolit-about-page-value,
  .bolit-about-page-value:nth-child(4) {
    grid-column: auto;
  }

  .bolit-about-page-value:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .bolit-about-page-stats,
  .bolit-about-page-values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bolit-about-page-stat {
    min-height: 112px;
  }

  .bolit-about-page-value,
  .bolit-about-page-value:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .bolit-about-page-mission-actions {
    gap: 10px;
  }

  .bolit-about-page-story-photo {
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 6%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolit-about-page-stat,
  .bolit-about-page-value,
  .bolit-about-page-value::after {
    transition: none;
  }
}
/* PC BOLIT CONTACT PAGE â€” HERO */

.bolit-contact-page-hero-section,
.bolit-contact-page-main-section {
  position: relative;
  overflow: hidden;
}

.bolit-contact-page-hero-section::before {
  content: "B";
  position: absolute;
  right: -3%;
  top: -12%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
  font: 800 clamp(380px, 38vw, 680px)/0.75 Montserrat, sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.bolit-contact-page-hero-row,
.bolit-contact-page-main-row {
  position: relative;
  z-index: 1;
}

.bolit-contact-page-kicker p,
.bolit-contact-page-intro p,
.bolit-contact-page-form-kicker p,
.bolit-contact-page-form-intro p {
  margin: 0;
}

.bolit-contact-page-intro {
  width: min(680px, 100%);
  margin: 0 auto;
}

.bolit-contact-page-cards-module {
  margin-top: 50px;
}

.bolit-contact-page-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bolit-contact-page-card {
  position: relative;
  min-height: 190px;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #1b1b20;
  color: #ffffff;
  text-decoration: none;
  transition: transform 190ms ease, border-color 190ms ease, background-color 190ms ease;
}

.bolit-contact-page-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: #ef2b32;
  transition: width 190ms ease;
}

.bolit-contact-page-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 43, 50, 0.55);
  background: #202026;
}

.bolit-contact-page-card:hover::after {
  width: 100%;
}

.bolit-contact-page-card span,
.bolit-contact-page-card small,
.bolit-contact-page-card strong {
  display: block;
  font-family: Montserrat, sans-serif;
}

.bolit-contact-page-card span {
  margin-bottom: 26px;
  color: #ef2b32;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.bolit-contact-page-card small {
  margin-bottom: 10px;
  color: #77777f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.bolit-contact-page-card strong {
  color: #ffffff;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* PC BOLIT CONTACT PAGE FORM AND MAP */

.bolit-contact-page-main-section::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  right: -9%;
  top: 17%;
  background: rgba(239, 43, 50, 0.3);
  transform: rotate(-9deg);
  pointer-events: none;
}

.bolit-contact-page-main-row {
  display: grid !important;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  box-shadow: 0 30px 80px rgba(16, 16, 20, 0.14);
}

.bolit-contact-page-main-row > .et_pb_column {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.bolit-contact-page-form-column,
.bolit-contact-page-map-column {
  position: relative;
  overflow: hidden;
}

.bolit-contact-page-form-column::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 148px;
  height: 4px;
  background: #ef2b32;
}

.bolit-contact-page-form,
.bolit-contact-page-form .wpcf7 {
  width: 100%;
}

.bolit-contact-page-form .bolit-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bolit-contact-page-form .bolit-field-full,
.bolit-contact-page-form .bolit-cf7-grid > p:has(.bolit-field-full) {
  grid-column: 1 / -1;
  width: 100%;
}

.bolit-contact-page-form label,
.bolit-contact-page-form label > span:first-child {
  display: block;
}

.bolit-contact-page-form label > span:first-child {
  margin-bottom: 8px;
  color: #35353b;
  font: 700 11px/1.3 Montserrat, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bolit-contact-page-form input:not([type="submit"]),
.bolit-contact-page-form textarea {
  width: 100%;
  margin: 0;
  padding: 16px 17px;
  border: 1px solid rgba(239, 43, 50, 0.42);
  border-radius: 0;
  outline: 0;
  background: #f5f3f0;
  color: #101014;
  font: 500 15px/1.45 Montserrat, sans-serif;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.bolit-contact-page-form textarea {
  min-height: 160px;
  resize: vertical;
}

.bolit-contact-page-form input:focus,
.bolit-contact-page-form textarea:focus {
  border-color: #ef2b32;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(239, 43, 50, 0.1);
}

.bolit-contact-page-form input[type="submit"] {
  min-width: 210px;
  min-height: 51px;
  padding: 17px 28px;
  border: 0;
  border-radius: 0;
  background: #ef2b32;
  color: #ffffff;
  font: 700 13px/1.3 Montserrat, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.bolit-contact-page-form input[type="submit"]:hover {
  background: #151519;
}

.bolit-contact-page-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #c91f27;
  font-size: 12px;
}

.bolit-contact-page-form .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 14px 16px !important;
  border: 1px solid #ef2b32 !important;
  font-family: Montserrat, sans-serif;
}

.bolit-contact-page-map-module,
.bolit-contact-page-map-module .et_pb_text_inner {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 100%;
}

.bolit-contact-page-map-head small {
  display: block;
  margin-bottom: 12px;
  color: #ef2b32;
  font: 700 12px/1.3 Montserrat, sans-serif;
  letter-spacing: 0.16em;
}

.bolit-contact-page-map-head h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font: 800 clamp(30px, 3vw, 44px)/1.08 Montserrat, sans-serif;
  letter-spacing: -0.035em;
}

.bolit-contact-page-map-head p {
  margin: 0;
  color: #aaaab1;
  font: 500 15px/1.5 Montserrat, sans-serif;
}

.bolit-contact-page-map-frame {
  flex: 1 1 auto;
  min-height: 390px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.bolit-contact-page-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.bolit-contact-page-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 51px;
  margin-top: 22px;
  padding: 16px 26px;
  background: #ef2b32;
  color: #ffffff;
  font: 700 12px/1.3 Montserrat, sans-serif;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.bolit-contact-page-map-link:hover {
  transform: translateY(-3px);
  background: #ffffff;
  color: #101014;
}

@media (max-width: 980px) {
  .bolit-contact-page-main-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .bolit-contact-page-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bolit-contact-page-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .bolit-contact-page-cards,
  .bolit-contact-page-form .bolit-cf7-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bolit-contact-page-card:last-child,
  .bolit-contact-page-form .bolit-field-full,
  .bolit-contact-page-form .bolit-cf7-grid > p:has(.bolit-field-full) {
    grid-column: auto;
  }

  .bolit-contact-page-form input[type="submit"],
  .bolit-contact-page-map-link {
    width: 100%;
  }

  .bolit-contact-page-map-frame,
  .bolit-contact-page-map-frame iframe {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolit-contact-page-card,
  .bolit-contact-page-card::after,
  .bolit-contact-page-map-link,
  .bolit-contact-page-form input,
  .bolit-contact-page-form textarea {
    transition: none;
  }
}
/* PC BOLIT PRICELIST PAGE â€” PACKAGES */

.bolit-pricelist-page-main-section,
.bolit-pricelist-page-notes-section {
  position: relative;
  overflow: hidden;
}

.bolit-pricelist-page-main-section::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  right: -10%;
  top: 13%;
  background: rgba(239, 43, 50, 0.32);
  transform: rotate(-9deg);
  pointer-events: none;
}

.bolit-pricelist-page-heading-row,
.bolit-pricelist-page-extras-row,
.bolit-pricelist-page-notes-row {
  position: relative;
  z-index: 1;
}

.bolit-pricelist-page-kicker p,
.bolit-pricelist-page-notes-kicker p {
  margin: 0;
}

.bolit-pricelist-page-track-notice {
  width: min(900px, 100%);
  margin: 26px auto 0;
  padding: 18px 24px;
  border-left: 4px solid #ef2b32;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 16, 20, 0.06);
}

.bolit-pricelist-page-track-notice p {
  margin: 0;
  color: #626269;
  font: 500 14px/1.65 Montserrat, sans-serif;
  text-align: center;
}

.bolit-pricelist-page-track-notice strong {
  color: #101014;
}

.bolit-pricelist-page-extras {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.bolit-pricelist-page-extras > div {
  position: relative;
  min-height: 180px;
  padding: 34px 38px;
  border: 1px solid rgba(16, 16, 20, 0.12);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(16, 16, 20, 0.06);
}

.bolit-pricelist-page-extras > div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 4px;
  background: #ef2b32;
}

.bolit-pricelist-page-extras small,
.bolit-pricelist-page-extras strong {
  display: block;
  font-family: Montserrat, sans-serif;
}

.bolit-pricelist-page-extras small {
  margin-bottom: 18px;
  color: #6d6d74;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.bolit-pricelist-page-extras strong {
  color: #101014;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.bolit-pricelist-page-extras strong span {
  color: #ef2b32;
  font-size: 0.44em;
  vertical-align: top;
}

.bolit-pricelist-page-extras p {
  margin: 8px 0 0;
  color: #898990;
  font: 500 12px/1.4 Montserrat, sans-serif;
}

/* PC BOLIT PRICELIST PAGE â€” REQUIRED NOTES */

.bolit-pricelist-page-notes-section::before {
  content: "B";
  position: absolute;
  right: -4%;
  bottom: -18%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
  font: 800 clamp(360px, 36vw, 650px)/0.75 Montserrat, sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.bolit-pricelist-page-notes-module {
  width: 100%;
}

.bolit-pricelist-page-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: bolit-note;
}

.bolit-pricelist-page-notes li {
  position: relative;
  min-height: 76px;
  margin: 0 0 12px;
  padding: 23px 26px 23px 82px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1b1b20;
  color: #c4c4c9;
  font: 500 14px/1.65 Montserrat, sans-serif;
  counter-increment: bolit-note;
}

.bolit-pricelist-page-notes li::before {
  content: "0" counter(bolit-note);
  position: absolute;
  left: 24px;
  top: 22px;
  color: #ef2b32;
  font: 800 13px/1.3 Montserrat, sans-serif;
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .bolit-pricelist-page-extras {
    grid-template-columns: minmax(0, 1fr);
  }

  .bolit-pricelist-page-notes li {
    padding-left: 66px;
  }

  .bolit-pricelist-page-notes li::before {
    left: 20px;
  }
}
/* PC BOLIT VOZNI PARK */

.bolit-fleet-page-section {
  position: relative;
  overflow: hidden;
}

.bolit-fleet-page-section::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 72px solid rgba(239, 43, 50, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.bolit-fleet-page-intro,
.bolit-fleet-page-gallery-row {
  position: relative;
  z-index: 1;
}

.bolit-fleet-page-intro {
  overflow: hidden;
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%, 0 34px);
}

.bolit-fleet-page-intro::before {
  content: "B";
  position: absolute;
  right: -44px;
  bottom: -92px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  font: 800 clamp(260px, 24vw, 430px)/0.8 Montserrat, sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.bolit-fleet-page-intro::after {
  content: "";
  position: absolute;
  left: 74px;
  top: 0;
  width: 150px;
  height: 4px;
  background: #ef2b32;
}

.bolit-fleet-page-copy {
  position: relative;
  z-index: 1;
}

.bolit-fleet-page-copy .bolit-fleet-page-kicker {
  margin: 0 0 18px;
  color: #ef2b32;
  font: 700 13px/1.3 Montserrat, sans-serif;
  letter-spacing: 0.18em;
}

.bolit-fleet-page-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font: 800 clamp(40px, 5vw, 70px)/1.06 Montserrat, sans-serif;
  letter-spacing: -0.045em;
}

.bolit-fleet-page-copy .bolit-fleet-page-lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: #b7b7bd;
  font: 400 17px/1.7 Montserrat, sans-serif;
}

.bolit-fleet-page-gallery-module,
.bolit-fleet-page-gallery-module .et_pb_text_inner {
  width: 100%;
}

.bolit-fleet-page-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bolit-fleet-page-item {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #101014;
  box-shadow: 0 16px 38px rgba(16, 16, 20, 0.1);
  isolation: isolate;
}

.bolit-fleet-page-item::before {
  content: "+";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ef2b32;
  color: #fff;
  font: 300 34px/1 Montserrat, sans-serif;
  opacity: 0;
  transform: translate(-50%, -40%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.bolit-fleet-page-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(16, 16, 20, 0.08), rgba(16, 16, 20, 0.62));
  opacity: 0;
  transition: opacity 220ms ease;
}

.bolit-fleet-page-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(.2, .75, .25, 1), filter 220ms ease;
}

.bolit-fleet-page-item:hover::before,
.bolit-fleet-page-item:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.bolit-fleet-page-item:hover::after,
.bolit-fleet-page-item:focus-visible::after {
  opacity: 1;
}

.bolit-fleet-page-item:hover img,
.bolit-fleet-page-item:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}

.bolit-fleet-page-item:focus-visible {
  outline: 3px solid #ef2b32;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .bolit-fleet-page-intro::after {
    left: 52px;
  }

  .bolit-fleet-page-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .bolit-fleet-page-intro {
    clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px);
  }

  .bolit-fleet-page-intro::after {
    left: 28px;
    width: 100px;
    height: 3px;
  }

  .bolit-fleet-page-copy h1 {
    font-size: 38px;
  }

  .bolit-fleet-page-copy .bolit-fleet-page-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .bolit-fleet-page-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bolit-fleet-page-item::before,
  .bolit-fleet-page-item::after,
  .bolit-fleet-page-item img {
    transition: none;
  }
}

.bolit-fleet-page-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
}

.bolit-fleet-page-card {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent;
}

.bolit-fleet-page-image {
  display: block;
  overflow: hidden;
}

.bolit-fleet-page-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 250ms ease;
}

.bolit-fleet-page-image:hover img {
  transform: scale(1.025);
}

.bolit-fleet-page-card figcaption {
  display: block;
  margin: 0;
  padding: 12px 2px 0;
  background: transparent;
  color: #151519;
  font: 700 15px/1.4 Montserrat, sans-serif;
}

@media (max-width: 980px) {
  .bolit-fleet-page-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .bolit-fleet-page-gallery {
    grid-template-columns: minmax(0, 1fr);
  }
}



