/**
 * [Table of contents]
 *   1 Base
     2 Section Banner
**/
/** @group Base */
/** @section Reset Styles*/
:root {
	--main-color: #F4F4F5;
	--sawa-color: #96c11f;
	--green-color: #84CC16;
	--green-dark: #65A30D;
	--black-color: #040404;
	--light-gray: #D4D4D8;
	--gray-color: #27272A;
	--dark-gray: #18181B;
    --middle-gray: #3F3F46;
	--text-gray: #A1A1AA;
	--text-gray-dark:#71717A;
	--medium-gray: #52525B;
	--faq-gray: #E4E4E7;


}
@font-face {
  font-family: 'Inter';
  src: 
    url('../fonts/Inter_18pt-Regular.woff2') format('woff2'),
    url('../fonts/Inter_18pt-Regular.woff') format('woff'),
    url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 16px; /* 1rem */
  scroll-behavior: smooth;
}
body{
	background-color: #3F3F46;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
h1{
 font-size: 3rem;
 font-weight: 600;
} 
h2{
 font-size: 2rem;
 color: var(--main-color);
 font-weight: 600;
}  
h3{
 font-size: 1.4rem;
 color: var(--main-color);
 font-weight: 600;
} 
h4{
  font-size: 1rem;
 color: var(--main-color);
 font-weight: 600;
}
@media (max-width: 767.98px) {
  h2{
    font-size: 1.5rem;
    color: var(--main-color);
    font-weight: 600;
  }
}
.text_white{
	color: var(--main-color);
}
.text_green{
	color: var(--green-color);
}
.text_lgray{
    color: var(--light-gray);
}
.text_black{
	color: var(--black-color);
}
.text_span{
 font-size: 0.8rem;
 font-weight: 600;
}

.ta-center{
	text-align: center;
}
.ta-right{
	text-align: right;
}

.border-radius-10{
	border-radius: 10px;
}

.f600{
 font-weight: 600; 
}

/** @section Page layout */
.page {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}
.page.fadeIn {
	animation-timing-function: ease-out;
}
.page.fadeOut {
	animation-timing-function: ease-in;
}
[data-x-mode] .page {
	opacity: 1;
}

.topbar{
   background-color: #3F3F46;
   height: 37px;
   padding-top: 5px;
}
ul.list_main{
    list-style: none;
    padding: 0;
    margin: 0;
	vertical-align: middle;
}
ul.list_main li{
    padding-right: 10px;
  vertical-align: middle;
  display: table-cell;
}
ul.list_main li a{
	color: var(--green-color);
	font-weight: 600;
	text-decoration: none;
}
ul.list_main li a:hover{
	color: var(--main-color);
}

ul.list_main li .list_image{
	height: 40px;
}
.top-left{
	float: left;
}
.top-right {
    float: right;
}
.top-icon{
    width: 24px;
    height: 24px;
    background-color: #A1A1AA;
    border-radius: 12px;
    text-align: center;
    vertical-align: middle;
}
.top-icon i{
    color: #3F3F46;
}

.border-left{
	border-left: var(--medium-gray) 2px solid;
}


.button{
	float: left;
	width: auto;	
    border: solid 1px var(--green-color);
    background: transparent;
    padding: 0px 24px 0px 24px;
    height: 40px;
    border-radius: 6px;
    outline: none;
    transition-duration: .2s;
	box-shadow: none;
	color: var(--main-color);
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
	cursor: pointer;
}
.button.green{
    background-color:  var(--green-color);
}
.linespan{
	display: block;
}

@media (min-width: 1800px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1240px;
    }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-buttons li {
  display: block;
  padding-right: 0;
}

.hero-buttons .button {
  float: none;
}

@media (max-width: 767.98px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons li {
    width: 100%;
  }

  .hero-buttons .button {
    width: 100%;
  }
}

.section_all {
 
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 20.10417vw;
}

/*-------------------Text----------------------------------------------*/
.text-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.text-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

/* зелена галочка */

.text-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green-color);
  font-size: 14px;
}


/*-------------------Backgrounds---------------------------------------*/
.bkg-gray{
	background-color: var(--gray-color);
}
.bkg-middle-gray{
	background-color: var(--middle-gray);
}
.bkg_l_to_d{
  background: linear-gradient(
    to bottom,
    var(--middle-gray),
    var(--gray-color)
  );
}
.bkg_d_to_l{
  background: linear-gradient(
    to bottom,
    var(--gray-color),
    var(--middle-gray)
  );
}
/*-------------------SECTION MENU--------------------------------------*/
.menubar {
  background-color: var(--gray-color);
  padding-top: 7px;
  padding-bottom: 7px;
  position: relative;
  z-index: 2;
}

.menubar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.desktop-nav {
  flex: 1;
}

ul.navbar {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
}

ul.navbar li {
  position: relative;
  font-weight: 700;
  padding: 0;
  float: none;
}

