/*******************************************************
    Template Name    : 		Carzone - Best Car Repair HTML and CSS Website Template
*******************************************************/

/**************************************
 * CSS Variables - Design Colors
 *************************************/
:root {
	/* Background Colors */
	--color-bg-section: #D2E6EF;
	--color-header-bg: rgba(0, 0, 0, 0.96);

	/* Text Colors */
	--color-text-heading: #333333;
	--color-text-body: #555555;
	--color-text-secondary: #C00113;
	--color-text-hybrid-zone: #009EE3;
	--color-text-accordion: #333333;
	--color-text-subheading: rgba(255, 255, 255, 0.66);
	/* FFFFFF 66% opacity */
	--color-text-subheading-h2: #6C757D;
	--color-text-above-heading: #019EE3;

	/* CTA & Hover Colors */
	--color-cta-primary: #C00113;
	--color-cta-secondary: #0A4159;
	--color-hover-red: #C00113;

	/* Hero Hybrid Radial Gradients - Desktop */
	--gradient-1-size-x: 560px;
	--gradient-1-size-y: 300px;
	--gradient-1-pos-x: 76%;
	--gradient-1-pos-y: 83%;

	--gradient-2-size-x: 600px;
	--gradient-2-size-y: 400px;
	--gradient-2-pos-x: -2%;
	--gradient-2-pos-y: 3%;

	--gradient-3-size-x: 600px;
	--gradient-3-size-y: 400px;
	--gradient-3-pos-x: 96%;
	--gradient-3-pos-y: -14%;

	/* Navbar Heights */
	--navbar-height: 100px;
	/* Desktop výška navbaru */
	--navbar-height-mobile: 80px;
	/* Mobile výška navbaru */
}

/**************************************
 * General Style
 *************************************/

html {
	scroll-padding-top: calc(var(--navbar-height) + 20px);
	/* Prevent horizontal overflow caused by decorative elements (neons) */
	/* Using clip instead of hidden to avoid creating scrolling container (breaks sticky) */
	overflow-x: clip;
}

body {
	background: #ffffff;
	color: #333;
	font-family: 'Oxanium', sans-serif;
	font-size: 15px;
	font-weight: normal;
	line-height: 26px;
	overflow-x: clip;
	margin: 0 auto;
	padding: 0;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: 'Oxanium', sans-serif;
	font-weight: normal;
	color: #333;
	line-height: 1.5;
}

a {
	color: #c00113;
	text-decoration: none !important;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

img {
	max-width: 100%;
}

a:hover {
	color: #c00113;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

a:hover,
a:focus {
	color: #c00113;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0;
	font-size: 15px;
	color: #555;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0.5px;
	font-family: 'Oxanium', sans-serif;
}

.z-index {
	z-index: 9;
}

.position-relative {
	position: relative !important;
}

.form-control:focus {
	box-shadow: none;
	outline: 0 none;
	border-bottom: 1px solid #c00113;
}

.btn:focus {
	outline: none !important;
	box-shadow: none;
}

button:focus {
	outline: 0 none;
	box-shadow: none;
}

.button:focus {
	outline: none;
	box-shadow: none;
}

.button {
	position: relative;
	z-index: 2;
	display: inline-block;
	padding: 15px 70px;
	text-align: center;
	font-size: 20px;
	text-transform: none;
	letter-spacing: 0px;
	font-weight: 400;
	border-radius: 0.25rem;
	color: #ffffff;
	background: none;
	cursor: pointer;
	margin-top: 25px;
	overflow: hidden;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.button:hover {
	color: #fff;
}

.button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .5;
	background-color: #c00113;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}

.button:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #c00113;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}

.button:hover:before {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.button:hover:after {
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.button-large:focus {
	outline: none;
	box-shadow: none;
}

.button-large {
	position: relative;
	z-index: 2;
	display: inline-block;
	padding: 14px 59px;
	text-align: center;
	font-size: 32px;
	text-transform: none;
	letter-spacing: 0px;
	font-weight: 400;
	border: 2px solid #ffffff;
	border-radius: 2px;
	color: #ffffff;
	background: none;
	cursor: pointer;
	margin-top: 50px;
	overflow: hidden;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.button-large:hover {
	color: #fff;
}

.button-large:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .5;
	background-color: #c00113;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}

.button-large:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #c00113;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}

.button-large:hover:before {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.button-large:hover:after {
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.btn-red {
	padding: 10px 20px;
	background: #c00113;
	border-radius: 0.5rem;
	color: #ffffff;
}

.btn-black {
	padding: 10px 20px;
	background: #000;
	border-radius: 0.5rem;
	color: #ffffff;
}

.btn-gray {
	padding: 10px 20px;
	background: rgb(132, 132, 132);
	border-radius: 0.5rem;
	color: #ffffff;
}

.bg-gray {
	background-color: #f8f8f9;
}

.bg-none {
	background: none !important;
}

.color-text {
	color: #c00113;
}

dl,
ol,
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.mr-15 {
	margin-right: 15px;
}

.m-3 {
	margin: 5px;
}

.d-table {
	width: 100%;
	height: 100%;
}

.d-table-cell {
	vertical-align: middle;
}

.bg-fixed {
	background-attachment: fixed;
}

.bg-img {
	background-size: cover;
	background-repeat: no-repeat;
}

h5 {
	color: #c00113;
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 10px;
	text-transform: none;
	letter-spacing: 0.7px;
	font-family: 'Oxanium', sans-serif;
}

.section-padding {
	padding: 30px 0;
	position: relative;
}

.section-title {
	text-align: center;
	margin-bottom: 32px;
}

.section-title h5 {
	font-size: 14px;
	color: #a1a1a1;
	font-weight: 400;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	font-family: 'Oxanium', sans-serif;
	margin: 0 auto;
	border: 1px solid;
	border-radius: 0.25rem;
	padding: 7px 20px;
	display: inline-table;
}

.section-title h2 {
	font-weight: 500;
	text-transform: none;
	font-size: 40px;
	line-height: 1.3;
	color: #333;
	margin-bottom: 8px;
}

/* ── Promo / O nás sekce ── */
#promo {
	padding: 80px 0;
}

#promo .promo-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-bottom: 60px;
}

#promo .promo-header h2 {
	font-family: 'Oxanium', sans-serif;
	font-weight: 500;
	font-size: 40px;
	line-height: 52px;
	text-align: center;
	color: #333333;
	margin: 0;
}

#promo .promo-subtitle {
	font-family: 'Oxanium', sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 42px;
	text-align: center;
	color: #6C757D;
	margin: 0;
}

#promo .promo-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

#promo .promo-text p {
	max-width: 800px;
	font-family: 'Oxanium', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 31px;
	text-align: center;
	letter-spacing: 0.5px;
	color: #555555;
	margin: 0;
}

.display-table {
	width: 100%;
	height: 100%;
	display: table;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}

.mr-0 {
	margin: 0;
}

.mr-top-50 {
	margin-top: 50px;
}

.back-to-top {
	position: fixed;
	cursor: pointer;
	top: 0;
	right: 15px;
	color: #ffffff;
	background: #c00113;
	z-index: 1000;
	width: 40px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .9s;
	transition: .9s;
}

.back-to-top:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: #000000;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	border-radius: 0.25rem;
}

.back-to-top:hover:before,
.back-to-top:focus:before {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus {
	color: #ffffff;
}

.back-to-top.active {
	top: 97%;
	-webkit-transform: translateY(-98%);
	transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
	border-radius: 0.25rem;
}

.back-to-top i:last-child {
	opacity: 0;
	visibility: hidden;
	top: 60%;
}

.back-to-top:hover i:first-child,
.back-to-top:focus i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}

.back-to-top:hover i:last-child,
.back-to-top:focus i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}

.back-to-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	font-size: 20px;
}

.v-middle {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.valign {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* [ Start Overlay ] */

[data-overlay-dark],
[data-overlay-light] {
	position: relative;
}

[data-overlay-dark] .container,
[data-overlay-light] .container {
	position: relative;
	z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-light]:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

[data-overlay-dark]:before {
	background: #c00113;
}

[data-overlay-light]:before {
	background: #fff;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
	color: #fff;
}

.bg-b {
	background-color: #000000;
}

[data-overlay-dark] p,
.bg-dark p,
.bg-color p {
	color: #dad6d6;
}

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
	opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
	opacity: .1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
	opacity: .2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
	opacity: .3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
	opacity: .4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
	opacity: .5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
	opacity: .6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
	opacity: .7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
	opacity: .8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
	opacity: .9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
	opacity: 1;
}

/* [ End Overlay ] */

/* owl theme */

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
	width: 7px;
	height: 7px;
	margin: 5px 5px;
	background-color: rgba(0, 0, 0, 0.1);
	display: block;
	/* Fixes flickering/blurriness during transitions in WebKit browsers */
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 8px;
	transition: .3s;
	border: 2px solid transparent;
}

.owl-theme .owl-dots .owl-dot.active span {
	background-color: #c00113 !important;
	width: 7px;
	height: 7px;
	transition: .3s;
	-webkit-box-shadow: 0 1px 5px #c00113;
	box-shadow: 0 1px 5px #c00113;
	/* Fixes flickering/blurriness during transitions in WebKit browsers */
	backface-visibility: visible;
}

.owl-theme .owl-dots .owl-dot:hover span {
	background-color: transparent;
	border: 2px solid #c00113;
	transition: .3s;
}

.single-page {
	margin-top: 143px;
	position: relative;
	z-index: 5;
}

.breadcrumb {
	justify-content: center;
	border-radius: 0.75em;
}

/**************************************
 ** Preloader Area CSS
 **************************************/
.preloader {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: fixed;
	z-index: 99999999;
	height: 100%;
	width: 100%;
	background-color: #fff;
}

.preloader .preloader-wapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100vh;
}

.spinner-loader {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
	border-radius: 0.25rem;
}

.spinner-loader div {
	position: absolute;
	border: 4px solid #c00113;
	opacity: 1;
	border-radius: 0;
	-webkit-animation: spinner-loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	animation: spinner-loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	border-radius: 0.25rem;
}

.spinner-loader div:nth-child(2) {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s;
	border-radius: 0.25rem;
}

@-webkit-keyframes spinner-loader {
	0% {
		top: 35px;
		left: 35px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: -1px;
		left: -1px;
		width: 70px;
		height: 70px;
		opacity: 0;
	}
}

@keyframes spinner-loader {
	0% {
		top: 35px;
		left: 35px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: -1px;
		left: -1px;
		width: 70px;
		height: 70px;
		opacity: 0;
	}
}

/**************************************
 * Navber Area Style
 *************************************/
.zr-theme-menu-header-navber-area {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 1030;
	background: transparent;
}

/* Old top bar removed */
.zr-theme-menu-header-navber-area .nav-top-bar {
	display: none !important;
}

.zr-theme-menu-header-navber-area .nav-top-bar .call-to-action p {
	margin: 0 0 0 20px;
	display: inline-block;
	color: #c00113;
	font-family: 'Oxanium', sans-serif;
	font-size: 17px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0.5px;
}

.zr-theme-menu-header-navber-area .nav-top-bar .call-to-action p i {
	margin-right: 3px;
	font-size: 16px;
}

.zr-theme-menu-header-navber-area .nav-top-bar .call-to-action p a,
.zr-theme-menu-header-navber-area .nav-top-bar .call-to-action p a:active,
.zr-theme-menu-header-navber-area .nav-top-bar .call-to-action p a:hover,
.zr-theme-menu-header-navber-area .nav-top-bar .call-to-action p a:focus {
	color: #c00113;
}

.zr-theme-menu-header-navber-area .nav-top-bar .top-social {
	float: right;
	padding: 0;
	margin: 0 0 0 10px;
	list-style-type: none;
}

.zr-theme-menu-header-navber-area .nav-top-bar .top-social li {
	display: inline-block;
}

.zr-theme-menu-header-navber-area .nav-top-bar .top-social li a {
	color: #c00113;
	font-size: 17px;
	margin-left: 10px;
}

.zr-theme-menu-header-navber-area .nav-top-bar .top-social li a:hover,
.zr-theme-menu-header-navber-area .nav-top-bar .top-social li a:focus {
	color: #c00113;
}

.zr-theme-menu-header-navber-area .nav-top-bar .opening-hours {
	float: right;
}

.zr-theme-menu-header-navber-area .nav-top-bar .opening-hours p {
	font-size: 15px;
	color: #ffffff;
	margin-bottom: 0;
}

.zr-theme-menu-header-navber-area .nav-top-bar .opening-hours p i {
	margin-right: 3px;
	font-size: 16px;
}

.zr-theme-menu-header-navber-area .nav-top-bar.template-color-bg {
	background: #c00113;
	border-bottom: none;
}

.zr-theme-menu-header-navber-area .nav-top-bar.template-color-bg .call-to-action p a {
	color: #ffffff;
}

.zr-theme-menu-header-navber-area .nav-top-bar.template-color-bg .top-social li a {
	color: #ffffff;
}

.mobile-social-custom {
	display: none;
}