.rd-nav-link {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.list_main {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.list_main li {
  margin: 0;
  padding: 0;
}

.lang-link {
  color: var(--green-color);
  text-decoration: none;
  font-weight: 700;
}

.button {
  width: auto;
  border: solid 1px var(--green-color);
  background: transparent;
  padding: 0 24px;
  min-height: 40px;
  border-radius: 6px;
  outline: none;
  transition-duration: .2s;
  box-shadow: none;
  color: var(--main-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.button.green {
  background-color: var(--green-color);
}

/* desktop dropdown */
.has-dropdown:hover .rd-navbar-dropdown {
  display: block;
}

.rd-navbar-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #1f2026;
  list-style: none;
  margin: 0px;
  padding: 10px 0;
  border-radius: 8px;
  z-index: 20;
}

.rd-navbar-dropdown li {
  padding: 0;
}

.rd-navbar-dropdown a {
  display: block;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
}

.rd-navbar-dropdown a:hover {
  background: rgba(255,255,255,0.06);
}

/* MOBILE CONTROLS hidden on desktop */
.mobile-controls,
.mobile-menu-panel {
  display: none;
}

/* MENU BUTTON */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.mobile-menu-text {
  font-size: 14px;
}

.burger-lines {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #fff;
}

.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: 0.25s ease;
}

.burger-lines::before {
  top: -6px;
}

.burger-lines::after {
  top: 6px;
}

.mobile-menu-toggle.active .burger-lines {
  background: transparent;
}

.mobile-menu-toggle.active .burger-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .burger-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* MOBILE PANEL */
.mobile-menu-panel {
  display: none;
}

.mobile-menu-panel.open {
  display: block;
}

.mobile-menu-panel {
  margin-top: 10px;
  background: #202127;
  border-radius: 12px;
  padding: 16px;
}

.mobile-navbar {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-navbar > li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-navbar > li:last-child {
  border-bottom: none;
}

.mobile-navbar a,
.mobile-submenu-toggle {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0 0 0 16px;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu a {
  font-weight: 400;
  padding: 8px 0;
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.mobile-buttons .button {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .menubar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menubar-inner {
    gap: 12px;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .mobile-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .top-left svg {
    width: 140px;
    height: auto;
  }

  .mobile-menu-panel {
    display: none;
  }

  .mobile-menu-panel.open {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .top-left svg {
    width: 30px;
  }

  .mobile-menu-toggle {
    padding: 0 12px;
    gap: 8px;
  }

  .mobile-menu-text {
    font-size: 13px;
  }
}
/*-------------------SECTION BANNER------------------------------------*/
.section-banner {
  position: relative;
  overflow: hidden;
  background: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 40.10417vw;
}
.section-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45); /* регулюй затемнення тут */
	z-index: 2;
}

.section-banner-bg {
   position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}
.section-banner .container {
    position: relative;
    z-index: 2;
}

.section-banner .container {
    position: relative;
    z-index: 2;
}
@media (min-width: 1200px) {
	.section-banner {
		min-height: 60vh;
	}
}
.ie-10 .section-banner, .ie-11 .section-banner {
	height: 60vh;
}

.liZam_dsk{
    display: inline-flex;
   }
.liZam_mob{
    display: none;
}

@media (max-width: 991.98px) {
   .liZam_dsk{
    display: none;
   }
   .liZam_mob{
    display: inline-flex;
   }
}
/*-------------------SECTION COUNTS------------------------------------*/
.section-counts {
	background-color: var(--dark-gray);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}
.counts{
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .counts-slider-wrap {
    overflow: hidden;
    width: 100%;
  }

  .counts-slider {
    display: flex;
    flex-wrap: nowrap;
    margin-left: 0;
    margin-right: 0;
    transition: transform 0.5s ease;
  }

  .counts-slider > div {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.section-kierowca-steps,
.section-counts-kierowca {
	background-color: var(--gray-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}
/*-------------------SECTION APP------------------------------------*/
.section-app {
	background-color: var(--gray-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}
.gborder{
  background: linear-gradient(135deg, rgba(120,255,80,.55), rgba(0,0,0,0) 55%),
              linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0));
  padding: 1px;              
  border-radius: 1.25rem;   
}  
.hero-card__inner{
  background: var(--dark-gray);       
  border-radius: 1.25rem;
}
.hero-media{
  position: relative;
  min-height: 260px; 
  overflow: hidden;
  border-radius: 10px;
}
.hero-media::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
    pointer-events: none;
}

.hero-media__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media__img::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}   
@media (max-width: 767.98px) {
  .hero-media__img{
    margin-top:10px;
    margin-bottom: 10px;
}
}

.hero-media__grad{
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 30% 70%, rgba(120,255,80,.35), rgba(0,0,0,0) 60%),
              linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,0) 50%);
  pointer-events: none;
}
.slogan{
  font-size: 3rem;
  font-weight: 600;
  z-index: 5;
}
@media (max-width: 991.98px) {
	.slogan{
  font-size: 1.5rem;
  font-weight: 600;
}
}
/*-------------------SECTION PST------------------------------------*/
.section-pst {
	background: linear-gradient(
    to bottom,
    var(--gray-color),
    var(--middle-gray)
  );
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}
.pst_block{
	background: var(--gray-color);
	padding: 20px;              
    border-radius: 1.25rem; 
}
.pst_img{
  width: 70%;
  display: block;
}
/*-----------------SECTION PARTNERS----------------------------------*/
.section-pst {
	background-color: var(--middle-gray);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}
/*.logo-out-box{
	width: 100px;
    height: 60px;
	padding: 10px;
    background-color: #E4E4E7;
	border-radius: 10px;
}*/
.logo-box {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: grayscale(100%);
	width: 90px;
    height: 60px;
	text-align: center;
}
/*.logo-img{
    height: 50px;
}*/
.logo-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .partners-slider {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    height: 240px; /* 3 рядки */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .partners-slider::-webkit-scrollbar {
    display: none;
  }

  .partners-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .partners-slider > div {
    width: 33.3333%;
    max-width: 33.3333%;
    flex: 0 0 33.3333%;
    height: 80px;
    margin: 0 !important;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .partners-slider .logo-box {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .partners-slider .logo-img {
    max-height: 52px;
    width: auto;
    max-width: 100%;
  }
}
/*---------------------SECTION PST BACKWARD bkg------------------------------------*/
.section-pst-bkw{
	background: linear-gradient(
    to bottom,
    var(--middle-gray),
    var(--gray-color)
  );
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.45em; 
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1;
}
.img_w_slogan{
	position:relative;
}
.w_slogan{
	position: absolute;
	left: 50px;
	bottom: 50px;
	font-size: 1.8rem;
	font-weight: 600;
  z-index: 5;
}
@media (max-width: 991.98px) {
	.w_slogan{
  font-size: 1rem;
  font-weight: 600;
  left: 20px;
	bottom: 40px;
}
.img_w_slogan{
	width:97%;
}
}
/*-----------------------SECTION OPINIONS---------------------*/
.section-opinion{
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}

.opinie{
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.opinie::-webkit-scrollbar{
  display: none;
}

.opinie-track{
  display: flex;
  gap: 20px;
}

.opinia{
  flex: 0 0 calc(33.333% - 14px);
  background-color: var(--medium-gray);
  height: 400px;
  padding: 30px 20px;
  border-radius: 7px;
}

.opinia-title{
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.opinia-stars{
  margin-bottom: 10px;
}

.opinia-stars ul li{
  font-size: 0.7rem;
}

.opinia-text{
  margin-bottom: 10px;
}

/* dots */
.opinion-dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.opinion-dots .dot{
  width: 8px;
  height: 8px;
  background-color:var(--main-color);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all .25s ease;
}

.opinion-dots .dot.active{
  width: 18px;
  height: 8px;
  border-radius: 8px;
  background-color: var(--green-color);
}
/*-----------------------SECTION FAQ---------------------*/
.section-faq{
	background: linear-gradient(
    to bottom,
    var(--gray-color),
    var(--middle-gray)
	);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}
.faq-row {
    background-color: var(--medium-gray);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    min-height: auto;
    margin-left: 0;
    margin-right: 0;
}

.faq-row-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.faq-title {
    font-weight: 600;
    padding-top: 0;
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.4;
}

.faq-button {
    cursor: pointer;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-button img {
    display: block;
    width: 32px;
    height: 32px;
}

.faq-row-text {
    color: var(--faq-gray);
    display: none;
    font-size: 0.8rem;
    margin-top: 15px;
    width: 100%;
}
@media (max-width: 991.98px) {
    .faq-row {
        padding: 18px 16px;
        margin-bottom: 15px;
    }

    .faq-row-title {
        gap: 12px;
    }

    .faq-title {
        font-size: 0.95rem;
        line-height: 1.35;
        padding-right: 6px;
    }

    .faq-button img {
        width: 28px;
        height: 28px;
    }
}
/*-----------------------SECTION TEXT BLOCK---------------------*/
.section-text{
    background-color: var(--middle-gray); 
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}
.section-text h1{
	font-size: 1.5rem;
	color: var(--main-color);
}
.section-text h2{
	font-size: 1.4rem;
	color: var(--main-color);
}
.section-text h3{
	font-size: 1.3rem;
	color: var(--main-color);
}
.section-text h4{
	font-size: 1.2rem;
	color: var(--main-color);
}
.section-text p{
  font-size: 0.9rem;
}
.section-text ul li{
  font-size: 0.9rem;
}

/*-----------------------------------------------------------------------*/
/*-----------------STRONA KIEROWCA----------------------------------*/
/*-----------------------------------------------------------------------*/
/*-------------------SECTION KIEROWCA------------------------------------*/
.section-kierowca {
  background: linear-gradient(
    to bottom,
    var(--middle-gray),
    var(--gray-color)
  );
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 40.10417vw;
}
@media (min-width: 1200px) {
	.section-kierowca {
		min-height: 60vh;
	}
}

.form-box {
  background: var(--dark-gray);
  border-radius: 12px;
  color: var(--main-color);
}

.form-label {
  font-size: 14px;
  color: var(--main-color);
}

.form-control {
  background: var(--middle-gray);
  border: none;
  border-radius: 8px;
  color:var(--main-color);
  height: 48px;
  border-color: var(--medium-gray);
}

.form-control::placeholder {
  color: #a5a5a5;
}

.form-control:focus {
  background:var(--medium-gray);
  color:var(--main-color);
  box-shadow: none;
}

.form-check-label {
  font-size: 13px;
  color: #bfbfbf;
}

.btn-send {
  background: var(--green-color);
  border: none;
  color: var(--black-color);
  font-weight: 600;
  border-radius: 8px;
  height: 48px;
  transition: 0.2s;
  font-family: 'Inter';
  font-size: 1rem;
}

.btn-send:hover {
  background: var(--medium-gray);
}
/*-------------------SECTION KIEROWCA STEPS------------------------------------*/

.steps-row {
  row-gap: 40px;
}

.step-item {
  color: var(--main-color);
}

.step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.step-number {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--green-color);
  color: var(--black-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--medium-gray);
}

.step-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
}

.step-text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--main-color);
}
/*-------------------SECTION Gallery------------------------------------*/
.cars-section {
  background: var(--middle-gray);
}


.cars-wrapper {
  position: relative;
}


.cars-track {
  display: flex;
  gap: 10px;
  padding: 0 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cars-track::-webkit-scrollbar {
  display: none;
}


.car-card {
  flex: 0 0 auto;
  width: 360px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
}

.car-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.cars-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--main-color);
  border-radius: 50%;
  opacity: 0.6;
  transition: all 0.2s;
}

.dot.active {
  background: var(--green-color);
  opacity: 1;
  width: 18px;
  border-radius: 10px;
}
.g-0{
  margin-right: 0px;
}
/*-------------------SECTION CTA------------------------------------*/
.section-cta{
  background-color: var(--gray-color); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 5vw;
}

.cta-box {
  position: relative;
  background: var(--black-color);
  border-radius: 20px;
  overflow: hidden;
  color: var(--main-color);
  border: var(--text-gray) solid 1px;
  isolation: isolate;
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--green-dark) 0%, var(--black-color) 70%);
  pointer-events: none;
  z-index: 0;
}