.navbar-b {
	transition: all .5s ease-in-out;
	padding-top: 5px;
	padding-bottom: 5px;
	min-height: 100px;
	background: var(--color-header-bg);
	display: flex;
	align-items: center;
	margin-top: 8px;
	box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

.nav-right-wrapper {
	width: 100%;
}

.nav-info-bar .call-to-action p {
	margin: 0 0 0 25px;
	display: inline-block;
	color: #c00113;
	font-family: 'Oxanium', sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0.5px;
}

.nav-info-bar .call-to-action p a {
	color: #c00113 !important;
}

.nav-info-bar .top-social {
	display: inline-block;
	padding: 0;
	margin: 0 0 0 20px;
	list-style-type: none;
	vertical-align: middle;
}

.nav-info-bar .top-social li {
	display: inline-block;
	margin-left: 15px;
}

.nav-info-bar .top-social li a {
	color: #c00113 !important;
	font-size: 18px;
}

.nav-info-bar .top-social li:last-child {
	padding-right: .5rem;
}


.navbar-b .nav-item {
	position: relative;
	padding-right: 0px;
	padding-left: 5px;
}

.navbar-nav {
	margin-top: 8px;
}

.navbar-b .nav-link {
	color: #ffffff;
	text-transform: none;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	letter-spacing: 0.5px;
	padding-right: 0;
	padding-left: 15px;
	font-family: 'Oxanium', sans-serif;
}

.navbar-b .nav-link.hybrid-zone {
	color: #009EE3 !important;
	transition: text-shadow 0.4s ease-in-out;
}

.navbar-b .nav-link.hybrid-zone.active {
	color: #009EE3 !important;
	text-shadow: 0 0 10px rgba(0, 158, 227, 0.8), 0 0 30px rgba(0, 158, 227, 0.6), 0 0 60px rgba(0, 158, 227, 0.4);
}

.navbar-b .nav-link.hybrid-zone:hover {
	color: #009EE3 !important;
	text-shadow: 0 0 10px rgba(0, 158, 227, 0.8), 0 0 30px rgba(0, 158, 227, 0.6), 0 0 60px rgba(0, 158, 227, 0.4);
}

.navbar-b .nav-link:hover {
	color: #c00113 !important;
}

.navbar-b .show>.nav-link,
.navbar-b .active>.nav-link,
.navbar-b .nav-link.show,
.navbar-b .nav-link.active {
	color: #c00113 !important;
	font-weight: 900;
}

.navbar-b .book-now {
	color: #fff !important;
}

.navbar-b .book-now .nav-link {
	color: #fff !important;
}

.navbar-b .navbar-brand {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	/* z-index: 90; */
	position: relative;
}

/* Trapeze background removed */
.navbar-b .navbar-brand:before,
.navbar-b .navbar-brand:after {
	display: none !important;
}

.navbar-b .navbar-brand img {
	width: 180px;
	max-height: 70px;
	object-fit: contain;
	position: relative;
	z-index: 10000;
	padding: 5px;
}

@media (min-width: 992px) {
	.navbar-b .navbar-brand img {
		width: 280px;
	}
}

.navbar-b .navbar-nav .dropdown-item.show .dropdown-menu,
.navbar-b .dropdown.show .dropdown-menu,
.navbar-b .dropdown-btn.show .dropdown-menu {
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
	visibility: visible !important;
}

.navbar-b .dropdown-menu {
	margin: 1.12rem 0 0;
	border-radius: 0;
}

.navbar-b .dropdown-menu .dropdown-item {
	padding: .7rem 1.7rem;
	transition: all 500ms ease;
}

.navbar-b .dropdown-menu .dropdown-item:hover {
	background-color: #c00113;
	color: #fff;
	transition: all 500ms ease;
}

.navbar-b .dropdown-menu .dropdown-item.active {
	background-color: #c00113 !important;
}

.navbar-toggler {
	position: absolute;
	right: 13px;
	top: 16px;
	z-index: 10001;
}

.navbar-toggler:focus,
.navbar-toggler:active {
	outline: 0;
}


.navbar-toggler span {
	display: block;
	background-color: #D9D9D9;
	height: 3px;
	width: 25px;
	margin-top: 4px;
	margin-bottom: 4px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	position: relative;
	left: 0;
	opacity: 1;
	border-radius: 2px;
	transition: all 0.35s ease-in-out;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
	transition: -webkit-transform .35s ease-in-out;
	transition: transform .35s ease-in-out;
	transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
	position: absolute;
	left: 12px;
	top: 10px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
	height: 12px;
	visibility: hidden;
	background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
	position: absolute;
	left: 12px;
	top: 10px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	opacity: 0.9;
}

.navbar-b .black-logo {
	display: none;
}

.book-now {
	padding-left: 24px !important;
}

.book-now a {
	background: #c00113;
	border-radius: 2px;
	padding-right: 15px !important;
	color: #fff !important;
}

.book-now a:hover {
	background: #c00113;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

/**************************************
 * Home Section Style
 *************************************/

.home-area {
	position: relative;
	z-index: 1;
	text-align: center;
	background: url(../images/slider-1.jpg?d=2025);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
	padding-top: 150px;
	padding-bottom: 40px;
}

.home-area::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	opacity: .6;
	z-index: -1;
	background: #000 !important;
}

.hero-equal-height {
	position: relative;
	min-height: 100vh;
	-js-display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.home-area .home-content {
	margin-bottom: 50px;
}

.home-area .home-content h1 {
	font-size: 80px;
	color: #ffffff;
	margin-bottom: 10px;
	font-weight: 500;
	line-height: 1.5;
	font-family: 'Oxanium', sans-serif;
}

.home-area .home-content p {
	font-size: 15px;
	color: #ffffff;
}

.button.home-btn-1 {
	background: #c00113;
	margin-right: 15px;
	border: 2px solid #ffffff;
	color: #fff;
}

.home-app-button-box .img-app-btn-1 {
	margin-right: 15px;
}

/**************************************
 * Slider Home Style
 *************************************/

.slider {
	position: relative;
}

.slider.fixed-slider {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

.slider .swiper-slide-active {
	z-index: 3;
}

.slider .parallax-slider {
	position: relative;
}

.slider .parallax-slider .swiper-slide {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 100vh;
	padding-bottom: 50px;
}

.slider .parallax-slider .swiper-slide .bg-img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	background-position: center;
}

.form-bg {
	background: #e9ecef !important;
	border-radius: 16px !important;
	padding: 25px;
	-webkit-box-shadow: 0px 5px 30px 0px rgb(148 146 245 / 15%);
	box-shadow: 0px 5px 30px 0px rgb(148 146 245 / 15%);
	-webkit-backdrop-filter: saturate(180%) blur(5px);
	backdrop-filter: saturate(180%) blur(5px);
	background: hsla(0, 0%, 100%, .8);
}

.form-bg .button {
	background: #c00113;
	margin-top: 0;
}

.slider .parallax-slider .swiper-slide-active .caption h1 {
	opacity: 1;
	animation: fadeInLeft .8s;
	-webkit-animation-delay: 1s;
	animation-delay: .3s;
}

.slider .parallax-slider .caption {
	text-align: left;
}

.slider .parallax-slider .caption h1 {
	font-size: 77px;
	font-weight: 800;
	color: #fff;
	opacity: 1;
	visibility: visible;
	font-family: 'Oxanium', sans-serif;
}

.slider .parallax-slider .caption h3 {
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 20px;
	color: #c00113;
	opacity: 1;
	visibility: visible;
	font-family: 'Oxanium', sans-serif;
}

.slider .parallax-slider .caption h2 {
	font-family: 'Oxanium', cursive;
	color: #000;
}

.slider .parallax-slider .caption p {
	color: #fff;
	font-weight: 500;
	margin-top: 10px;
	opacity: 1;
}

.slider .parallax-slider .swiper-slide-active .caption p {
	color: #fff;
	font-weight: 500;
	margin-top: 10px;
	opacity: 1;
	animation: fadeInRight .8s;
}

.slider .parallax-slider .swiper-slide-active .caption .home-slider-btn {
	font-size: 16px;
	font-weight: 300;
	text-transform: none;
	letter-spacing: 1px;
	position: relative;
	opacity: 1;
	animation: fadeInUp 1s;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}

.slider .parallax-slider .swiper-slide-active .caption .home-slider-btn a {
	background: #c00113;
	color: #ffffff;
}

.slider .parallax-slider .swiper-slide-active .caption .home-slider-btn a:hover {
	color: #ffffff;
}

.slider .control-text {
	position: absolute;
	bottom: 0;
	z-index: 8;
	width: 100%;
	height: auto;
	align-items: center;
	/*display: flex;
	justify-content: space-between;*/
}

.slider .control-text .swiper-nav-ctrl {
	color: #eee;
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-left: 50px;
	margin-right: 50px;
	position: static;
	width: auto;
	height: auto;
	display: inline-block;
	background: transparent;
	padding: 6px 10px;
	border-radius: 5px;
}

.slider .control-text .swiper-nav-ctrl:after {
	font-size: 25px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 0.25rem;
	display: block;
	text-align: center;
	background: rgb(0, 0, 0, 0.3);
}

.slider .swiper-pagination-bullets {
	bottom: 20px;
}

.slider .swiper-pagination-bullet {
	background: #fff;
	opacity: .4;
}

.slider .swiper-pagination-bullet-active {
	background: #fff;
	opacity: 1;
	border: 2px solid #c00113;
}

.header-chef-image {
	position: absolute;
	bottom: 0;
	z-index: 90;
	right: 0;
}

.header-chef-image img {
	width: 100%;
	max-width: 600px;
}

.hero-social-links {
	right: 0;
	left: 0;
	position: absolute;
	bottom: 50px;
	z-index: 888888905;
	display: flex;
	flex-direction: row;
}

.hero-social-links a {
	font-size: 16px;
	color: #fff;
	height: 40px;
	width: 40px;
	text-align: center;
	border: 2px solid #ffffffff;
	line-height: 40px;
	border-radius: 0.25rem;
	margin: 20px;
}

.hero-social-links a i {
	color: #fff;
}

/*.section-design{*/
/*    background: url(../images/quality.png);*/
/*    background-position: top right;*/
/*    background-repeat: no-repeat;*/
/*    background-size: 20%;*/
/*}*/

/**************************************
 * Reapair Services Section Style
 *************************************/



#services .card {
	border-radius: 16px;
}

#services .card-img {
	max-height: 300px;
	object-fit: contain;
}


.zr-theme-single-service-card {
	min-height: 28em;
	margin-bottom: 10px;
	position: relative;
	background: #e9ecef;
	border-radius: 16px;
	padding: 25px;
	-webkit-box-shadow: 0px 5px 30px 0px rgb(148 146 245 / 15%);
	box-shadow: 0px 5px 30px 0px rgb(148 146 245 / 15%);
	overflow: hidden;
}

.zr-theme-single-service-card img {
	width: 90px;
}

.zr-theme-single-service {
	margin-bottom: 20px;
}

.repair-main-banner .video-btn {
	height: 70px;
	width: 70px;
	line-height: 70px;
	border-radius: 0.5rem;
	display: block;
	color: #fff;
	background: transparent;
	margin: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}

.iq-video.video-btn i {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 83px;
	background: linear-gradient(-48deg, #ffffff -30%, #c00113 60%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.repair-main-banner .video-btn {
	border-radius: 0.5 rem;
	display: block;
	-webkit-animation: ripple-white 1s linear infinite;
	animation: ripple-white 1s linear infinite;
	-webkit-transition: .5s;
	transition: .5s;
}

@-webkit-keyframes ripple-white {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
	}

	100% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
	}
}

@keyframes ripple-white {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4);
	}

	100% {
		-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0);
	}
}

.animation-bounce {
	-webkit-animation: bounce 3s infinite ease-in-out;
	-o-animation: bounce 3s infinite ease-in-out;
	-ms-animation: bounce 3s infinite ease-in-out;
	-moz-animation: bounce 3s infinite ease-in-out;
	animation: bounce 3s infinite ease-in-out;
}

@-webkit-keyframes bounce {
	0% {
		transform: translateY(-5px);
	}

	50% {
		transform: translateY(15px);
	}

	100% {
		transform: translateY(-5px);
	}
}

@keyframes bounce {
	0% {
		transform: translateY(-5px);
	}

	50% {
		transform: translateY(15px);
	}

	100% {
		transform: translateY(-5px);
	}
}

.bg-grey {
	background: #f5f5f5;
}

/**************************************
 * Reapair Services Section Style
 *************************************/
.features {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: 1;
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
}


.features.am-style {
	background: url(../images/am-style.jpeg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: 1;
	position: relative;

}

.features::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	opacity: .1;
	z-index: -1;
	background: #efefef;
}

.features hr {
	border-top: 1px solid rgb(255 255 255 / 58%);
}

.features h4 {
	color: #fff
}

.features p {
	color: #fff
}

.features .features-wrap {
	margin-top: 20px;
}

.features .feature-list i {
	color: #ffffff;
}

.features .feature-list p {
	line-height: 30px;
	color: #fff;
}

.features .section-block-bg {
	border-radius: 16px;
	padding: 25px;
	background: rgb(192 1 19 / 80%);
	-webkit-backdrop-filter: saturate(180%) blur(5px);
	backdrop-filter: saturate(180%) blur(5px);
	-webkit-box-shadow: 0px 5px 30px 0px rgb(148 146 245 / 15%);
	box-shadow: 0px 5px 30px 0px rgb(148 146 245 / 15%);
	overflow: hidden;
}

/**************************************
 * Menu Section Style
 *************************************/

.menu-day-area {
	position: relative;
	z-index: 1;
}

.menu-day-area::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: .35;
	z-index: -1;
}

.bg--cover {
	background-position: 50% 50% !important;
	background-size: cover !important;
}

.menu-day-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
}

.menu-day-product-content .menu-day-tab-header {
	text-align: left;
}


.menu-day-product-content .menu-day-tab-list .active {
	background: #c00113;
}

.menu-day-product-content .menu-day-tab-list li {
	display: inline-block;
	padding-right: 30px;
	padding-left: 30px;
	vertical-align: top;
}

.menu-day-product-content .menu-day-tab-list li a {
	display: block;
	color: #555;
	font-size: 20px;
	text-transform: none;
	line-height: 50px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
}

.menu-day-product-content .menu-day-tab-list li a i {
	font-size: 35px;
	vertical-align: middle;
}

.menu-single-tab-content.active {
	display: block;
}

.menu-single-tab-content {
	display: none;
}

.menu-day-product-content .menu-single-product-horizontal {
	border-bottom: 1px dashed #bbb;
	padding: 15px 0;
}

.menu-single-product-horizontal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
}

.zr-theme-menu-product-info-box {
	margin-bottom: 30px;
	position: relative;
	background: #e9ecef;
	border-radius: 16px;
	margin-top: 30px;
	padding: 25px;
	-webkit-box-shadow: 0px 5px 30px 0px rgb(148 146 245 / 15%);
	box-shadow: 0px 5px 30px 0px rgb(148 146 245 / 15%);
	overflow: hidden;
}

.menu-single-product-horizontal .zr-theme-menu-product-info-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	width: 100%;
	justify-content: space-between;
}

.menu-single-product-horizontal .menu-product-title {
	font-size: 18px;
	font-weight: 400;
	color: #c00113;
}

.main-price {
	position: absolute;
	right: 25px;
	top: 0;
	background: #c00113;
	display: flex;
	height: 62px;
	width: 100px;
	text-align: center;
	vertical-align: middle;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 34px;
}

.menu-product-details {
	display: block;
	color: #c00113;
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 10px;
	text-transform: none;
	font-family: 'Oxanium', sans-serif;
}

.menu-single-product-horizontal .menu-product-details p {
	margin-bottom: 0;
	color: #333;
}

.menu-single-product-horizontal .menu-product-price {
	max-width: 80px;
	padding-left: 15px;
	text-align: right;
}

.menu-single-product-horizontal .menu-product-price span {
	color: #000000;
	font-size: 20px;
	font-weight: 400;
	background: #c00113;
	width: 68px;
	display: block;
	height: 80px;
	text-align: center;
	line-height: 80px;
}

.menu-day-main-tabs-content {
	border-top: 5px solid #c00113;
}

.menu-day-product-content .menu-day-tab-list li a:hover {
	color: #c00113;
}

.menu-day-product-content .menu-day-tab-list li a:hover i {
	color: inherit;
}

.menu-day-product-content .menu-day-tab-list li a:hover i:before {
	color: inherit;
}

.menu-day-product-content .menu-day-tab-list li.active a {
	color: #c00113;
}

.menu-day-product-content .menu-day-tab-list li.active a i {
	color: inherit;
}

.menu-day-product-content .menu-day-tab-list li.active a i:before {
	color: inherit;
}

.menu-day-product-content .menu-single-product-horizontal {
	border-bottom: 1px dashed #bbb;
	padding: 15px 0;
}

.menu-day-product-content .menu-single-product-horizontal:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.menu-product-description {
	justify-content: space-between;
	display: list-item;
	list-style: disc;
	margin-left: 45px;
}

.menu-product-description span {
	color: #c00113;
}

/**************************************
 * Reservation Section Style
 *************************************/

.zr-theme-reservation-area {
	/*background-position: center center;*/
	/*background-size: cover;*/
	/*background-repeat: no-repeat;*/
	/*background-attachment: fixed;*/
	/*background-image: url(../images/section-bg.jpg);*/
	z-index: 1;
	text-align: center;
	position: relative;
}

.zr-theme-reservation-area::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .9;
	z-index: -1;
	background: #c00113;
}


.zr-theme-reservation-area h2 {
	color: #ffffff;
	text-transform: none;
	font-weight: 400;
	font-size: 84px;
}

.zr-theme-reservation-area h1 {
	color: #ffffff;
	font-size: 70px;
	font-weight: 500;
	text-transform: none;
	margin-top: -5px;
}

.zr-theme-reservation-area h5 {
	color: #ffffff;
}

.reservation-btn {
	background-color: #181818;
	transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: #fff;
	padding: 15px 37px;
	border-radius: 0.5rem;
	margin-top: 20px;
}

.reservation-btn:hover {
	color: #fff;
}

.mt-20 {
	margin-top: 20px;
}

/**************************************
 * Reservation Modal Style
 *************************************/
#reservationModal .modal-dialog {
	max-width: 650px;
}

#reservationModal .modal-dialog .modal-content {
	border: none;
	border-radius: 8px;
}

#reservationModal .modal-dialog .modal-content .modal-header {
	padding: 25px 25px 20px;
	display: block;
	background: #c00113;
	position: relative;
}

#reservationModal .modal-dialog .modal-content .modal-header .modal-title {
	margin-bottom: 0;
	line-height: 1;
	color: #ffffff;
	font-size: 22px;
}

#reservationModal .modal-dialog .modal-content .modal-header .close {
	padding: 0;
	margin: 0;
	position: absolute;
	right: 20px;
	top: 20px;
	opacity: 1;
	color: #ffffff;
}

#reservationModal .modal-dialog .modal-content .modal-body {
	padding: 25px;
}

#reservationModal .modal-dialog .modal-content .modal-body .modalForm {
	overflow: hidden;
}

#reservationModal .modal-dialog .modal-content .modal-body .modalForm .form-control {
	padding: 4px 10px 0;
}

#reservationModal .modal-dialog .modal-content .modal-body .modalForm .btn {
	text-align: center;
	font-size: 15px;
	letter-spacing: 1px;
	padding: 12px 30px 8px;
	margin-top: 4px;
	float: right;
	background: #000;
	border-radius: 25px;
}

/**************************************
 * Gallery Section Style
 *************************************/

.gallery-area {
	position: relative;
}

.gallery-area .gallery-list {
	text-align: center;
}

.gallery-area .gallery-list .nav {
	display: inline-block;
	margin: 0;
	position: relative;
}

.gallery-area .gallery-list .nav li {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	text-transform: none;
	margin: 0 5px;
	padding: 22px 10px;
	min-width: 140px;
	background-color: #fff;
	cursor: pointer;
	border-radius: 3px;
	-webkit-box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
	box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
	transition: all 0.4s ease 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	margin-bottom: 10px;
}

.gallery-area .gallery-list .nav li:hover,
.gallery-area .gallery-list .nav li.filter-active {
	color: #fff;
	background-color: #c00113;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.gallery-area .gallery-container {
	display: inline-block;
	width: 100%;
}

.gallery-area .gallery-grid-item {
	overflow: hidden;
}

.gallery-grid-item img {
	width: 100%;
}

.gallery-item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 3px;
	margin-top: 30px;
}

.gallery-item .gallery-img-overlay {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 2;
	-webkit-transition: all .4s;
	transition: all .4s;
}


.gallery-item .gallery-img-overlay:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 0;
	z-index: -1;
	border-radius: 3px;
	-webkit-transition: all .4s;
	transition: all .4s;
}

.gallery-item:hover .gallery-img-overlay:after {
	height: 100%;
}

.gallery-item .gallery-img-overlay .gallery-content .info {
	position: absolute;
	left: 5%;
	top: 4%;
	overflow: hidden;
}

.gallery-item .gallery-img-overlay .gallery-content .info h6 {
	margin-top: 5px;
	padding: 5px 20px;
	color: #fff;
	background: #c00113;
	border-radius: 2px;
	display: inline-block;
	font-weight: 400;
	font-size: 16px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all .4s;
	transition: all .4s;
}

.gallery-item .gallery-img-overlay .gallery-content .icon {
	position: absolute;
	top: 5%;
	right: 5%;
	width: 163px;
	line-height: 52px;
	border-radius: 2px;
	border: 1px solid #c00113;
	text-align: center;
	font-size: 18px;
	color: #fff;
	background: #c00113;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform: translateY(-50px);
	transform: translateY(-50px);
	opacity: 0;
	visibility: hidden;
}

.gallery-item:hover .gallery-img-overlay .gallery-content .icon {
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}

.gallery-item:hover .gallery-img-overlay .gallery-content .info h6 {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}

.gallery-more-btn {
	margin-top: 30px;
}

.contact-area .button,
.blog-area .button,
.gallery-area .button {
	background-color: #181818;
}

.contact-area .button:hover,
.blog-area .button:hover,
.gallery-area .button:hover {
	color: #ffffff;
}

.messages {
	padding-top: 30px;
	padding-right: 15px;
	padding-left: 15px;
}

/**************************************
 * Testimonial Section Style
 *************************************/

.testimonial-area {
	background: url(../images/section-bg.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: 1;
	text-align: center;
	position: relative;
}

.testimonial-area::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	opacity: .2;
	z-index: -1;
	background: #000000;
}

.testimonial-area .section-title h2 {
	color: #fff;
}

.testimonial-area .section-title h5 {
	color: #fff;
}

.single-page-testimonial-area .section-title h2 {
	color: #333;
}

.single-page-testimonial-area .section-title h5 {
	color: #a1a1a1;
}

.single-testimonial {
	position: relative;
	background-color: transparent;
	padding: 40px;
	margin: 30px;
	border-radius: 3px;
	margin-top: 30px;
	-webkit-box-shadow: 0px 5px 30px 0px rgb(0 0 0 / 15%);
	box-shadow: 0px 5px 30px 0px rgb(0 0 0 / 15%);
	text-align: left;
	background: rgb(192 1 19 / 80%);
	-webkit-backdrop-filter: saturate(180%) blur(5px);
	backdrop-filter: saturate(180%) blur(5px);
}

.testimonial-bio {
	margin-right: 20px;
}

.rating-box ul li {
	display: inline-block;
}

.rating-box ul li i {
	color: #ffce39;
	font-size: 18px;
}

.testimonial-content {
	margin-top: 10px;
	margin-bottom: 20px;
}

.testimonial-content h3 {
	color: #fff;
}

.testimonial-content p {
	color: #fff;
	font-size: 15px;
}

.testimonial-content-inner {
	display: block;
}

.testimonial-bio {
	margin-right: 0px;
}

.single-testimonial .testimonial-bio .avatar img {
	border-radius: 0;
	border: 3px solid #af0a22;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.single-testimonial .testimonial-bio .bio-info {
	text-align: center;
	margin-top: 10px;
}

.single-testimonial .testimonial-bio .bio-info .name {
	margin-top: 0;
	color: #c00113;
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 10px;
	text-transform: none;
	letter-spacing: 0.7px;
	font-family: 'Oxanium', sans-serif;
}

.single-testimonial .testimonial-bio .bio-info span {
	font-size: 15px;
	/*color: #fff;*/
}

.testimonial-area .owl-theme .owl-nav.disabled+.owl-dots {
	position: unset;
	right: 0;
	top: 50%;
	transform: none;
	margin-top: 20px;
}

.testimonial-area .owl-theme .owl-dots .owl-dot span {
	background-color: #ddd;
}

.slider-bg-grey .owl-theme .owl-dots .owl-dot span {
	background-color: #cacaca;
}

/**************************************
 * Team Section Style
 *************************************/

.team-area .section-title {
	margin-bottom: 35px;
}

.single-team-box {
	margin-top: 30px;
	border-radius: 3px;
	overflow: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.team-image {
	position: relative;
	z-index: 1;
	border: 5px solid #c0011382;
	padding: 9px;
}

.single-team-box .team-image img {
	width: 100%;
	height: auto;
}

.team-social-box {
	display: block;
}

.team-social-box {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 2;
	-webkit-transition: all .5s;
	transition: all .5s;
	background-color: transparent;
}

.single-team-box .team-image .team-social-box:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	z-index: -1;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.5);
	-webkit-transition: all .5s;
	transition: all .5s;
}

.single-team-box:hover .team-image .team-social-box:after {
	height: 100%;
}

.single-team-box .team-social-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: auto;
	text-align: center;
	overflow: hidden;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.single-team-box .team-social-icon a {
	position: relative;
	z-index: 1;
	display: inline-block;
	color: inherit;
	font-size: 15px;
	margin: 12px 5px;
	vertical-align: middle;
	background: #ffffff;
	width: 33px;
	height: 33px;
	line-height: 33px;
	text-align: center;
	border-radius: 2px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all .4s;
	transition: all .4s;
}

.single-team-box:hover .team-social-icon a {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}

.single-team-box .team-social-icon a:after {
	top: 0px;
	left: 0px;
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transform: scale(1.4);
	-ms-transform: scale(1.4);
	-o-transform: scale(1.4);
	transform: scale(1.4);
	opacity: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
	background: inherit;
	border-radius: inherit;
}

.single-team-box .team-social-icon a:hover:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.single-team-box .team-social-icon a:hover i:before {
	color: #fff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.team-info {
	padding: 20px 15px 25px;
	text-align: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.team-info h3 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
}

.team-info span {
	color: #c00113;
	font-size: 12px;
	font-weight: 400;
	display: block;
}

.social-color-1:hover:after {
	background-color: #3b5998 !important;
}

.social-color-2:hover:after {
	background-color: #00acee !important;
}

.social-color-3:hover:after {
	background-color: #0e76a8 !important;
}

.social-color-1 {
	color: #3b5998 !important;
	background-color: transparent;
}

.social-color-2 {
	color: #00acee !important;
	background-color: transparent;
}

.social-color-3 {
	color: #0e76a8 !important;
	background-color: transparent;
}

.mt-70 {
	margin-top: 70px !important;
}

/**************************************
 * Blog Section Style
 *************************************/

/* Blog area spacing from navbar */
.blog-area {
	padding-top: calc(var(--navbar-height) + 40px);
	/* 100px navbar + 40px spacing = 140px */
}

/* Tablet breakpoint (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199.98px) {
	.blog-area {
		padding-top: 120px;
	}
}

/* Mobile breakpoint (<768px) */
@media (max-width: 767.98px) {
	.blog-area {
		padding-top: calc(var(--navbar-height-mobile) + 30px);
		/* 80px navbar + 30px spacing = 110px */
	}
}

/* Blog detail sidebar styles */
.blog-sidebar {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 8px;
	margin-top: 0;
}

.blog-sidebar-title {
	font-size: 22px;
	font-weight: 700;
	color: #333;
	border-bottom: 2px solid #c00113;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.related-article-item {
	display: flex;
	gap: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 15px;
}

.related-article-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.related-article-image {
	flex-shrink: 0;
}

.related-article-thumb {
	width: 100px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
	transition: transform 0.3s ease;
}

.related-article-item:hover .related-article-thumb {
	transform: scale(1.05);
}

.related-article-content {
	flex: 1;
	min-width: 0;
}

.related-article-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.3;
}

.related-article-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.related-article-title a:hover {
	color: #c00113;
}

.related-article-date {
	font-size: 13px;
}

.related-articles-empty {
	font-size: 14px;
}

/* Article navigation buttons */
.article-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

.article-navigation .btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

/* Article featured image */
.article-featured-image {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}

/* Responsive: Sidebar pod obsahem na mobile */
@media (max-width: 991.98px) {
	.blog-sidebar {
		margin-top: 40px;
	}

	.article-navigation {
		flex-direction: column;
		gap: 15px;
	}

	.article-navigation .btn {
		width: 100%;
		text-align: center;
	}
}

.blog-area .section-title {
	text-align: center;
	margin-bottom: 35px;
}

.blog-area .single-blog {
	position: relative;
	background: #ffffff;
	border-radius: 3px;
	margin-top: 30px;
	-webkit-box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
	box-shadow: 0px 5px 30px 0px rgba(148, 146, 245, 0.15);
	overflow: hidden;
}

.blog-area .blog-img {
	position: relative;
	overflow: hidden;
}

.blog-area .single-blog img {
	-webkit-transition: all .5s;
	transition: all .5s;
	width: 100%;
}

.blog-area .single-blog:hover img {
	-webkit-filter: none;
	filter: none;
	-webkit-transform: rotate(3deg) scale(1.1, 1.1);
	-ms-transform: rotate(3deg) scale(1.1, 1.1);
	transform: rotate(3deg) scale(1.1, 1.1);
}

.blog-area .single-blog .blog-content {
	padding: 30px 25px;
}

.single-blog .blog-content .blog-text p {
	color: #555;
}

.blog-area .single-blog .blog-content h3 a {
	font-size: 18px;
	font-weight: 500;
	color: #333;
	margin-bottom: 10px;
	display: block;
}

.blog-area .single-blog .blog-content h3 a:hover {
	color: #c00113;
	text-decoration: underline !important;
}

.blog-area .card {
	background: #ffffff;
	border-radius: 3px;
	margin-top: 30px;
	-webkit-box-shadow: 0px 5px 30px 0px rgb(148 146 245 / 15%);
	box-shadow: 0px 5px 30px 0px rgb(148 146 245 / 15%);
	border: unset;
}