/* текст і кнопка поверх градієнта */
.cta-text,
.cta-button {
  position: relative;
  z-index: 2;
}

.cta-small {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--main-color);
  text-transform: uppercase;
}

.cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main-color);
}

.cta-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b5b5b5;
}

.btn-outline-success {
  border-radius: 10px;
  border-width: 2px;
  font-weight: 600;
  color: #6CFF2B;
}

.btn-outline-success:hover {
  background: #6CFF2B;
  color: #000;
}

/* мобільна версія */
@media (max-width: 767.98px) {
  .cta-box {
    padding: 1.5rem !important;
  }

  .cta-box::after {
    right: -90px;
    bottom: -90px;
    width: 280px;
    height: 280px;
  }

  .cta-title {
    font-size: 1.9rem;
    line-height: 1.15;
  }

  .cta-desc {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .cta-button {
    margin-top: 1.25rem;
  }
}

/*-----------------------------------------------------------------------*/
/*-----------------STRONA KLIENT BIZNESOWY----------------------------------*/
/*-----------------------------------------------------------------------*/
/*-------------------SECTION Banner------------------------------------*/
.section-banner-klientB {
	background: url("../images/klient-biznesowy-01.jpg") no-repeat center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 30vw;
  position: relative;
  overflow: hidden; 
  z-index: 1;
}


.section-banner-klientB::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 0;
}