.blog-bottom-text-link {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}

.blog-bottom-text-link span {
	font-size: 15px;
	color: #5a5a5a;
	font-weight: 500;
}

.single-blog .blog-content .blog-bottom-text-link a {
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	background: #c00113;
	display: block;
	padding: 0px 10px;
}

.single-blog .blog-content .blog-bottom-text-link a:hover {
	color: #c00113;
	text-decoration: underline !important;
}

.blog-more-btn {
	margin-top: 30px;
}

.card,
.card-body {
	background-color: #e9ecef;
	border-radius: 0 0 16px 16px;
}

.square-container {
	width: 100%;
	aspect-ratio: 1 / 1;
	/* Čtverec */
	overflow: hidden;
}

.square-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-img {
	border-radius: 16px 16px 0 0;
}

.card-title {
	color: #c00113;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 10px;
	font-family: 'Oxanium', sans-serif;
}

.cat {
	display: inline-block;
	margin-bottom: 1rem;
}

.fa-users {
	margin-left: 1rem;
}

.card-footer {
	font-size: 0.8rem;
}

.blog-btn {
	background-color: #181818;
	transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: #fff;
	padding: 15px 37px;
	border-radius: 0.5rem;
	margin-top: 20px;
}

.blog-btn:hover {
	background-color: #c00113;
	color: #ffffff;
}


/**************************************
 * Comments Section Style
 *************************************/
.comments-section h6 {
	color: #c00113;
}

.comments-section i {
	margin-right: 5px;
}

/**************************************
 * Pagination Section Style
 *************************************/
.paginations {
	margin-top: 80px;
	justify-content: center;
}

.paginations .page-link {
	color: #c00113;
}

.blog-pagination {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.blog-pagination .button {
	padding: 10px 20px;
	background: #000;
	border-radius: 2px;
}

/**************************************
 * Press Section Style
 *************************************/

.theme-single-press-content {
	text-align: center;
	border-radius: 4px;
	overflow: hidden;
	background: #fbfbfb;
}

.theme-single-press-content h3 {
	color: #333;
	font-size: 16px;
	font-weight: 500;
	padding-bottom: 30px;
}



/**************************************
 * Contact Section Style
 *************************************/

.contact-area {
	position: relative;
	z-index: 1;
	/*background-image: url(../images/section-bg.jpg);*/
	background-attachment: fixed;
	background-position: top;
	background-size: cover;
}

.contact-area::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	opacity: 1;
	z-index: -1;
}

.contact-box h3 {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #c00113;
}

.contact-box p {
	margin-bottom: 0;
	margin-top: 7px;
	position: relative;
	padding-left: 25px;
	color: #7e7e7e;
}

.contact-box p i {
	position: absolute;
	left: 0;
	top: 3px;
	color: #c00113;
}

.contact-box p a {
	color: #7e7e7e;
}

.contact-box p a:hover {
	color: #c00113;
}

.contact-box p.opening-hours {
	overflow: hidden;
	padding: 0;
	text-align: left;
}

.contact-box p.opening-hours span {
	float: right;
	margin-right: 25px;
}

.newsletter-form .form-control {
	width: 100%;
	padding: 10px 20px;
	border: 0;
	height: auto;
	background-color: transparent;
	font-weight: 500;
	border-radius: 5px;
	border: 1px solid #b6b6b7;
	border-bottom: 3px solid #c00113;
}

.contact-box form .button {
	display: block;
	font-size: 16px;
	width: 100%;
	padding: 3px 0;
	margin-top: 10px;
	height: 42px;
	border-radius: 3px;
}

.contact-box form .button i {
	font-size: 25px;
	padding-left: 10px;
	vertical-align: middle;
}

.form-container-box {
	background: #ffffff;
	padding: 40px;
	border-radius: 10px;
}

.contact-area .form input,
.contact-area .form textarea {
	width: 100%;
	padding: 10px 20px;
	border: 0;
	min-height: 55px;
	background-color: #f8f8f8;
	font-weight: 500;
	border-radius: 0.5rem;
	border: 1px solid #b6b6b7;
}

.contact-area .form textarea {
	max-height: 120px;
	max-width: 100%;
}

#contact-form .button {
	margin: 0;
}

.form-group {
	margin-bottom: 25px;
}

button,
input,
textarea {
	color: #505050;
}

button,
input,
textarea:focus {
	border: none;
	outline: none;
}

.contact-area .form-message.success {
	background: #03b103;
	color: #fff;
	padding: 10px 15px;
	border-radius: 3px;
}

.contact-area .form-message.error {
	background: #ff4d15;
	color: #fff;
	padding: 10px 15px;
	border-radius: 3px;
}

/**************************************
 * Seacrh Section Style
 *************************************/
.search-form {
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
}

.search-form input {
	width: 100%;
	padding: 17px 28px;
	height: 61px;
	background: #2E2E2E;
	color: #fff;
}

.search-form button {
	position: absolute;
	right: 0;
	background: #c00113;
	padding: 17px 20px;
	height: 61px;
}

.search-form button i {
	color: #fff;
	font-size: 22px;
	transform: rotate(-6deg);
}

/*--------------------------------------------------------------
 * Map Section
 --------------------------------------------------------------*/
.map-content #contact-map {
	position: relative;
	width: 100%;
	height: 400px;
	border: 0;
	margin-bottom: -2px;
}

.rounded-border {
	border-radius: 5px;
	overflow: hidden;
}

/**************************************
 * Footer Section Style
 *************************************/

.footer-section {
	background: #151414;
	position: relative;
}

.footer-cta {
	border-bottom: 1px solid #373636;
}

.single-cta i {
	color: #c00113;
	font-size: 42px;
	float: left;
	margin-top: 8px;
}

.single-cta i.person {
	font-size: 120%;
	float: none;
	margin: 0 0.5em 0 0;
	text-align: center;
	vertical-align: middle;
}

.cta-text {
	padding-left: 15px;
	display: inline-block;
}

.cta-text h4 {
	color: #c00113;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 2px;
}

.cta-text span {
	color: #757575;
	font-size: 15px;
}

.footer-content {
	position: relative;
	z-index: 2;
}

.footer-pattern img {
	position: absolute;
	top: 0;
	left: 0;
	height: 330px;
	background-size: cover;
	background-position: 100% 100%;
}

.footer-widget {
	margin-bottom: 20px;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-logo img {
	max-width: 200px;
}

.footer-text p {
	margin-bottom: 14px;
	font-size: 14px;
	color: #7e7e7e;
	line-height: 28px;
}

.footer-social-icon span {
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 20px;
}

.footer-social-icon a {
	color: #fff;
	font-size: 16px;
	margin-right: 15px;
}

.footer-social-icon i {
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 41px;
	border-radius: 0.5rem;
	background: #c00113;
}

.facebook-bg {
	background: #3B5998;
}

.twitter-bg {
	background: #55ACEE;
}

.google-bg {
	background: #DD4B39;
}

.footer-widget-heading h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 40px;
	position: relative;
}

.footer-widget-heading h3::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -15px;
	height: 2px;
	width: 100%;
	background: #c00113;
}

.footer-widget ul li {
	float: left;
	width: 50%;
	margin-bottom: 12px;
}

.footer-widget ul li a:hover {
	color: #c00113;
}

.footer-widget ul li a {
	color: #878787;
	text-transform: none;
}

.subscribe-form {
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
}

.subscribe-form input {
	width: 100%;
	padding: 14px 28px;
	background: #2E2E2E;
	border: 1px solid #2E2E2E;
	color: #fff;
}

.subscribe-form button {
	position: absolute;
	right: 0;
	background: #c00113;
	padding: 16px 20px;
	border: 1px solid #c00113;
	top: 0px;
}

.subscribe-form button i {
	color: #fff;
	font-size: 22px;
	transform: rotate(-6deg);
}

.copyright-area {
	background: #c00113;
	padding: 25px 0;
}

.copyright-text p {
	margin: 0;
	font-size: 14px;
	color: #ffffff;
}

.copyright-text p a {
	color: #c00113;
}

.footer-menu li {
	display: inline-block;
	margin-left: 20px;
}

.footer-menu li:hover a {
	color: #c00113;
}

.footer-menu li a {
	font-size: 14px;
	color: #ffffff;
}

.footer-menu li a:hover {
	color: #000000;
}

.footer-social-icon {
	margin: 20px 0;
}

.margin-bottom-30 {
	margin-bottom: 30px;
}

.hidden {
	display: none;
}

.leaflet-bottom {
	z-index: 800 !important;
}


.car-card .card-body {
	min-height: 13em;
}

/**************************************
 * HybridZone Page Styles
 *************************************/

.hero-hybrid {
	background-color: rgba(10, 10, 10, 0.9);
	background-image:
		radial-gradient(ellipse var(--gradient-1-size-x) var(--gradient-1-size-y) at var(--gradient-1-pos-x) var(--gradient-1-pos-y), rgba(0, 158, 227, 1) 0%, rgba(0, 158, 227, 0) 100%),
		radial-gradient(ellipse var(--gradient-2-size-x) var(--gradient-2-size-y) at var(--gradient-2-pos-x) var(--gradient-2-pos-y), rgba(0, 158, 227, 1) 0%, rgba(0, 158, 227, 0) 100%),
		radial-gradient(ellipse var(--gradient-3-size-x) var(--gradient-3-size-y) at var(--gradient-3-pos-x) var(--gradient-3-pos-y), rgba(0, 158, 227, 1) 0%, rgba(0, 158, 227, 0) 100%),
		linear-gradient(#0A4159, #0A4159),
		linear-gradient(355deg, rgba(0, 158, 227, 1) 8%, rgba(0, 158, 227, 0.65) 49%, rgba(0, 158, 227, 0) 100%);
	padding: 80px 0 60px;
	color: #fff;
	/* Allow car to overflow vertically, but never widen page horizontally */
	overflow-x: clip;
	overflow-y: visible;
	position: relative;
	z-index: auto;
	/* Reset stacking context so children can interact with next section */
}

.hero-hybrid .container {
	position: relative;
	z-index: auto;
	/* Allow children to float */
}

.hero-hybrid .display-3 {
	font-family: 'Oxanium', sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
}

.text-hybrid {
	font-family: 'Oxanium', sans-serif;
	color: #fff;
}

.hero-content {
	position: relative;
	z-index: 30;
	/* High enough to be above neons and potentially above next section content */
}

.hero-content .h5 {
	max-width: 680px;
	line-height: 1.6;
}

.glass-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-width: 0px;
	border-style: none;
	border-color: rgba(0, 0, 0, 0);
	border-image: none;
	border-radius: 12px;
	padding: 20px;
	transition: all 0.3s ease;
}

/* Fine-tune padding for hero stats glass boxes to match design preview */
.hero-hybrid .glass-box.stat-item {
	padding-top: 16px;
	padding-bottom: 16px;
	padding-right: 28px;
	flex: 1;
	position: relative;
	z-index: 10;
}

.glass-box:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.2);
}

.stat-item h2 {
	font-family: 'Oxanium', sans-serif;
	font-weight: 700;
	color: #fff;
}

/* HybridZone hero stats typography tweaks (from design preview) */
.hero-hybrid .stat-item h2.h1 {
	font-size: 31px;
	font-weight: 600;
	text-align: left;
	margin: 0;
	padding-top: 0;
	padding-bottom: 25px;
}

.hero-hybrid .stat-item p.text-white-50 {
	font-size: 17px;
	color: #fff;
}

.hero-visual {
	position: relative;
	min-height: 400px;
	overflow: visible;
	z-index: auto;
	/* Allow particles to participate in global stack */
}

.hero-logo-overlay {
	position: absolute;
	top: 90px;
	right: 0;
	width: 300px;
	z-index: 12;
	/* Nad neonovými čárami (z-index: 5), ale pod autem (z-index: 15) */
}

.hero-car-image {
	position: absolute;
	bottom: -83px;
	right: 10px;
	width: clamp(420px, 39vw, 650px);
	z-index: 100;
	/* Highest priority - floats over everything */
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
	pointer-events: none;
	/* Auto je pozicované absolutně v rámci .hero-visual kontejneru */
}


/* Neon trails behind car */
.hero-neon-trails {
	position: absolute;
	bottom: 364px;
	right: -171px;
	width: 900px;
	z-index: -1;
	pointer-events: none;
	overflow: visible;
}

.neon-trail {
	position: absolute;
	width: 100%;
	height: auto;
	opacity: 0.85;
}

.neon-1 {
	top: 5%;
	right: 0;
}

.neon-2 {
	top: 20%;
	right: -30px;
}

.neon-3 {
	top: 40%;
	right: -60px;
}

.neon-4 {
	top: 60%;
	right: -90px;
}

/* Tablet responsive neon trails */
@media (min-width: 768px) and (max-width: 991.98px) {
	.hero-neon-trails {
		width: 500px;
		height: 250px;
		bottom: -60px;
		right: 20px;
	}
}

@media (max-width: 479.98px) {
	.mobile-social-custom a {
		width: 30px;
		height: 32px;
	}
}


/* ========================================
   HybridZone Custom Accordion Styling
   ======================================== */
.hybrid-accordion {
	width: 100%;
}


/* The sticky column stretches, inner accordion is sticky */
.tech-comparison .tech-comparison-sticky {
	position: relative;
	/* Column stretches to match row height via align-items: stretch */
}

.tech-comparison .tech-comparison-sticky .hybrid-accordion {
	position: sticky;
	top: 100px;
	/* Offset from top of viewport (header height + padding) */
}

.hybrid-accordion-item {
	border-bottom: 1px solid #256783;
	background: transparent;
}

.hybrid-accordion-item:last-child {
	border-bottom: none;
}

/* h3 wrapper pro accordion header — reset browser defaults */
.hybrid-accordion-heading {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
}

.hybrid-accordion-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	border: none;
	padding: 20px 0;
	cursor: pointer;
	text-align: left;
	transition: all 0.3s ease;
	font-family: inherit;
	font-size: inherit;
	outline: none;
}

.hybrid-accordion-header:focus-visible {
	outline: 2px solid #009EE3;
	outline-offset: 2px;
}

.hybrid-accordion-header:hover {
	color: #009EE3;
}

.hybrid-accordion-header:hover .hybrid-accordion-title {
	color: #009EE3;
}

.hybrid-accordion-title {
	color: #333333;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	transition: color 0.3s ease;
	flex: 1;
}

.hybrid-accordion-icon {
	color: #666666;
	font-size: 14px;
	transition: transform 0.3s ease, color 0.3s ease;
	margin-left: 15px;
	flex-shrink: 0;
}