.section-banner-klientB > * {
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
	.section-banner {
		min-height: 60vh;
	}
  
}
.ie-10 .section-banner, .ie-11 .section-banner {
	height: 60vh;
}
@media (max-width: 991px) {
.section-banner-klientB {
    background-position-x: -600px;
    padding-top: 3rem;
    padding-bottom: 3rem;
       
}
  
}

/*-------------------SECTION Brands------------------------------------*/
.section-brands {
  background: var(--dark-gray);
  padding-top: 20px;
  padding-bottom: 20px;
}

/* DESKTOP */
.brands-strip {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: var(--dark-gray);
}

.brand-item {
  flex: 1 1 20%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  text-decoration: none;
  border-right: 1px solid var(--brand-border);
  position: relative;
  transition: 0.3s ease;
}

.brand-item:first-child {
  border-left: 1px solid var(--brand-border);
}

.brand-item img {
  max-height: 22px;
  max-width: 120px;
  width: auto;
  opacity: 0.9;
  transition: 0.3s ease;
}

.brand-item:hover img {
  opacity: 1;
}

.brand-item.active {
  box-shadow: inset 0 0 0 2px var(--blue-accent);
  z-index: 2;
}

/* MOBILE marquee */
.mobile-brands {
  display: none;
}

.brands-marquee {
  overflow: hidden;
  width: 100%;
  background: var(--dark-gray);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: brandsScroll 18s linear infinite;
}