.hybrid-accordion-item.active .hybrid-accordion-icon {
	transform: rotate(180deg);
	color: #009EE3;
}

.hybrid-accordion-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease-out;
}

.hybrid-accordion-content.open {
	grid-template-rows: 1fr;
}

.hybrid-accordion-body {
	overflow: hidden;
	min-height: 0;
	background-color: #C5DBE5;
	padding: 0 50px 0 14px;
	border-radius: 11px;
	color: #555555;
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 0;
	transition: margin-bottom 0.4s ease-out, padding 0.4s ease-out;
}

.hybrid-accordion-content.open .hybrid-accordion-body {
	padding: 12px 50px 12px 14px;
	margin-bottom: 16px;
}

.hybrid-accordion-body p {
	margin-bottom: 15px;
}

.hybrid-accordion-body p:last-child {
	margin-bottom: 0;
}

/* Definition list styly (nahrazuje h4 + p v prvním panelu) */
.hybrid-types-list {
	margin: 0;
}

.hybrid-types-list dt {
	font-weight: 600;
	margin-top: 1em;
}

.hybrid-types-list dt:first-child {
	margin-top: 0;
}

.hybrid-types-list dd {
	margin-left: 0;
	margin-bottom: 15px;
}

.hybrid-types-list dd:last-child {
	margin-bottom: 0;
}

/* Jízdní režimy — dl s vnořeným ul */
.hybrid-modes-list {
	margin: 0;
}

.hybrid-modes-list dt {
	font-weight: 600;
	margin-top: 1em;
}

.hybrid-modes-list dt:first-child {
	margin-top: 0;
}

.hybrid-modes-list dd {
	margin-left: 0;
}

.hybrid-modes-list ul {
	margin: 0.3em 0 0;
	padding-left: 1.2em;
}

.hybrid-modes-list li {
	margin-bottom: 2px;
	position: relative;
	padding-left: 0.9em;
}

.hybrid-modes-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
}


.hybrid-accordion-title--figma-style {
	font-family: 'Oxanium', sans-serif !important;
	font-size: 17px !important;
	font-weight: 600 !important;
	line-height: 25px !important;
	letter-spacing: 0 !important;
}

.hybrid-accordion-body--figma-style,
.hybrid-accordion-body--figma-style p {
	font-family: 'Oxanium', sans-serif !important;
	font-size: 17px !important;
	font-weight: 400 !important;
	line-height: 25px !important;
	letter-spacing: 0 !important;
}

.hybrid-accordion-content-subtitle {
	font-family: 'Oxanium', sans-serif !important;
	font-size: 17px !important;
	font-weight: 700 !important;
	line-height: 25px !important;
	letter-spacing: 0 !important;
	margin-bottom: 5px;
	display: block;
	color: #333;
}

.hero-hybrid .stats-grid .col-md-4 {
	display: flex;
}

/* Stats grid responsive gap adjustments */
@media (min-width: 1400px) {
	.hero-hybrid .stats-grid.gutter-sm {
		margin-right: -4px;
		margin-left: -4px;
	}

	.hero-hybrid .stats-grid.gutter-sm>[class*="col-"] {
		padding-right: 4px;
		padding-left: 4px;
	}
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
	.hero-hybrid .stats-grid.gutter-sm {
		margin-right: -3px;
		margin-left: -3px;
	}

	.hero-hybrid .stats-grid.gutter-sm>[class*="col-"] {
		padding-right: 3px;
		padding-left: 3px;
	}

	.hero-hybrid .glass-box.stat-item {
		padding-right: 18px;
		padding-left: 16px;
	}

	.hero-hybrid .stat-item h2.h1 {
		font-size: 27px;
		padding-bottom: 22px;
	}

	.hero-hybrid .stat-item p.text-white-50 {
		font-size: 16px;
	}
}