.brands-track .brand-item {
  flex: 0 0 auto;
  width: 160px;
  min-height: 56px;
  border-left: 1px solid var(--brand-border);
  border-right: none;
}

@keyframes brandsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .desktop-brands {
    display: none;
  }

  .mobile-brands {
    display: block;
  }

  .brands-track .brand-item img {
    max-height: 20px;
    max-width: 105px;
  }
}
/*------------------------SECTION OFFERS---------------------*/
.section-offers{
  background: linear-gradient(
    to bottom,
    var(--middle-gray),
    var(--gray-color)
  );
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}

.offers-title {
  font-weight: 700;
}

.text-green {
  color: var(--green-color);
}

.offers-subtitle {
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.85;
}

/* Карточки */

.offer-card {
  background: var(--dark-gray);
  border-radius: 14px;  
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px var(--dark-gray);
}
.offer-pad{
   padding: 28px;
}
.offer-img {
  height: 290px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    border-radius: 14px;
}
.offer-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-content h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.offer-content p {
  font-size: 14px;
  color: #bbb;
  flex-grow: 1;
}


.offer-head {
  margin-bottom: 25px;
  border-radius: 14px;
  background: linear-gradient(
    to bottom,
    var(--middle-gray),
    var(--gray-color)
  );
  padding: 15px;
  border: var(--middle-gray) solid 2px;
  height: 220px;
}

.offer-name {
  font-weight: 600;
  margin-bottom: 8px;
}
.offer-text{
  text-align: left;
  height: 70px;
}

.offer-note {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 8px;
  text-align: center;
}

.btn-green {
  background: var(--green-color);
  color: var(--dark-gray);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  padding-bottom: 10px;
}

.btn-outline-green {
  background: transparent;
  border: 2px solid var(--green-color);
  color: var(--green-color);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  padding-bottom: 10px;
}

.btn-green:hover,
.btn-outline-green:hover {
  opacity: 0.9;
}

/* Список */

.offer-body h4 {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--main-color);
  font-size: 1rem;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list li {
  position: relative;
  margin-bottom: 10px;
}

/* зелена галочка */

.offer-list li::before {
 /* content: "✔";*/
  position: absolute;
  left: 0;
  color: var(--green-color);
  font-size: 14px;
}

/* неактивні */

.offer-list li.muted {
  color: var(--text-gray);
}

.offer-list li.muted::before {
  color: var(--text-gray);
}

/* MOBILE */

@media (max-width: 991px) {

  .offer-card {
    padding: 22px;
  }

}
/*-----------------------SECTION CLIENTS COUNT--------------*/
.section-klient-counts{
  background: var(--gray-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}

.section-klient-counts .offer-scale-box {
  background: var(--dark-gray);
  border: var(--middle-gray) solid 2px;
  border-radius: 18px;
  padding: 42px 48px 34px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.section-klient-counts .offer-scale-content {
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-klient-counts .offer-scale-title {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 18px;
}

.section-klient-counts .offer-scale-title span {
  color: var(--green-color);
}

.section-klient-counts .offer-scale-text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.section-klient-counts .offer-scale-stats {
  margin-left: 0;
  margin-right: 0;
}

.section-klient-counts .stat-item {
  margin-bottom: 20px;
}

.section-klient-counts .stat-number {
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 8px;
}

.section-klient-counts .stat-number span {
  color: var(--green-color);
}

.section-klient-counts .stat-label {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 768px) {
  .section-klient-counts .offer-scale-stats {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .section-klient-countsr .stat-item {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .section-klient-counts .offer-scale-box {
    padding: 28px 22px 24px;
    border-radius: 16px;
  }

  .section-klient-counts .offer-scale-content {
    margin-bottom: 26px;
  }

  .section-klient-counts .offer-scale-title {
    font-size: 1.85rem;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .section-klient-counts .offer-scale-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .section-klient-counts .offer-scale-stats {
    row-gap: 18px;
  }

  .section-klient-counts .stat-item {
    margin-bottom: 18px;
  }

  .section-klient-counts .stat-item:last-child {
    margin-bottom: 0;
  }

  .section-klient-counts .stat-number {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .section-klient-counts .stat-label {
    font-size: 0.82rem;
  }
}

@media (max-width: 575.98px) {
  .section-klient-counts .offer-scale-box {
    max-width: 360px;
    margin: 0 auto;
  }

  .section-klient-counts .offer-scale-stats > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.section-pst-mono-dark{
  background: var(--gray-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}

/*----------------------SECTION 3block---------------------*/
section-3block {
  text-align: center;
}

.value-card {
  background: var(--dark-gray);
  border-radius: 12px;
  padding: 28px 22px;
  border: var(--middle-gray) 2px solid;
  height: 200px;
  transition: all .25s ease;
}

.value-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--main-color);
  margin: 0;
}

.taxi-card{
  padding: 28px 22px;
  border-right: var(--text-gray-dark) 2px solid;
  height: 250px;
  transition: all .25s ease;
}
/* опціонально — легкий hover */
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
}

/*----------------------APP-CARDS--------------------------*/
.app-card {
  background: var(--gray-color);
  border-radius: 12px;
  padding: 28px 22px;
  transition: all .25s ease;
  height: 230px;
}

.app-card h5 {
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 12px;
  color: var(--main-color);
}

.app-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--main-color);
  margin: 0;
}


/* опціонально — легкий hover */
.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
}

/*----------------------AKTUALNOSCI--------------------------*/
.act h1 {
  font-size: 1.1rem;
  color: var(--main-color);
}
/*----------------------APP-CARDS--------------------------*/
.act-card {
  border-radius: 12px;
  padding: 28px 22px;
  transition: all .25s ease;
  height: 230px;
}

.act-card h5 {
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 12px;
  color: var(--main-color);
}

.act-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--main-color);
  margin: 0;
}

.act-img {
  height: 140px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    border-radius: 5px;
}
.act-content {
  padding: 10px 0px 5px 0px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.act-data{
  color: var(--text-gray);
  font-size: 0.6rem;
}

.act-content p{
  font-size: 0.8rem;
}

.act-link{
  color: var(--green-color);
  text-decoration: underline;
  font-size: 0.8rem;
}


/* опціонально — легкий hover */
.act-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
}

/*-----------------------TABLE-----------------------------*/
.table{
    color: var(--main-color);
    background-color: var(--dark-gray);
    border-left: 2px solid var(--medium-gray);
    border-right: 2px solid var(--medium-gray);
    font-size: 0.8rem;
  }
  .table tr{
    border-top: 2px solid var(--medium-gray);
    border-bottom: 2px solid var(--medium-gray);
  }
  .cennikH1{
    color: var(--main-color);
    font-size: 1.5rem;
  }

/*-----------------------SECTION FOOTER---------------------*/
footer {
	background-color: var(--gray-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 5vw;
}
.gray_underline{
	border-bottom: var(--middle-gray) solid 2px;
}
.f_caps{
   color: var(--main-color);
   text-transform: uppercase;
}
.f_caps_dark{
   color: var(--text-gray-dark);
   text-transform: uppercase;
}
.f_text_gray{
   color: var(--text-gray);
}
.f_text_light_gray{
   color: var(--light-gray);
}

a .footer_link, a .footer_link:visited{
	color: var(--light-gray);
}
a .footer_link:hover{
	color: var(--text-gray);
}
/*-----------------FORM----------------------------*/

.newpopup-overlay {
  position: fixed;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(10, 10, 16, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.zamowFormat {
  display: none;
  z-index:90;
}


.newpopup-overlay .newpopup-window {
  position: relative;
  width: 100%;
  max-width: 1040px;
  border-radius: 16px;
  background: var(--gray-color);
  border: 1px solid var(--dark-gray);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.newpopup-overlay .newpopup-content {
  padding: 28px;
}

.newpopup-overlay .newpopup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 20;
}

.newpopup-overlay .newpopup-close .form-field {
  margin: 0;
}

.newpopup-overlay .custom-btn.d-color {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s ease;
}

.newpopup-overlay .custom-btn.d-color:hover {
  background: rgba(255,255,255,0.1);
  color: var(--main-color);
}

@media (max-width: 767.98px) {
  .newpopup-overlay.zamowFormat {
    align-items: flex-start;
    padding: 14px 10px;
  }

  .newpopup-overlay .newpopup-window {
    max-width: 100%;
    border-radius: 14px;
  }

  .newpopup-overlay .newpopup-content {
    padding: 18px 14px 16px;
  }
}

.taxi-form-theme > .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.taxi-form-theme > .row > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}
.taxi-form-theme .card-row{
   background: var(--dark-gray);
  border: 1px solid var(--middle-gray);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.taxi-form-theme .card-box {
  height: 100%;
  min-height: 100%;
  padding: 22px 18px 20px;
}

.taxi-form-theme .cb-title {
  margin: 0 0 22px;
  padding-right: 40px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--main-color);
  letter-spacing: -0.02em;
}

.taxi-form-theme .cb-body .row,
.taxi-form-theme .card-box .row {
  margin-left: -8px;
  margin-right: -8px;
}

.taxi-form-theme .cb-body .row > [class*="col-"],
.taxi-form-theme .card-box .row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.taxi-form-theme .form-title {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--light-gray);
}

.taxi-form-theme .req {
  color: var(--green-color);
}

.taxi-form-theme .form-field {
  margin-bottom: 16px;
}

.taxi-form-theme input[type="text"],
.taxi-form-theme input[type="date"],
.taxi-form-theme input[type="time"],
.taxi-form-theme select,
.taxi-form-theme textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  background: var(--middle-gray);
  color: var(--main-color);
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  transition: .2s ease;
  box-shadow: none;
}

.taxi-form-theme textarea {
  min-height: 160px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.taxi-form-theme input::placeholder,
.taxi-form-theme textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.taxi-form-theme input:focus,
.taxi-form-theme select:focus,
.taxi-form-theme textarea:focus {
  border-color: rgba(136, 212, 15, 0.75);
  box-shadow: 0 0 0 3px rgba(136, 212, 15, 0.12);
}

.taxi-form-theme .checkbox,
.taxi-form-theme .radio {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  cursor: pointer;
  color: var(--main-color);
  font-size: 14px;
  line-height: 1.4;
}

.taxi-form-theme .checkbox input,
.taxi-form-theme .radio input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.taxi-form-theme .checkbox .ckbox,
.taxi-form-theme .radio .ckbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.taxi-form-theme .checkbox .ckbox::before,
.taxi-form-theme .radio .ckbox::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--middle-gray);
  border: 1px solid var(--middle-gray);
  transition: .2s ease;
}