@media (min-width: 1000px) and (max-width: 1199.98px) {
	.hero-hybrid .stats-grid.gutter-sm {
		margin-right: -3px;
		margin-left: -3px;
	}

	.hero-hybrid .stats-grid.gutter-sm>[class*="col-"] {
		padding-right: 3px;
		padding-left: 3px;
	}

	.hero-hybrid .glass-box.stat-item {
		padding-right: 12px;
		padding-left: 12px;
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.hero-hybrid .stat-item h2.h1 {
		font-size: 23px;
		padding-bottom: 18px;
	}

	.hero-hybrid .stat-item p.text-white-50 {
		font-size: 14px;
	}
}

@media (min-width: 992px) and (max-width: 999.98px) {
	.hero-hybrid .stats-grid.gutter-sm {
		margin-right: -3px;
		margin-left: -3px;
	}

	.hero-hybrid .stats-grid.gutter-sm>[class*="col-"] {
		padding-right: 3px;
		padding-left: 3px;
	}

	.hero-hybrid .glass-box.stat-item {
		padding-right: 10px;
		padding-left: 10px;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.hero-hybrid .stat-item h2.h1 {
		font-size: 21px;
		padding-bottom: 16px;
	}

	.hero-hybrid .stat-item p.text-white-50 {
		font-size: 13px;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.hero-hybrid .stats-grid.gutter-sm {
		margin-right: -4px;
		margin-left: -4px;
	}

	.hero-hybrid .stats-grid.gutter-sm>[class*="col-"] {
		padding-right: 4px;
		padding-left: 4px;
	}

	.hero-hybrid .glass-box.stat-item {
		padding-right: 12px;
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.hero-hybrid .stat-item h2.h1 {
		font-size: 24px;
		padding-bottom: 20px;
	}

	.hero-hybrid .stat-item p.text-white-50 {
		font-size: 14px;
	}
}

@media (min-width: 992px) {
	.hero-hybrid .hero-content {
		flex: 0 0 55%;
		max-width: 55%;
	}

	.hero-hybrid .hero-visual {
		flex: 0 0 45%;
		max-width: 45%;
	}

	.hero-hybrid .hero-content .h5 {
		white-space: nowrap;
	}

	.hero-hybrid .stat-item h2.h1 {
		white-space: nowrap;
	}
}

@media (max-width: 991.98px) {

	.hero-hybrid .hero-content .h5,
	.hero-hybrid .stat-item h2.h1 {
		white-space: normal;
	}
}

.gutter-sm {
	margin-right: -4px;
	margin-left: -4px;
}

.gutter-sm>[class*="col-"] {
	padding-right: 4px;
	padding-left: 4px;
}

.bg-light-blue {
	background-color: #f0f7fb;
}

.custom-accordion .card {
	border: none;
	background: transparent;
	margin-bottom: 10px;
}

.custom-accordion .card-header {
	background: #fff;
	border: 1px solid #e1e8ed;
	border-radius: 8px !important;
	padding: 0;
}

.custom-accordion .btn-link {
	color: #333;
	font-weight: 600;
	padding: 15px 20px;
	text-decoration: none !important;
	transition: all 0.3s ease;
}

.custom-accordion .btn-link:hover {
	color: var(--color-cta-primary);
}

.custom-accordion .card-body {
	padding: 20px;
	color: #555;
	line-height: 1.6;
}

.car-card {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.car-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.car-img {
	height: 220px;
	overflow: hidden;
	position: relative;
}

.car-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.car-img .badge {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 5px 12px;
}

.text-red {
	color: var(--color-cta-primary);
	font-weight: 700;
}

.btn-outline-red {
	border: 2px solid var(--color-cta-primary);
	color: var(--color-cta-primary);
	font-weight: 600;
	border-radius: 6px;
	padding: 6px 18px;
}

.btn-outline-red:hover {
	background-color: var(--color-cta-primary);
	color: #fff;
}

.border-red {
	border: 3px solid var(--color-cta-primary) !important;
}

.badge-hybrid {
	background-color: var(--color-text-hybrid-zone);
	color: #fff;
	font-weight: 600;
}

.gray-scale {
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease;
}

.gray-scale:hover {
	filter: grayscale(0%);
	opacity: 1;
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.grayscale {
	filter: grayscale(100%);
}

.contact-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

/* Tech Comparison Section - Extra padding for car overlap */
.tech-comparison {
	padding-top: 23px !important;
	position: relative;
	z-index: 20;
	/* Higher than neons (1), lower than car (100) */
	background-color: #f8f9fa;
	/* Ensure opacity */
}

/* Lightning icon positioned absolutely in the corner of the row, above H2 */
.tech-comparison .row>.lightning-icon {
	position: absolute;
	left: 40px;
	top: 11px;
	z-index: 10;
}

.tech-comparison .col-lg-6>h2:first-child {
	margin-top: 20px;
}

.tech-comparison .row {
	display: flex;
	position: relative;
	background-color: #D2E6EF;
	padding: 50px 40px;
	border-radius: 11px;
	align-items: stretch;
	/* stretch is required for sticky to work - columns must stretch to full row height */
}

.tech-comparison p.section-description {
	font-family: 'Oxanium', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0;
}

/* Tech comparison H2 title - Oxanium 34px semibold 0% letter-spacing */
.tech-comparison .tech-comparison-title {
	font-family: 'Oxanium', sans-serif;
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 0;
	margin-bottom: 12px;
}

.tech-comparison h2.mb-4 {
	font-size: 34px;
	font-weight: 600;
}

/**************************************
 * Blog & Educational Section Buttons
 *************************************/
.edu-section {
	padding-bottom: 60px;
}

/* Button "Dozvědět se víc" in educational cards */
.edu-section .btn-link.text-hybrid {
	color: var(--color-text-hybrid-zone, #009EE3);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 8px 0;
	display: inline-block;
}

.edu-section .btn-link.text-hybrid:hover {
	color: var(--color-cta-primary, #c00113);
	text-decoration: none;
	transform: translateX(5px);
}

.edu-section .btn-link.text-hybrid i {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.edu-section .btn-link.text-hybrid:hover i {
	transform: translateX(3px);
}

/* Button "Zobrazit vše" in edu-section and blog */
/* Blog area keeps original black button */
.blog-area .button {
	background-color: #181818;
	color: #ffffff;
	border: 2px solid #181818;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.blog-area .button:hover {
	color: #ffffff;
	border-color: var(--color-cta-primary, #c00113);
	background-color: var(--color-cta-primary, #c00113);
}

.blog-area .button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.5;
	background-color: var(--color-cta-primary, #c00113);
	transition: all 0.3s ease;
	transform: scaleY(0);
	transform-origin: left top;
}

.blog-area .button:hover:before {
	transform: scaleY(1);
}

.blog-area .button:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: var(--color-cta-primary, #c00113);
	transition: all 0.3s ease 0.2s;
	transform: scaleY(0);
	transform-origin: left top;
}

.blog-area .button:hover:after {
	transform: scaleY(1);
}

/* Hybrid zone specific: "Zobrazit vše" button - white background, dark border */
.edu-section .button {
	background-color: #ffffff !important;
	color: #0A4159 !important;
	border: 2px solid #0A4159 !important;
	position: relative;
	overflow: visible;
	transition: all 0.3s ease;
}

.edu-section .button:hover {
	background-color: #0A4159 !important;
	color: #ffffff !important;
	border-color: #0A4159 !important;
}

.edu-section .button:before,
.edu-section .button:after {
	display: none;
}

/**************************************
 * Hybrid Zone Blog Section - Specific Styling
 *************************************/

/* Větší spacing pro section-title v hybrid zone */
.edu-section .section-title {
	margin-bottom: 60px;
}

/* Hybrid zone - podnadpis sekce článků */
.hybrid-edu-lead {
	font-family: 'Oxanium', sans-serif;
	font-size: 32px;
	font-weight: 400;
	line-height: 41.6px;
	letter-spacing: 0;
	color: #6C757D;
}

/* Karty styling v hybrid zone */
.edu-section .card {
	border-radius: 3px;
	box-shadow: 0 5px 30px rgba(148, 146, 245, 0.15);
	border: none;
	background: #ffffff;
}

/* Blue "PŘEČÍST ČLÁNEK" button in hybrid zone blog cards */
.btn-hybrid-zone {
	background-color: unset !important;
	background: unset !important;
	color: rgba(0, 158, 227, 1) !important;
	/* border: none !important; */
	border-bottom: #009EE3 2px solid;
}

.btn-hybrid-zone-link {
	border-bottom: 1px solid #009EE3;
}

/**************************************
 * Hybrid Zone Car Card Redesign
 *************************************/

.car-card-hybrid {
	border-radius: 11px;
	overflow: hidden;
	box-shadow: 0px 5px 30px rgba(148, 146, 245, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	border: none;
	background: #fff;
	display: flex;
	flex-direction: column;
}

.car-card-hybrid:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.car-card-hybrid .car-img {
	height: 339px;
	overflow: hidden;
	position: relative;
}

.car-card-hybrid .car-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.car-card-hybrid .badge-hybrid {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: var(--color-text-hybrid-zone, #009EE3);
	color: #FFFFFF;
	padding: 6px 16px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 15px;
	font-family: 'Oxanium', sans-serif;
	line-height: 25px;
	letter-spacing: 0.5px;
}

.car-card-hybrid .car-info {
	padding: 30px 32px 28px 36px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.car-card-hybrid .car-title {
	color: var(--color-text-hybrid-zone, #009EE3);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 4px;
	line-height: 1.2;
}

.car-card-hybrid .car-title a {
	color: #009EE3;
	text-decoration: none;
	font-size: 34px;
	font-weight: bold;
	font-family: 'Oxanium', sans-serif;
}

.car-card-hybrid .car-subtitle {
	color: #333333;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 25px;
	letter-spacing: 0.5px;
	font-family: 'Oxanium', sans-serif;
}

.car-card-hybrid .car-specs-grid {
	display: grid;
	grid-template-columns: 91px 1fr;
	gap: 12px 24px;
	margin-bottom: 24px;
	flex-grow: 1;
}

.car-card-hybrid .spec-item {
	display: flex;
	flex-direction: column;
}

.car-card-hybrid .spec-label {
	color: #333333;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Oxanium', sans-serif;
	margin-bottom: 2px;
}

.car-card-hybrid .spec-value {
	color: #333333;
	font-size: 16px;
	font-weight: 700;
	font-family: 'Oxanium', sans-serif;
}

.car-card-hybrid .car-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: none;
	padding-top: 8px;
	margin-top: auto;
}

.car-card-hybrid .car-price {
	color: var(--color-text-hybrid-zone, #009EE3);
	font-size: 29px;
	font-weight: 700;
	font-family: 'Oxanium', sans-serif;
	line-height: 36px;
}

.car-card-hybrid .car-link {
	position: relative;
	width: 20px;
	height: 20px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.car-card-hybrid .car-link svg {
	width: 20px;
	height: 20px;
}

.car-card-hybrid:hover .car-link {
	transform: translateX(5px);
}

/**************************************
 * Car Listing Homepage Section
 *************************************/

.car-listing-area {
	background: #F5F5F5;
	padding-top: calc(var(--navbar-height) + 40px);
}

.car-listing-subtitle {
	color: #169841;
	font-family: 'Oxanium', sans-serif;
	font-size: 21px;
	text-transform: uppercase;
	font-weight: 600;
	display: block;
	margin-bottom: 8px;
}

.car-listing-area .section-title {
	text-align: center;
	margin-bottom: 40px;
}

.car-listing-area .section-title h2 {
	color: #333333;
	font-size: 40px;
	line-height: 52px;
	font-weight: 500;
	font-family: 'Oxanium', sans-serif;
}

.car-listing-grid {
	row-gap: 40px;
}

/* Homepage car card — base */
.car-card-home {
	border-radius: 11px;
	overflow: hidden;
	box-shadow: 0px 5px 30px rgba(148, 146, 245, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	border: none;
	background: #fff;
	display: flex;
	flex-direction: column;
}

.car-card-home:hover {
	transform: translateY(-8px);
}

.car-card-home .car-img {
	height: 339px;
	overflow: hidden;
	position: relative;
}

.car-card-home .car-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.car-card-home .badge-hybrid {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: #009EE3;
	color: #FFFFFF;
	padding: 6px 16px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 15px;
	font-family: 'Oxanium', sans-serif;
	line-height: 25px;
	letter-spacing: 0.5px;
}

.car-card-home .car-info {
	padding: 30px 32px 28px 36px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.car-card-home .car-title {
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 4px;
	line-height: 42px;
}

.car-card-home .car-title a {
	text-decoration: none;
	font-size: 34px;
	font-weight: bold;
	font-family: 'Oxanium', sans-serif;
	line-height: 42px;
}

.car-card-home .car-subtitle {
	color: #333333;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 25px;
	letter-spacing: 0.5px;
	font-family: 'Oxanium', sans-serif;
	line-height: 21px;
}

.car-card-home .car-specs-grid {
	display: grid;
	grid-template-columns: 91px 1fr;
	gap: 12px 24px;
	margin-bottom: 24px;
	flex-grow: 1;
}

.car-card-home .spec-item {
	display: flex;
	flex-direction: column;
}

.car-card-home .spec-label {
	color: #333333;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Oxanium', sans-serif;
	margin-bottom: 2px;
}

.car-card-home .spec-value {
	color: #333333;
	font-size: 16px;
	font-weight: 700;
	font-family: 'Oxanium', sans-serif;
}

.car-card-home .car-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 8px;
	margin-top: auto;
}

.car-card-home .car-price {
	font-size: 29px;
	font-weight: 700;
	font-family: 'Oxanium', sans-serif;
	line-height: 36px;
}

.car-card-home .car-link {
	position: relative;
	width: 20px;
	height: 20px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.car-card-home .car-link svg {
	width: 20px;
	height: 20px;
}

.car-card-home:hover .car-link {
	transform: translateX(5px);
}

/* Blue variant (hybrid) */
.car-card-home--blue {
	box-shadow: 0 5px 30px rgba(148, 146, 245, 0.15);
}

.car-card-home--blue:hover {
	box-shadow: 0 10px 40px rgba(148, 146, 245, 0.25);
}

.car-card-home--blue .car-title a {
	color: #009EE3;
}

.car-card-home--blue .car-price {
	color: #009EE3;
}

/* Red variant (non-hybrid) */
.car-card-home--red {
	box-shadow: 0 5px 30px rgba(192, 1, 19, 0.15);
}

.car-card-home--red:hover {
	box-shadow: 0 10px 40px rgba(192, 1, 19, 0.25);
}

.car-card-home--red .car-title a {
	color: #C00113;
}

.car-card-home--red .car-price {
	color: #C00113;
}

/* CTA button */
.btn-car-listing {
	display: inline-block;
	padding: 14px 40px;
	background: #C00113;
	color: #ffffff;
	border-radius: 8px;
	font-family: 'Oxanium', sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-car-listing:hover {
	background: #a00110;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(192, 1, 19, 0.3);
}

.btn-car-listing i {
	margin-left: 8px;
}

/* Responsive — Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
	.car-listing-area {
		padding-top: 120px;
	}

	.car-listing-area .section-title h2 {
		font-size: 32px;
		line-height: 42px;
	}

	.car-card-home .car-title,
	.car-card-home .car-title a {
		font-size: 28px;
		line-height: 34px;
	}

	.car-card-home .car-price {
		font-size: 24px;
		line-height: 30px;
	}
}

/* Responsive — Mobil */
@media (max-width: 767.98px) {
	.car-listing-area {
		padding-top: calc(var(--navbar-height-mobile) + 30px);
	}

	.car-listing-area .section-title h2 {
		font-size: 26px;
		line-height: 34px;
	}

	.car-listing-subtitle {
		font-size: 17px;
	}

	.car-card-home .car-title,
	.car-card-home .car-title a {
		font-size: 26px;
		line-height: 32px;
	}

	.car-card-home .car-price {
		font-size: 24px;
		line-height: 30px;
	}

	.car-card-home .car-img {
		height: 250px;
	}

	.btn-car-listing {
		font-size: 17px;
		padding: 12px 30px;
	}
}

/**************************************
 * Hero Index Section Styles
 *************************************/

.hero-index {
	position: relative;
	padding: 0;
	overflow: hidden;
	background-color: #0a0a0a;
}

.hero-background {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 0;
	margin-top: var(--navbar-height);
}

.hero-bg-image {
	width: 100%;
	height: auto;
	max-height: 70vh;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
	z-index: 1;
}

.hero-index .container {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 80px;
}

@media (min-width: 800px) {
	.hero-index .container {
		margin-top: -202px;
	}
}

/* Hero Boxes Row - CSS Grid Layout (3-column Figma layout) */
.hero-boxes-row {
	display: grid;
	grid-template-columns: 1fr 1fr 418px;
	grid-template-rows: auto auto;
	gap: 8px;
	align-items: stretch;
	justify-content: center;
	margin: 0;
}

/* Column wrappery rozpuštěny — boxy jsou přímé grid items */
.hero-col-1,
.hero-col-2,
.hero-col-3 {
	display: contents;
}

/* Grid placement — 3-column Figma layout */
.hero-col-1 .hero-service-box-red {
	grid-column: 1;
	grid-row: 1;
}

/* Prodej */
.hero-col-2 .hero-box-top {
	grid-column: 2;
	grid-row: 1;
}

/* Auto na obj. */
.hero-col-1 .hero-service-box-white {
	grid-column: 1;
	grid-row: 2;
}

/* Výkup */
.hero-col-2 .hero-box-bottom {
	grid-column: 2;
	grid-row: 2;
}

/* Autoservis */
.hero-col-3 .hero-service-box-hybrid {
	grid-column: 3;
	grid-row: 1 / 3;
	margin-left: 8px;
}

/* HybridZone — extra 8px = 16px vizuální gap */

/* Base Service Box Styles */
.hero-service-box {
	position: relative;
	padding: 16px 25px;
	border-radius: 12px;
	color: #ffffff;
	height: auto;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.3s ease, opacity 0.3s ease;
	min-height: 204px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-service-box:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
	opacity: 0.95;
}

.hero-box-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	z-index: 3;
}

.hero-service-box-hybrid .hero-box-icon.hybrid-icon-top {
	position: absolute;
	top: 15px;
	left: 15px;
	right: auto;
	width: 50px;
	height: 50px;
	z-index: 4;
}

.hero-box-icon .icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero-box-title {
	font-family: 'Oxanium', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
	margin-top: 0;
	line-height: 1.3;
}

.hero-box-description {
	font-size: 15px;
	line-height: 1.6;
	color: #ffffff;
	margin-bottom: 20px;
	flex-grow: 1;
}

/* Red Service Boxes */
.hero-service-box-red {
	background-color: #c00113;
}

/* Black Service Box */
.hero-service-box-black {
	background-color: #000;
}

/* White Service Box - Výkup vozidel */
.hero-service-box-white {
	background-color: #ffffff;
	color: #000000;
}

.hero-service-box-white .hero-box-title {
	color: #000000;
}

.hero-service-box-white .hero-box-description {
	color: #333333;
}

.hero-box-description strong {
	font-weight: 700;
}

.hero-box-title-dark {
	color: #000000 !important;
}

.hero-box-description-dark {
	color: #333333 !important;
}

/* Hybrid Zone Box - Special Styling */
.hero-service-box-hybrid {
	background:
		linear-gradient(0deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.9) 100%),
		linear-gradient(180deg, #009EE3 0%, #009EE3 100%);
	background-blend-mode: normal;
	border: none;
	position: relative;
	overflow: visible;
	height: 100%;
	min-height: 418px;
	align-self: stretch;
	flex-direction: column;
	opacity: 0.9;
}

.hybrid-neon-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.75;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.hybrid-neon-bg .neon-effect {
	width: 130%;
	height: 130%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.2);
}

/* Fallback CSS gradient pokud SVG nefunguje */
@supports not (object-fit: cover) {
	.hybrid-neon-bg {
		background: radial-gradient(ellipse 200% 150% at 50% 50%,
				rgba(0, 158, 227, 0.3) 0%,
				rgba(179, 232, 255, 0.2) 30%,
				transparent 70%);
	}
}

/* ============================================
   NEON LINES - Index Hybrid Box
   Inline SVG s CSS glow efektem
   ============================================ */
.hero-service-box-hybrid .neon-lines-index {
	position: absolute;
	z-index: 1;
	pointer-events: none;
	bottom: -68px;
	left: 0;
	width: 100%;
	height: 80%;
}

.hero-service-box-hybrid .neon-path {
	fill: #B3E8FF;
	filter: drop-shadow(0 0 29.51px #B3E8FF) drop-shadow(0 0 13.93px #B3E8FF);
}

.hero-service-box-hybrid .neon-path-1 {
	transform: translateY(15px);
}

.hero-service-box-hybrid .neon-path-2 {
	transform: translateY(-10px);
}

.hero-service-box-hybrid .neon-path-3 {
	transform: translateY(35px);
}

@media (max-width: 991.98px) {
	.hero-service-box-hybrid .neon-lines-index {
		height: 70%;
	}
}

@media (max-width: 767.98px) {
	.hero-service-box-hybrid .neon-lines-index {
		height: 60%;
		opacity: 0.7;
	}
}

.hybrid-car-image {
	position: absolute;
	bottom: 44px;
	left: 43%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 2;
	pointer-events: none;
	overflow: visible;
}

.hybrid-car-image .hybrid-car-img {
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.hybrid-logo-overlay {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 240px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	bottom: 20px;
	justify-content: flex-start;
}

.hybrid-logo-overlay .hybrid-logo {
	width: 100%;
	height: auto;
	margin-bottom: 28px;
}

.hybrid-logo-overlay .hybrid-description {
	text-align: right;
	margin-bottom: 0;
	padding-bottom: 0;
	width: 100%;
}

.hybrid-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hybrid-top-section {
	position: relative;
	z-index: 4;
}

.hybrid-header {
	margin-bottom: 0;
}

.hybrid-title {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 0;
}

.hybrid-title-large {
	font-family: 'Oxanium', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #00A8E8;
	line-height: 1;
}

.hybrid-title-small {
	font-family: 'Oxanium', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #C00113;
	line-height: 1;
	margin-top: 0;
}

.hybrid-description {
	margin-bottom: 20px;
	padding-bottom: 0;
}

.hybrid-button-wrapper {
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
	padding-top: 20px;
	position: relative;
	z-index: 4;
	width: 100%;
}

/* Car Icons Preview and Button Row */
.hero-box-cars-and-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: auto;
}

.hero-box-cars-preview {
	display: flex;
	align-items: center;
	gap: 0;
	position: relative;
	flex-wrap: nowrap;
}

.car-preview-image {
	position: relative;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #FFFFFF;
	background: rgba(255, 255, 255, 0.1);
	margin-left: -15px;
	transition: transform 0.2s ease, z-index 0.2s ease;
	box-sizing: border-box;
}

.car-preview-image:first-child {
	margin-left: 0;
}

.car-preview-image:hover {
	transform: scale(1.1);
	z-index: 10 !important;
}

.car-preview-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.car-preview-placeholder {
	filter: brightness(0) invert(1);
	opacity: 0.8;
	padding: 8px;
}

.car-icon-small {
	width: 24px;
	height: 24px;
	opacity: 0.8;
	filter: brightness(0) invert(1);
}

.car-count-badge {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	color: #000000;
	margin-left: -15px;
	position: relative;
	z-index: 5;
	border: 1px solid #FFFFFF;
	white-space: nowrap;
	box-sizing: border-box;
}

/* Buttons */
.hero-box-buttons {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.hero-box-button-right {
	display: flex;
	justify-content: flex-end;
}

.btn-hero-red,
.btn-hero-white {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-family: 'Oxanium', sans-serif;
}

.btn-hero-red {
	background-color: #C00113;
	color: #ffffff;
	border: 1px solid #FFFFFF;
	box-sizing: border-box;
}

.btn-hero-red:hover {
	background-color: #a0010f;
	color: #ffffff;
	text-decoration: none;
	border-color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(192, 1, 19, 0.4);
}

.btn-hero-white {
	background-color: #ffffff;
	color: #000000;
}

.btn-hero-white:hover {
	background-color: #f0f0f0;
	color: #000000;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-hero-hybrid {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-family: 'Oxanium', sans-serif;
	background-color: #0A4159;
	color: #ffffff;
	box-sizing: border-box;
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 90px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(10, 65, 89, 0.4);
}

.btn-hero-hybrid:hover {
	background-color: #0d5a7a;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.45), 0 0 120px rgba(255, 255, 255, 0.25), 0 4px 12px rgba(10, 65, 89, 0.4);
}

.btn-hero-small {
	padding: 10px 18px;
	font-size: 14px;
}

.btn-hero-white-border {
	background: #ffffff;
	border: 2px solid #C00113;
	color: #C00113;
	padding: 10px 18px;
	font-size: 14px;
	display: inline-block;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	font-family: 'Oxanium', sans-serif;
}

.btn-hero-white-border:hover {
	background: #f0f0f0;
	color: #C00113;
	text-decoration: none;
	border-color: #C00113;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-hero-transparent {
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	color: #ffffff;
	padding: 0;
	font-size: 14px;
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	text-align: left;
	transition: all 0.3s ease;
	cursor: pointer;
	font-family: 'Oxanium', sans-serif;
	line-height: 1.2;
}

.btn-hero-transparent:hover {
	background: transparent;
	color: #ffffff;
	text-decoration: none;
	border-bottom-color: rgba(255, 255, 255, 0.6);
	opacity: 1;
}

/* Responsive Design */
/* Responzivní breakpoints pro hero-index */
@media (max-width: 1199.98px) {
	.hero-index .container {
		padding-bottom: 40px;
	}

	.hero-boxes-row {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto;
		gap: 10px;
	}

	/* Tablet: přepnout na 2-sloupcový grid */
	.hero-col-1 .hero-service-box-red {
		grid-column: 1;
		grid-row: 1;
	}

	.hero-col-2 .hero-box-top {
		grid-column: 2;
		grid-row: 1;
	}

	.hero-col-2 .hero-box-bottom {
		grid-column: 1;
		grid-row: 2;
	}

	.hero-col-1 .hero-service-box-white {
		grid-column: 1;
		grid-row: 3;
	}

	.hero-col-3 .hero-service-box-hybrid {
		grid-column: 2;
		grid-row: 2 / 4;
		margin-left: 0;
	}

	.hero-service-box {
		min-height: 180px;
	}

	.hero-service-box-hybrid {
		min-height: 380px;
	}

	.hero-box-title {
		font-size: 22px;
	}

	.hybrid-title-large {
		font-size: 28px;
	}

	.hybrid-title-small {
		font-size: 18px;
	}

	.hybrid-car-image {
		bottom: 23px;
		left: 40%;
		transform: translateX(-50%);
		width: 100%;
		max-width: 403px;
	}
}

@media (max-width: 767.98px) {

	/* Hero — mobilní výška navbaru + celá fotka bez max-height limitu */
	.hero-background {
		margin-top: var(--navbar-height-mobile);
	}

	.hero-bg-image {
		max-height: none;
		object-fit: initial;
	}

	/* Container & layout */
	.hero-index .container {
		padding-top: 20px;
		padding-bottom: 30px;
		padding-left: 28px;
		padding-right: 28px;
	}

	.hero-boxes-row {
		grid-template-columns: 1fr;
		gap: 8px;
		align-items: stretch;
	}

	/* Reset explicitního grid placementu — order pravidla řídí pořadí v 1-column stacku */
	.hero-col-1 .hero-service-box-red,
	.hero-col-2 .hero-box-top,
	.hero-col-2 .hero-box-bottom,
	.hero-col-1 .hero-service-box-white,
	.hero-col-3 .hero-service-box-hybrid {
		grid-column: auto;
		grid-row: auto;
		margin-left: 0;
	}

	/* Přeřazení karet dle Figma: Prodej → Auto na obj. → Autoservis → Výkup → HybridZone */
	.hero-col-1 .hero-service-box-red {
		order: 1;
	}

	/* Prodej */
	.hero-col-2 .hero-box-top {
		order: 2;
	}

	/* Auto na objednávku */
	.hero-col-2 .hero-box-bottom {
		order: 3;
	}

	/* Autoservis */
	.hero-col-1 .hero-service-box-white {
		order: 4;
	}

	/* Výkup */
	.hero-col-3 .hero-service-box-hybrid {
		order: 5;
	}

	/* HybridZone */

	/* Box dimensions */
	.hero-service-box {
		min-height: 188px;
		border-radius: 11px;
		padding: 16px 24px;
	}

	/* Borders per card color */
	.hero-service-box-red {
		border: 1px solid #C00113;
	}

	.hero-service-box-black {
		border: 1px solid #000;
	}

	.hero-service-box-white {
		border: 1px solid #e0e0e0;
	}

	/* Výkup — specifické barvy textu */
	.hero-service-box-white .hero-box-title {
		color: #333;
	}

	.hero-service-box-white .hero-box-description {
		color: #555;
		font-weight: 700;
	}

	.hero-service-box-white .btn-hero-white-border {
		border-color: #C00113;
	}

	/* Ikony — přesun z pravého horního rohu doleva vedle titulku */
	.hero-box-icon {
		left: 24px;
		right: auto;
		top: 16px;
		width: 40px;
		height: 40px;
	}

	/* Title — padding-left pro prostor ikony (40px ikona + 12px mezera) */
	.hero-box-title {
		font-size: 22px;
		font-weight: 700;
		line-height: 1.3;
		margin-bottom: 12px;
		padding-left: 52px;
	}

	/* Description */
	.hero-box-description {
		font-size: 16px;
		line-height: 23px;
		margin-bottom: 15px;
	}

	/* Buttons */
	.btn-hero-red,
	.btn-hero-white {
		font-size: 16px;
		font-weight: 500;
		border-radius: 9px;
		height: 40px;
		padding: 8px 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.btn-hero-small {
		font-size: 16px;
		font-weight: 500;
		border-radius: 9px;
		height: 40px;
		padding: 8px 16px;
	}

	.btn-hero-white-border {
		font-size: 16px;
		font-weight: 500;
		border-radius: 9px;
		height: 40px;
		padding: 8px 18px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.btn-hero-transparent {
		font-size: 16px;
		font-weight: 500;
	}

	/* HybridZone karta */
	.hero-service-box-hybrid {
		min-height: 384px;
		height: auto;
		background: linear-gradient(157.07deg, rgba(0, 158, 227, 0) -7.24%, #009EE3 81.88%), #0A0A0A;
		border: none;
		grid-row: auto;
	}

	/* HybridZone ikona — zachovat vlevo nahoře */
	.hero-service-box-hybrid .hero-box-icon.hybrid-icon-top {
		left: 15px;
		top: 15px;
		width: 40px;
		height: 40px;
	}

	.hybrid-logo-overlay {
		width: 246px;
		top: 15px;
		right: 15px;
	}

	.hybrid-logo-overlay .hybrid-description {
		font-size: 16px;
		font-weight: 700;
		line-height: 25px;
		width: 258px;
		text-align: right;
	}

	.hybrid-car-image {
		bottom: -10px;
		left: 0;
		transform: none;
		width: 80%;
		max-width: 435px;
	}

	.btn-hero-hybrid {
		border-radius: 8px;
		font-size: 16px;
		font-weight: 500;
		height: 40px;
		padding: 8px 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.hybrid-title-large {
		font-size: 22px;
	}

	.hybrid-title-small {
		font-size: 15px;
	}
}

@media (max-width: 575.98px) {

	.hero-index .container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.hero-service-box {
		min-height: 170px;
		padding: 14px 16px;
	}

	.hero-service-box-hybrid {
		min-height: 340px;
	}

	.hero-box-icon {
		left: 16px;
		top: 14px;
		width: 36px;
		height: 36px;
	}

	.hero-box-title {
		font-size: 20px;
		padding-left: 48px;
	}

	.hero-box-description {
		font-size: 14px;
		line-height: 20px;
	}

	.hybrid-title-large {
		font-size: 20px;
	}

	.hybrid-title-small {
		font-size: 14px;
	}

	.hybrid-logo-overlay {
		width: 180px;
		top: 10px;
		right: 10px;
	}

	.hybrid-logo-overlay .hybrid-description {
		font-size: 14px;
		line-height: 20px;
		width: 100%;
	}

	.car-preview-image {
		width: 32px;
		height: 32px;
		margin-left: -12px;
	}

	.car-preview-image:first-child {
		margin-left: 0;
	}

	.car-count-badge {
		width: 32px;
		height: 32px;
		font-size: 10px;
		margin-left: -12px;
	}
}

/* Hybrid Zone Hero Typography Refinement */
.hybrid-text-subtitle {
	color: rgba(255, 255, 255, 0.66);
	font-size: 20px;
	font-weight: 500;
	font-family: 'Oxanium', sans-serif;
}

.hybrid-text-light {
	color: rgba(255, 255, 255, 0.66);
	font-size: 17px;
	font-weight: 700;
	font-family: 'Oxanium', sans-serif;
	line-height: 25px;
	letter-spacing: 0;
}

.hybrid-zone-sale-link {
	color: rgba(255, 255, 255, 0.66);
	transition: all 0.5s ease-in-out;
}

.hybrid-zone-sale-link span {
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: #009EE3;
	text-decoration-thickness: 2px;
}

.hybrid-zone-sale-link:hover {
	color: #009EE3;
}

/* Neon Curves - Hybrid Zone Hero */
.hero-visual .neon-lines {
	position: absolute;
	z-index: 1;
	pointer-events: none;
	overflow: visible;
	bottom: -76px;
	left: -81%;
	width: 190%;
	height: auto;
}

.hero-visual .neon-lines path {
	filter: drop-shadow(0 0 29.51px #B3E8FF) drop-shadow(0 0 13.93px #B3E8FF);
}


/* ============================================
   ANIMOVANÁ IKONA BLESKU - Toyota Hybrid sekce
   ============================================ */

.lightning-icon {
	display: block;
	margin-bottom: 16px;
	overflow: visible;
}

.lightning-icon .lightning-bolt {
	opacity: 1;
	filter: drop-shadow(0 0 8px #009EE3) drop-shadow(0 0 16px rgba(0, 158, 227, 0.9)) drop-shadow(0 0 28px rgba(0, 158, 227, 0.5));
	animation: lightningPulse 2.5s infinite;
}

@keyframes lightningPulse {

	/* Rozzářený stav - drží 50% času */
	0%,
	50% {
		opacity: 1;
		filter: drop-shadow(0 0 8px #009EE3) drop-shadow(0 0 16px rgba(0, 158, 227, 0.9)) drop-shadow(0 0 28px rgba(0, 158, 227, 0.5));
	}

	/* Tmavý stav - drží 25% času (62.5% - 87.5%) */
	62.5%,
	87.5% {
		opacity: 0.3;
		filter: drop-shadow(0 0 2px #009EE3) drop-shadow(0 0 4px rgba(0, 158, 227, 0.4));
	}

	/* Návrat do rozzářeného */
	100% {
		opacity: 1;
		filter: drop-shadow(0 0 8px #009EE3) drop-shadow(0 0 16px rgba(0, 158, 227, 0.9)) drop-shadow(0 0 28px rgba(0, 158, 227, 0.5));
	}
}


/* ============================================
   RESPONZIVNÍ ÚPRAVY NEON EFEKTŮ
   ============================================ */

@media (max-width: 767.98px) {
	.hero-visual .neon-lines {
		opacity: 0.7;
	}
}

/* Kontejner, který drží neony za autem */
.neon-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	/* Musí být pod autem, které má z-index: 2 */
	pointer-events: none;
	overflow: hidden;
}

.hybrid-neon {
	fill: none;
	stroke: #4deeea;
	/* Ta správná tyrkysová */
	stroke-width: 2;
	stroke-linecap: round;
	mix-blend-mode: screen;
	/* Hlavní efekt záře */
	filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 8px #4deeea) drop-shadow(0 0 20px rgba(77, 238, 234, 0.4));
}

/* Hybrid Zone Typography */
.hybrid-tech-title {
	font-size: 34px !important;
	font-weight: 600 !important;
	font-family: 'Oxanium', sans-serif !important;
	letter-spacing: 0 !important;
}

/* =====================================================
   CONSOLIDATED RESPONSIVE BLOCKS
   Desktop-first: largest breakpoint → smallest
   ===================================================== */

/* ----- min-width: 1400px — Extra large containers ----- */
@media (min-width: 1400px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1320px;
	}
}

/* ----- max-width: 1199.98px — Below desktop ----- */
@media (max-width: 1199.98px) {

	.hero-car-image {
		right: -24px;
		width: clamp(443px, 38vw, 650px);
	}

	.hero-visual .neon-lines {
		position: absolute;
		z-index: 1;
		pointer-events: none;
		overflow: visible;
		bottom: -62px;
		left: -75%;
		width: 190%;
		height: auto;
	}

	.navbar-b .nav-link {
		font-size: 14px;
	}

	h5 {
		font-weight: 600;
		letter-spacing: 0;
	}
}

/* ----- min-width: 768px & max-width: 1024px — Tablet ----- */
@media (min-width: 768px) and (max-width: 1024px) {
	.navbar-b .navbar-brand:after {
		/*border-top: 305px solid #aa0615;*/
		border-right: 140px solid transparent;
		left: 199px;
	}

	.navbar-b .nav-link {
		font-size: 12px;
	}

	.slider .parallax-slider .caption h2 {
		font-size: 20px;
	}

	.slider .parallax-slider .caption h3 {
		font-size: 21px;
	}

	.slider .parallax-slider .swiper-slide {
		min-height: 800px;
	}
}

/* ----- max-width: 1199.98px & min-width: 992px — Gradient variables tablet ----- */
@media (max-width: 1199.98px) and (min-width: 992px) {
	:root {
		--gradient-1-size-x: 450px;
		--gradient-1-size-y: 250px;
		--gradient-1-pos-x: 75%;
		--gradient-1-pos-y: 80%;

		--gradient-2-size-x: 500px;
		--gradient-2-size-y: 350px;
		--gradient-2-pos-x: -5%;
		--gradient-2-pos-y: 5%;

		--gradient-3-size-x: 500px;
		--gradient-3-size-y: 350px;
		--gradient-3-pos-x: 95%;
		--gradient-3-pos-y: -10%;
	}
}

/* ----- max-width: 991.98px — MAIN mobile breakpoint ----- */
/* Merged: navbar mobile menu + #navbarDefault + hero hybrid + footer-menu */
@media (max-width: 991.98px) {

	/* --- Navbar base --- */
	.navbar-b {
		min-height: 63px;
	}

	.navbar-b .navbar-brand:after {
		content: '';
		width: 0;
		height: 0;
		/*border-top: 305px solid #aa0615;*/
		border-right: 100px solid transparent;
		top: -78px;
		left: 200px;
		position: relative;
	}

	.zr-theme-menu-header-navber-area .nav-top-bar {
		background: transparent;
		position: relative;
		right: auto;
		top: auto;
	}

	.navbar-b .navbar-brand img {
		width: 220px;
	}

	.navbar-b .navbar-brand:before {
		display: none !important;
	}

	/* --- Mobile menu (class selectors) --- */

	.nav-right-wrapper {
		align-items: stretch !important;
	}

	.navbar-nav .nav-item {
		padding: 8px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.navbar-nav .nav-item:last-child {
		border-bottom: none;
	}

	.navbar-nav .nav-link {
		color: #FFFFFF;
		font-size: 16px;
		padding: 10px 20px;
		display: flex;
		align-items: center;
		transition: all 0.3s ease;
	}

	.navbar-nav .nav-link:hover {
		background-color: rgba(255, 255, 255, 0.08);
		color: #c00113;
		padding-left: 25px;
	}

	.navbar-nav .nav-link.active {
		color: #c00113;
		font-weight: 600;
		background-color: rgba(192, 1, 19, 0.15);
	}

	.navbar-nav .nav-link.hybrid-zone {
		color: #009EE3;
	}

	.navbar-nav .nav-link.hybrid-zone:hover {
		color: #009EE3;
		background-color: rgba(0, 158, 227, 0.05);
		text-shadow: 0 0 7px rgba(0, 158, 227, 0.5), 0 0 15px rgba(0, 158, 227, 0.25);
	}

	.mobile-contact-section {
		background-color: rgba(255, 255, 255, 0.05);
		margin: 15px 0 0 0;
		padding: 15px 0 0 0;
	}

	.mobile-contact-section h6 {
		font-size: 11px;
		letter-spacing: 1px;
		margin-bottom: 10px;
	}

	.mobile-social-wrapper {
		padding: 10px 20px;
	}

	.mobile-social-wrapper .btn {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		padding: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 2px solid #c00113;
		color: #c00113;
		transition: all 0.3s ease;
	}

	.mobile-social-wrapper .btn:hover {
		background-color: #c00113;
		color: #fff;
		transform: scale(1.1);
	}

	.dropdown-menu {
		background-color: rgba(255, 255, 255, 0.08);
		border: none;
		box-shadow: none;
		padding-left: 20px;
	}

	.dropdown-item {
		color: #ccc;
		padding: 8px 15px;
		font-size: 14px;
	}

	.dropdown-item:hover {
		background-color: rgba(255, 255, 255, 0.08);
		color: #c00113;
	}

	.mobile-social-custom {
		display: flex;
		align-items: center;
		position: absolute;
		right: 60px;
		z-index: 10001;
	}

	.mobile-social-custom a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 36px;
		height: 38px;
		color: #C00113;
		font-size: 16px;
		border-radius: 4px;
		transition: opacity 0.3s ease;
	}

	.mobile-social-custom a:hover {
		opacity: 0.7;
	}

	/* --- Mobile menu (ID selectors — higher specificity) --- */
	#navbarDefault {
		height: 100vh;
		overflow-y: auto;
		background: rgba(0, 0, 0, 0.96);
		top: 0;
		left: 0;
		position: absolute;
		width: 100%;
		z-index: 10000;
		right: 0;
		padding-top: 80px;
	}

	#navbarDefault .nav-link {
		font-size: 18px;
		padding: 15px 25px;
	}

	/* --- Slider --- */
	.slider .parallax-slider .caption h1 {
		font-size: 50px;
	}

	.slider .parallax-slider .swiper-slide {
		min-height: 40vh;
	}

	.slider .parallax-slider .swiper-slide .bg-img {
		top: 100px;
	}

	/* --- Footer --- */
	.footer-menu li {
		display: block;
		text-align: center;
	}

	/* --- Neon rotation --- */
	.hero-visual .neon-lines {
		rotate: -17deg;
	}

	/* --- Hero Hybrid mobile layout --- */
	:root {
		--gradient-1-size-x: 451px;
		--gradient-1-size-y: 279px;
		--gradient-1-pos-x: 82%;
		--gradient-1-pos-y: 87%;

		--gradient-2-size-x: 400px;
		--gradient-2-size-y: 300px;
		--gradient-2-pos-x: -10%;
		--gradient-2-pos-y: 10%;

		--gradient-3-size-x: 400px;
		--gradient-3-size-y: 300px;
		--gradient-3-pos-x: 90%;
		--gradient-3-pos-y: -5%;
	}

	.hero-hybrid {
		padding: 133px 0 60px;
		text-align: left;
	}

	.hero-hybrid .display-3 {
		font-size: 46px;
		line-height: 58px;
		margin-bottom: 2px;
	}

	.hero-content .h5 {
		font-weight: 500;
		font-size: 20px;
		line-height: 25px;
		color: rgba(255, 255, 255, 0.66);
		margin: 0 0 40px;
	}

	.hero-visual {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: relative;
		min-height: auto;
		margin-top: 40px;
	}

	.hero-hybrid .stats-grid {
		display: flex;
		flex-direction: column;
		gap: 8px;
		max-width: 463px;
		margin-bottom: 30px;
	}

	.hero-hybrid .stats-grid .col-md-4 {
		flex: none;
		max-width: 100%;
		padding: 0;
		margin-bottom: 0;
	}

	.hero-hybrid .glass-box.stat-item {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 16px 28px 16px 20px;
		height: 71px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 11px;
		gap: 25px;
	}

	.hero-hybrid .stat-item h2.h1 {
		font-size: 31px;
		font-weight: 600;
		line-height: 39px;
		margin: 0;
		padding: 0;
		white-space: nowrap;
	}

	.hero-hybrid .stat-item p.text-white-50 {
		font-size: 17px;
		font-weight: 700;
		line-height: 25px;
		color: rgba(255, 255, 255, 0.66);
		margin: 0;
		text-align: right;
	}

	.hero-logo-overlay {
		display: none;
	}

	.hero-visual .neon-lines {
		position: absolute;
		z-index: 1;
		pointer-events: none;
		overflow: visible;
		bottom: -163px;
		left: -71%;
		width: 190%;
		height: auto;
	}

	.hero-car-image {
		position: relative;
		bottom: -83px;
		margin-left: 52%;
		width: 95%;
		max-width: none;
		z-index: 100;
		filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
		right: auto;
		left: auto;
	}
}

/* ----- min-width: 768px & max-width: 991.98px — Tablet range ----- */
@media (min-width: 768px) and (max-width: 991.98px) {
	.hero-content {
		justify-items: center;
	}

	.home-area .home-content h1 {
		font-size: 80px;
	}

	.home-area {
		padding-top: 170px;
		padding-bottom: 40px;
	}

	.about-image {
		text-align: center;
		margin-top: 30px;
	}

	.tab .tabs li {
		margin: 0 20px;
	}

	.theme-single-press-content {
		margin-bottom: 30px;
	}

	.theme-single-press-content h3 {
		padding-bottom: 15px;
	}

	.contact-box {
		margin-bottom: 30px;
	}

	.header-chef-image img {
		max-width: 200px;
	}

	.book-now a {
		display: inline-block;
	}

	.zr-theme-reservation-area .text-right {
		text-align: left !important;
	}
}

/* ----- max-width: 767.98px — Mobile ----- */
@media (max-width: 767.98px) {

	.form-bg .button {
		background: #c00113;
		margin-top: 0;
		padding: 15px 20px;
	}

	.hero-social-links {
		position: absolute;
		left: 0%;
		bottom: 11%;
		right: 0%;
		top: unset;
		z-index: 888888905;
		display: flex;
		flex-direction: row;
	}

	.slider .parallax-slider .caption h2 {
		font-size: 21px;
	}

	.slider .parallax-slider .caption h3 {
		font-size: 19px;
	}

	.hero-social-links a {
		margin: 5px;
	}

	.section-title h2 {
		font-size: 30px;
	}

	#promo {
		padding: 48px 0;
	}

	#promo .promo-header {
		margin-bottom: 32px;
	}

	#promo .promo-header h2 {
		font-size: 30px;
		line-height: 39px;
	}

	#promo .promo-subtitle {
		font-size: 22px;
		line-height: 29px;
	}

	#promo .promo-text p {
		font-size: 16px;
		line-height: 26px;
	}

	.home-area {
		padding-top: 130px;
	}

	.home-area .home-content h1 {
		font-size: 65px;
	}

	.slider .parallax-slider .caption h1 {
		font-size: 65px;
	}

	.slider .control-text .swiper-nav-ctrl {
		margin-left: 10px;
		margin-right: 10px;
	}

	.about-content h2 {
		font-size: 30px;
	}

	.menu-day-product-content .menu-day-tab-list li {
		padding: 10px 15px;
		margin: 15px 0;
		border: 0;
	}

	.menu-day-product-content .menu-day-tab-list li a {
		font-size: 16px;
	}

	.zr-theme-reservation-area h2 {
		font-size: 35px;
		margin-bottom: 0;
	}

	.gallery-area .gallery-list .nav li {
		margin: 10px 10px;
	}

	.theme-single-press-content {
		margin-bottom: 15px;
	}

	.theme-single-press-content h3 {
		padding-bottom: 15px;
	}

	.contact-box {
		margin-bottom: 30px;
	}

	.form-container-box {
		padding: 25px 15px;
		margin-top: 30px;
	}

	.footer-area {
		text-align: center;
	}

	.footer-area .footer-link ul {
		margin-top: 10px;
		text-align: center;
		list-style-type: none;
	}

	.header-chef-image img {
		max-width: 200px;
	}

	.book-now a {
		display: inline-block;
	}

	.zr-theme-reservation-area .text-right {
		text-align: left !important;
	}

	.main-price {
		position: unset;
		right: 2px;
		top: 0;
		background: #444444;
		display: flex;
		height: 50px;
		text-align: center;
		vertical-align: middle;
		align-items: center;
		justify-content: center;
		color: #ffffff;
		font-size: 34px;
		margin-bottom: 12px;
	}

	.testimonial-content-inner {
		display: block;
	}

	.testimonial-bio {
		margin-right: 0px;
	}

	.single-testimonial .testimonial-bio .avatar img {
		border-radius: 0;
		border: 3px solid #fff;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}

	.form-container-box .single-cta {
		margin-bottom: 40px;
	}
}

/* ----- min-width: 480px & max-width: 767.98px — Medium mobile ----- */
@media (min-width: 480px) and (max-width: 767.98px) {

	.hero-visual .neon-lines {
		bottom: -101px;
		left: -91%;
	}

	.hero-car-image {
		margin-left: 26%;
	}
}

/* ----- max-width: 479.98px — Small mobile ----- */
@media (max-width: 479.98px) {

	.hero-car-image {
		margin-left: 22%;
	}

	.hero-visual .neon-lines {
		bottom: -84px;
		left: -92%;
	}

	.home-area .home-content h1 {
		font-size: 50px;
	}

	.slider .parallax-slider .caption h1 {
		font-size: 50px;
	}

	.slider .control-text .swiper-nav-ctrl {
		display: none;
	}
}

/* Hide contact section on mobile and tablet devices (below 768px) */
@media (max-width: 767.98px) {
	.d-none-below-md {
		display: none !important;
	}
}

@media (max-width: 640px) {
	.d-none-under-640 {
		display: none !important;
	}
}

/* =============================================
   Cookie Consent Banner
   ============================================= */
#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #1a1a1a;
	border-top: 2px solid var(--color-cta-primary, #C00113);
	z-index: 9998;
	padding: 14px 0;
}

.cookie-banner__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.cookie-banner__text {
	color: #ccc;
	font-size: 14px;
	margin: 0;
	line-height: 1.5;
}

.cookie-banner__text a {
	color: var(--color-cta-primary, #C00113);
	text-decoration: underline;
}

.cookie-banner__text a:hover {
	color: #fff;
}

.cookie-banner__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-banner__btn {
	padding: 8px 20px;
	border: none;
	border-radius: 3px;
	font-size: 14px;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.cookie-banner__btn--primary {
	background: var(--color-cta-primary, #C00113);
	color: #fff;
}

.cookie-banner__btn--primary:hover {
	background: #a00010;
}

.cookie-banner__btn--secondary {
	background: transparent;
	color: #aaa;
	border: 1px solid #555;
}

.cookie-banner__btn--secondary:hover {
	border-color: #aaa;
	color: #fff;
}

/* =============================================
   Autoservice — Premium Section
   ============================================= */

.autoservice-hero {
	padding: 60px 0 80px;
	background: #fff;
}

.autoservice-sticky-content {
	position: sticky;
	top: 120px;
}

.autoservice-eyebrow {
	display: block;
	font-family: 'Oxanium', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #C00113;
	margin-bottom: 14px;
}

.autoservice-title {
	font-family: 'Oxanium', sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.05;
	color: #111;
	text-transform: uppercase;
	margin: 0;
}

.autoservice-title-sub {
	font-family: 'Oxanium', sans-serif;
	font-size: 52px;
	font-weight: 300;
	line-height: 1.05;
	color: #bbb;
	text-transform: uppercase;
	margin: 0 0 28px;
}

.autoservice-intro {
	font-size: 15px;
	color: #555;
	line-height: 1.75;
	margin-bottom: 32px;
}

/* Stats row */
.autoservice-stats {
	display: flex;
	gap: 0;
	border-top: 1px solid #e0e0e0;
	padding-top: 24px;
}

.autoservice-stat {
	flex: 1;
	padding-right: 16px;
	margin-right: 16px;
	border-right: 1px solid #e0e0e0;
}

.autoservice-stat:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.autoservice-stat-value {
	display: block;
	font-family: 'Oxanium', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #111;
	line-height: 1.1;
}

.autoservice-stat-label {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #aaa;
	margin-top: 2px;
}

/* Feature cards grid */
.autoservice-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	background: #d8d8d8;
}

.autoservice-card {
	background: #fff;
	padding: 30px 26px;
	position: relative;
}

.autoservice-card-number {
	display: block;
	font-family: 'Oxanium', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #ccc;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.autoservice-card-icon {
	width: 40px;
	height: 40px;
	background: #C00113;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.autoservice-card-icon i {
	color: #fff;
	font-size: 15px;
}

.autoservice-card-text {
	font-size: 13.5px;
	color: #444;
	line-height: 1.65;
	margin: 0;
}

/* Dark CTA strip */
.autoservice-cta-strip {
	background: #111;
	padding: 22px 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 2px;
}

.autoservice-cta-left { flex: 1; min-width: 0; }

.autoservice-cta-title {
	font-family: 'Oxanium', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 2px;
	line-height: 1.2;
}

.autoservice-cta-trust {
	font-size: 11px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0;
}

.autoservice-cta-btn {
	background: #C00113;
	color: #fff !important;
	font-family: 'Oxanium', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 11px 22px;
	text-decoration: none !important;
	white-space: nowrap;
	display: inline-block;
	transition: background 0.2s ease;
}

.autoservice-cta-btn:hover {
	background: #a00010;
}

/* Responsive */
@media (max-width: 991px) {
	.autoservice-sticky-content {
		position: static;
		margin-bottom: 48px;
	}

	.autoservice-title,
	.autoservice-title-sub {
		font-size: 38px;
	}
}

@media (max-width: 767px) {
	.autoservice-cards {
		grid-template-columns: 1fr;
	}

	.autoservice-title,
	.autoservice-title-sub {
		font-size: 30px;
	}

	.autoservice-cta-strip {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 576px) {
	.cookie-banner__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}