.taxi-form-theme .checkbox .ckbox::before {
  border-radius: 4px;
}

.taxi-form-theme .radio .ckbox::before {
  border-radius: 50%;
}

.taxi-form-theme .checkbox input:checked ~ .ckbox::before,
.taxi-form-theme .radio input:checked ~ .ckbox::before {
  background: var(--green-color);
  border-color: var(--green-color);
}

.taxi-form-theme .radio input:checked ~ .ckbox::before {
  box-shadow: inset 0 0 0 5px #2a2a31;
}

.taxi-form-theme .ZamowTaxiFin.d-color {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--green-color);
  color: var(--dark-gray);
  font-size: 16px;
  font-weight: 700;
  transition: .2s ease;
}

.taxi-form-theme .ZamowTaxiFin.d-color:hover {
  background: var(--green-color);
  transform: translateY(-1px);
}

.taxi-form-theme .btn-margin {
  margin-top: 8px;
}

.taxi-form-theme .bezgotowka_field {
  display: none;
}

.taxi-form-theme .bezgotowka_field.active {
  display: block;
}

.taxi-form-theme #form_mess {
  min-height: 12px;
  color: #fc5555;
  font-weight: 600;
  font-size: 1.3rem;
}

.taxi-form-theme #map2 {
  width: 100%;
  min-height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--middle-gray);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 18px;
}

#ekk {
    display: none;
}

@media (min-width: 768px) {
  .taxi-form-theme > .row {
    align-items: stretch;
  }

  .taxi-form-theme > .row > .col-sm-6 {
    display: flex;
  }

  .taxi-form-theme > .row > .col-sm-6 > .card-box {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .taxi-form-theme .cb-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .taxi-form-theme .card-box {
    padding: 16px 12px 16px;
  }

  .taxi-form-theme > .row > .col-sm-6 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .taxi-form-theme > .row > .col-sm-6:last-child {
    margin-bottom: 0;
  }

  .taxi-form-theme #map2 {
    min-height: 220px;
  }

  .taxi-form-theme textarea {
    min-height: 120px;
  }
}
.messageWin {
    display: none;
    z-index: 100;
}
/*.newpopup-overlay .zamowFormat {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(10, 10, 16, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.zamowFormat {
  display: none;
}

.newpopup-overlay.zamowFormat .newpopup-window {
  position: relative;
  width: 100%;
  max-width: 1040px;
  border-radius: 16px;
  background: var(--gray-color);
  border: var(--dark-gray);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.newpopup-overlay.zamowFormat .newpopup-content {
  padding: 28px;
}

.newpopup-overlay.zamowFormat .newpopup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 20;
}

.newpopup-overlay.zamowFormat .newpopup-close .form-field {
  margin: 0;
}

.newpopup-overlay.zamowFormat .custom-btn.d-color {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #d8d8dd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s ease;
}

.newpopup-overlay.zamowFormat .custom-btn.d-color:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.newpopup-overlay.zamowFormat .formLK > .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.newpopup-overlay.zamowFormat .formLK > .row > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

.newpopup-overlay.zamowFormat .card-box {
  height: 100%;
  min-height: 100%;
  background: rgba(18, 18, 24, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 18px 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.newpopup-overlay.zamowFormat .cb-title {
  margin: 0 0 22px;
  padding-right: 40px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--main-color);
  letter-spacing: -0.02em;
}

.newpopup-overlay.zamowFormat .cb-body .row,
.newpopup-overlay.zamowFormat .card-box .row {
  margin-left: -8px;
  margin-right: -8px;
}

.newpopup-overlay.zamowFormat .cb-body .row > [class*="col-"],
.newpopup-overlay.zamowFormat .card-box .row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.newpopup-overlay.zamowFormat .form-title {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}

.newpopup-overlay.zamowFormat .req {
  color: var(--green-color);
}

.newpopup-overlay.zamowFormat .form-field {
  margin-bottom: 16px;
}

.newpopup-overlay.zamowFormat input[type="text"],
.newpopup-overlay.zamowFormat input[type="date"],
.newpopup-overlay.zamowFormat input[type="time"],
.newpopup-overlay.zamowFormat select,
.newpopup-overlay.zamowFormat textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  background: var(--middle-gray);
  color: var(--main-color);
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  transition: .2s ease;
  box-shadow: none;
}

.newpopup-overlay.zamowFormat textarea {
  min-height: 160px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.newpopup-overlay.zamowFormat input::placeholder,
.newpopup-overlay.zamowFormat textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.newpopup-overlay.zamowFormat input:focus,
.newpopup-overlay.zamowFormat select:focus,
.newpopup-overlay.zamowFormat textarea:focus {
  border-color: rgba(136, 212, 15, 0.75);
  box-shadow: 0 0 0 3px rgba(136, 212, 15, 0.12);
}

.newpopup-overlay.zamowFormat .checkbox,
.newpopup-overlay.zamowFormat .radio {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  cursor: pointer;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.4;
}

.newpopup-overlay.zamowFormat .checkbox input,
.newpopup-overlay.zamowFormat .radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.newpopup-overlay.zamowFormat .checkbox .ckbox,
.newpopup-overlay.zamowFormat .radio .ckbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.newpopup-overlay.zamowFormat .checkbox .ckbox::before,
.newpopup-overlay.zamowFormat .radio .ckbox::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--middle-gray);
  color: var(--main-color);
  transition: .2s ease;
}

.newpopup-overlay.zamowFormat .checkbox .ckbox::before {
  border-radius: 4px;
}

.newpopup-overlay.zamowFormat .radio .ckbox::before {
  border-radius: 50%;
}

.newpopup-overlay.zamowFormat .checkbox input:checked + .ckbox::before,
.newpopup-overlay.zamowFormat .radio input:checked + .ckbox::before {
  background: var(--green-color);
  border-color: var(--green-color);
  box-shadow: inset 0 0 0 4px #2a2a31;
}

.newpopup-overlay.zamowFormat .ZamowTaxiFin.d-color {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background:var(--green-color);
  color: var(--dark-gray);
  font-size: 16px;
  font-weight: 700;
  transition: .2s ease;
}

.newpopup-overlay.zamowFormat .ZamowTaxiFin.d-color:hover {
  background: var(--green-color);
  transform: translateY(-1px);
}

.newpopup-overlay.zamowFormat .btn-margin {
  margin-top: 8px;
}

.newpopup-overlay.zamowFormat .bezgotowka_field {
  display: none;
}

.newpopup-overlay.zamowFormat .bezgotowka_field.active {
  display: block;
}

.newpopup-overlay.zamowFormat #form_mess {
  min-height: 12px;
}

.newpopup-overlay.zamowFormat #map2 {
  width: 100%;
  min-height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--middle-gray);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 18px;
}


@media (min-width: 768px) {
  .newpopup-overlay.zamowFormat .formLK > .row {
    align-items: stretch;
  }

  .newpopup-overlay.zamowFormat .formLK > .row > .col-sm-6 {
    display: flex;
  }

  .newpopup-overlay.zamowFormat .formLK > .row > .col-sm-6 > .card-box {
    width: 100%;
  }
}


@media (max-width: 767.98px) {
  .newpopup-overlay.zamowFormat {
    align-items: flex-start;
    padding: 14px 10px;
  }

  .newpopup-overlay.zamowFormat .newpopup-window {
    max-width: 100%;
    border-radius: 14px;
  }

  .newpopup-overlay.zamowFormat .newpopup-content {
    padding: 18px 14px 16px;
  }

  .newpopup-overlay.zamowFormat .cb-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .newpopup-overlay.zamowFormat .card-box {
    padding: 16px 12px 16px;
  }

  .newpopup-overlay.zamowFormat .formLK > .row > .col-sm-6 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .newpopup-overlay.zamowFormat .formLK > .row > .col-sm-6:last-child {
    margin-bottom: 0;
  }

  .newpopup-overlay.zamowFormat #map2 {
    min-height: 220px;
  }

  .newpopup-overlay.zamowFormat textarea {
    min-height: 120px;
  }
}*/
.section-rejestracja h1{
  font-size: 2rem;
}
#pst{
   scroll-margin-top: 80px;
}
.messageKierowca{
  display: none;
}
#c_code{
  display: none;
}