/* =========================================================
   AHM Stationery Ordering Portal
   Visual identity: an internal print-shop "job ticket" —
   ink-navy chrome, uncoated-paper cards, punch-hole rail,
   monospace job data (Plex Mono) set against Plex Sans UI text.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --ink:        #141B22;
  --ink-soft:   #2B3742;
  --paper:      #E9E3D3;
  --paper-deep: #DED5BC;
  --card:       #FBF9F3;
  --rust:       #00adef;
  --rust-dark:  #8E3D13;
  --steel:      #33506B;
  --ok:         #3B6E4F;
  --err:        #9C3030;
  --line:       #C9BFA4;
  --radius:     3px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  line-height: 1.5;
}

a { color: var(--rust-dark); }

.mono { font-family: 'IBM Plex Mono', monospace; }

/* ---------------- Header ---------------- */
.site-header {
  background: var(--ink);
  color: #ffffff;
  border-bottom: 4px solid var(--rust);
}
.site-header__inner {
  max-width: 880px;    text-align: center;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-header__mark {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  border: 2px solid var(--rust);
  color: var(--rust);
  padding: 6px 10px;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.site-header__text {     display: flex;
    flex-direction: row;gap:15px;
    flex-grow: 1;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center; }
.site-header__title { font-size: 2.15rem;line-height: 2.15rem; font-weight: 600; }
.site-header__sub { font-size: 1.4rem; color: #B9BEC4; }
.site-header__user {
  font-size: 0.85rem;
  text-align: right;
  color: #D8DBDD;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-header__user a { color: var(--rust); text-decoration: none; font-weight: 500; }

/* ---------------- Layout ---------------- */
.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 24px 64px;
  min-height: 60vh;
}

.site-footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding: 24px;
}

/* ---------------- Job ticket card ---------------- */
.ticket {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  padding: 50px 50px;
  box-shadow: 0 1px 0 rgba(20,27,34,0.04);
}
.ticket::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--rust) 0 10px, transparent 10px 18px);
}

.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 14px;
  margin-bottom: 24px;
}
.ticket-head h1 {
  font-size: 1.35rem;
  margin: 0;
  font-weight: 600;
}
.ticket-head .ticket-head__meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ---------------- Step tracker ---------------- */
.ticket-steps {
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0 0 28px;
}
.ticket-steps__item {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  border-bottom: 3px solid var(--line);
  font-size: 0.74rem;
  color: var(--ink-soft);
}
.ticket-steps__num {
  display: inline-block;
  width: 20px; height: 20px;
  line-height: 20px;
  border-radius: 50%;
  background: var(--paper-deep);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  margin-right: 6px;
}
.ticket-steps__label { display: none; }
@media (min-width: 620px) {
  .ticket-steps__label { display: inline; }
}
.ticket-steps__item--active {
  border-bottom-color: var(--rust);
  color: var(--ink);
  font-weight: 600;
}
.ticket-steps__item--active .ticket-steps__num { background: var(--rust); color: #fff; }
.ticket-steps__item--done { color: var(--ok); }
.ticket-steps__item--done .ticket-steps__num { background: var(--ok); color: #fff; }

/* ---------------- Choice grid (country/brand/item selection) ---------------- */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.choice-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.1s ease;
}
.choice-card:hover { border-color: var(--rust); transform: translateY(-1px); }
.choice-card__icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.choice-card__label { font-weight: 600; font-size: 0.98rem; }

/* ---------------- Forms ---------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid--single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.field .hint { font-size: 0.72rem; color: #6B7178; font-weight: 400; }
input[type=text], input[type=email], input[type=tel], textarea, select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(181,80,27,0.15);
}
textarea { resize: vertical; min-height: 80px; }
.char-count { font-size: 0.7rem; color: #8A8F94; text-align: right; }

.qty-options { display: flex; gap: 10px; flex-wrap: wrap; }
.qty-options input { position: absolute; opacity: 0; pointer-events: none; }
.qty-options label {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
  cursor: pointer;
  background: #fff;
}
.qty-options input:checked + label,
.qty-options label.is-checked {
  border-color: var(--rust);
  background: var(--rust);
  color: #fff;
}

/* ---------------- Buttons ---------------- */
.btnqq {
  display: inline-block;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btnqq:hover { background: var(--ink-soft); }
.btn--primaryqq { background: var(--rust); border-color: var(--rust-dark); }
.btn--primaryqq:hover { background: var(--rust-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: transparent; }
.btn-row { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }

/* ---------------- Business card preview ---------------- */
.bc-preview-wrap {
  display: flex; gap: 22px; flex-wrap: wrap; margin: 18px 0 28px;
}
.bc-face {
  width: 300px; height: 172px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 20px;
  position: relative;
  box-shadow: 0 6px 16px rgba(20,27,34,0.12);
  font-family: 'IBM Plex Sans', sans-serif;
}
.bc-face__label {
  position: absolute; top: -10px; left: 14px;
  background: var(--ink); color: #fff;
  font-size: 0.65rem; letter-spacing: 0.04em;
  padding: 2px 8px; border-radius: 2px;
}
.bc-face--front .bc-name { font-size: 1.05rem; font-weight: 700; margin: 0 0 2px; }
.bc-face--front .bc-designation { font-size: 0.78rem; color: var(--ink-soft); margin: 0 0 14px; }
.bc-face--front .bc-contact { font-size: 0.72rem; line-height: 1.7; color: var(--ink); }
.bc-face--front .bc-brand { position: absolute; bottom: 16px; right: 18px; font-size: 0.72rem; font-weight: 600; color: var(--rust-dark); }
.bc-face--back { display: flex; align-items: center; justify-content: center; }
.bc-face--back .bc-brand-big { font-size: 1.3rem; font-weight: 700; color: var(--steel); text-align: center; }
.bc-face--back .bc-tagline { font-size: 0.7rem; color: #8A8F94; text-align: center; margin-top: 6px; }

/* ---------------- Review page ---------------- */
.review-table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.review-table th, .review-table td {
  text-align: left; padding: 8px 4px; border-bottom: 1px solid var(--line);
  font-size: 0.9rem; vertical-align: top;
}
.review-table th { width: 38%; color: var(--ink-soft); font-weight: 600; }

.confirm-box {
  background: var(--paper);
  border: 1px dashed var(--rust);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 22px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.confirm-box input { margin-top: 3px; }
.confirm-box label { font-size: 0.9rem; font-weight: 600; }

/* ---------------- Alerts ---------------- */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: 0.88rem; margin-bottom: 18px; }
.alert--error { background: #F4E1E1; color: var(--err); border: 1px solid #E3B7B7; }
.alert--success { background: #E4EEE6; color: var(--ok); border: 1px solid #B9D6C1; }

/* ---------------- Login ---------------- */
.login-wrap { max-width: 420px; margin: 6vh auto 0; }
.login-wrap .ticket { text-align: center; }
.login-wrap p.lede { color: var(--ink-soft); font-size: 0.9rem; margin-top: -8px; }

/* ---------------- Success page ---------------- */
.success-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rust-dark);
  letter-spacing: 0.03em;
  border: 2px dashed var(--rust);
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius);
  margin: 14px 0 20px;
}

/* ---------------- Admin ---------------- */
.admin-shell { display: flex; min-height: 100vh; }
.admin-nav {
  width: 220px; flex-shrink: 0;
  background: var(--ink); color: var(--paper);
  padding: 20px 0;
}
.admin-nav a {
  display: block; padding: 10px 22px; color: #C7CBCE;
  text-decoration: none; font-size: 0.88rem;
}
.admin-nav a:hover, .admin-nav a.active { background: var(--ink-soft); color: #fff; }
.admin-nav .admin-nav__title { padding: 0 22px 16px; font-weight: 700; color: #fff; font-size: 1.02rem; }
.admin-main { flex-grow: 1; padding: 30px 36px; max-width: 1080px; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--card); }
.admin-table th, .admin-table td {
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 0.88rem;
}
.admin-table th { background: var(--paper-deep); }
.status-pill {
  font-size: 0.72rem; padding: 3px 10px; border-radius: 20px; font-weight: 600;
  background: var(--paper-deep); color: var(--ink-soft); display: inline-block;
}
.status-pill--submitted { background: #E4D9C4; color: var(--rust-dark); }
.status-pill--completed { background: #D3E6D9; color: var(--ok); }
.status-pill--cancelled { background: #F0D6D6; color: var(--err); }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .admin-shell { flex-direction: column; }
  .admin-nav { width: 100%; display: flex; overflow-x: auto; padding: 10px; }
  .admin-nav .admin-nav__title { display: none; }
  .admin-nav a { padding: 8px 14px; white-space: nowrap; }
  .admin-main { padding: 20px; }
}

/* Theme Name: Linexon - Responsive Landing Page Template
   Author: Themesdesign
   Version: 1.0.0
   Created: October 2017
   File Description: Main CSS file of the template
*/
@import url('https://fonts.googleapis.com/css2?family=MBCorpoText:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@700&display=swap');

@font-face {
	font-family: MBCorpoTitle;
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url(fonts/MBCorpoATitleCond-Regular.eot);
	src: url(fonts/MBCorpoATitleCond-Regular.eot#iefix) format("embedded-opentype"), url(fonts/MBCorpoATitleCond-Regular.woff2) format("woff2"), url(fonts/MBCorpoATitleCond-Regular.woff) format("woff"), url(fonts/MBCorpoATitleCond-Regular.ttf) format("truetype"), url(fonts/MBCorpoATitleCond-Regular.svg#MBCorpoTitle) format("svg")
}
@font-face {
	font-family: MBCorpoText;
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url(fonts/MBCorpoSText-Regular.eot);
	src: url(fonts/MBCorpoSText-Regular.eot#iefix) format("embedded-opentype"), url(fonts/MBCorpoSText-Regular.woff2) format("woff2"), url(fonts/MBCorpoSText-Regular.woff) format("woff"), url(fonts/MBCorpoSText-Regular.ttf) format("truetype"), url(fonts/MBCorpoSText-Regular.svg#MBCorpoSText-Regular-Web) format("svg")
}


body {
    font-family: 'MBCorpoText', sans-serif;
    color: #ffffff;
}
.h-topbar{
  display: flex;
  justify-content: right; height: 96px;
  align-items: center;	
}
.h-topbar2{
  display: flex;
  justify-content: left; height: 96px;
  align-items: center;	
}
.callt{font-size: 18px;
    color: #a2a2a2;
	}
	.callt:hover{
    color: #00adef;
	}
#teaser {
	  display: flex;
  justify-content: center;
  align-items: center;
    height: auto;
    padding: 0 0 30px 0;
    background-color: #000000;
    background: #000000;
}
ul.social-icons {
    margin: 0;
    padding: 0;
}
.defaultscroll.fixed-top.sticky {
    position: relative;
}
.defaultscroll.fixed-top.sticky.darkheader {
    position: fixed;
}
.teaser {
  display: flex;
  justify-content: center;
  align-items: center;
   padding: 3rem 0;
    background-color: #303131;
    background: linear-gradient(to bottom, #303131 0%, #4d4f4f 50%, #303131 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@mainColor', endColorstr='@mainColor', GradientType=0);
}
.current-measures{color:#fff;}
#teaser .car-img {
  text-align: center;
  line-height: 400px;
}
#teaser .car-img img {
  display: inline-block;
}
#teaser .carousel-control {
  position: relative;
}
#teaser .carousel-control.left,
#teaser .carousel-control.right {
  background-image: none;
  margin: 0;
  width: 30px;
}
#teaser .carousel-control.left {
  left: 90%;
}
#teaser .carousel-control.right {
  left: 95%;
}
#teaser .carousel-control .glyphicon-chevron-left,
#teaser .carousel-control .glyphicon-chevron-right {
  margin: 0;
}
#teaser .carousel-control .glyphicon-chevron-right {
  right: auto;
}
.section22 {
    padding-top: 0px;
    padding-bottom: 80px;
    position: relative;
    background-color: #fff;
}
.arrow-down {
    width: 0;
    height: 0;
    border-left: 37px solid transparent;
    border-right: 37px solid transparent;
    border-top: 37px solid #303131;
    margin: 0 auto;
}
.contact-info {
    text-align: left;
    position: relative;
    padding-left: 100px;
}
.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;color: #ffffff;
}
.contact-info p {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
}
.contact-info .icon {
    position: absolute;
    left: 0;
    top: 0;
}

.contact-info .call2{width:80px;display: inline-block;color: #ffffff;}
.contact-bottom {
    margin: 40px 0;
}
.contact-info a {
    color: #ffffff;
}
.contact-info a:hover {
    color: #0088c6;
}
.contact-info .icon i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border: 1px solid #00adef;
    color: #00adef;
    font-size: 25px;
    border-radius: 100%;
    text-align: center;
}
.footer-wrap {
    padding: 40px 0;
    background: #eee;
    text-align: center;
}
.copyright {
    margin-top: 20px;
    color: #ffffff;
    font-size: 14px;
}
.copyright a{color: #ffffff;}
.copyright a:hover{color: #000;}
.social-icons{list-style:none; margin-bottom:0;}
.social-icons li{display:inline-block; padding:0 3px;}
.social-icons li a{text-decoration:none; font-size:16px; width:30px; height:30px; display:block; border:1px solid#4267b2; text-align:center; line-height:30px; color:#4267b2;}

.social-icons li:nth-child(1) a{border:1px solid #25d366; color:#25d366;}
.social-icons li:nth-child(2) a{border:1px solid #4267b2; color:#4267b2;}
.social-icons li:nth-child(3) a{border:1px solid #2caae0; color:#2caae0;}
.social-icons li:nth-child(4) a{border:1px solid #d6249f; color:#d6249f;}
.social-icons li:nth-child(5) a{border:1px solid #0173b1; color:#0173b1;}

.social-icons li:nth-child(1) a:hover{background:#25d366; color:#fff;}
.social-icons li:nth-child(2) a:hover{background:#4267b2; color:#fff;}
.social-icons li:nth-child(3) a:hover{background:#2caae0; color:#fff;}
.social-icons li:nth-child(4) a:hover{background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); color:#fff;}
.social-icons li:nth-child(5) a:hover{background:#0173b1; color:#fff;}

.topic {
    font-family: "MBCorpoText",Helvetica,Arial,sans-serif!important;
}
.benz-title {
    font-family: "MBCorpoTitle",Helvetica,Arial,sans-serif!important;
	font-size: 2.7rem;
}
.features-desc h4{
font-family: "MBCorpoTitle",Helvetica,Arial,sans-serif!important;
font-size: 1.8rem;
}
.vin-c1 {
    font-family: MBCorpoText!important;
	font-style: normal;
    font-weight: 700;
}
.offers{box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;}
.offers2{padding:20px;}
.offers-dis{margin-top: 20px;}
.hover01 figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover01 figure:hover img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.hover01 figure {
	overflow: hidden!important;
}
.more-d{margin:15px 0;}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'MBCorpoText', sans-serif;
}

a {
    text-decoration: none !important;
    outline: none !important;
}
.countdown-container {
	position: relative;

}

.clock-item .inner {
	height: 0px;
	padding-bottom: 100%;
	position: relative;	
	width: 100%;    
}

.clock-canvas {
	background-color: rgba(0, 0, 0, .1);
	border-radius: 50%;
	height: 0px;
	padding-bottom: 100%;width:70px;height:70px;
}
.clock-item {
    margin: 5px;
}
.text {
	color: #000;	
	font-size: 15px;
	font-weight: bold;	
	margin-top: -25px;
	position: absolute;
	top: 60%;
	text-align: center;
	width: 100%;
}

.text .val {
	font-size: 20px;margin: 0;
}

.text .type-time {
	font-size: 8px;
}
.clock {
    padding: 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
	.clock-item {
		margin-bottom: 30px;		
	}
}
.offg {
    margin-bottom: 40px;
}
@media (max-width: 767px) {
	.site-header__inner {
    max-width: 880px;
    text-align: center;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: column;
}
.site-header__title {
    font-size: 1.85rem;
    line-height: 2.15rem;
    font-weight: 600;
}
.ticket-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 14px;
    margin-bottom: 24px;
    flex-direction: column;
}
#teaser .car-img {
    text-align: center;
    line-height: 250px;
}
.contact-info a {
    font-size: 15px;
}
.contact-info .icon i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #00adef;
    color: #00adef;
    font-size: 14px;
    border-radius: 100%;
    text-align: center;
}
.contact-info {
    text-align: left;
    position: relative;
    padding-left: 40px;
}
.alert {
    position: relative;
    padding: .75rem 0.8rem !important;
}
.ticket {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
    padding: 20px 20px;
    box-shadow: 0 1px 0 rgba(20, 27, 34, 0.04);
}
.login-wrap .ticket h4 {
    font-size: 20px;
}
.h-topbar {
    display: none;
}
#teaser .carousel-control.left, #teaser .carousel-control.right {
    background-image: none;
    margin: 0;
    top: -45px;
}	
#teaser .carousel-control.left {
    left: 87%;
}
#teaser .carousel-control.right {
    right: 87%;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.current-measures {
    color: #fff;
    margin-top: 47px;
}
.contact-info {
    text-align: left;
    margin-bottom: 30px;
}
	.home-height-half22 {
    padding: 300px 0 30px 0 !important; height: 70vh !important;
}
.text-left.cartag {
    text-align: center!important;
}
.home-height-half{
    padding: 100px 0 30px 0!important;
   height: 50vh !important;
}
	.clock-item {
		margin: 5px;
	}
.offers {
    margin: 0px;
}
.offers2 {
    padding: 20px;
}
.offers h2 {
    font-size: 1.7rem;
}
}
.invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.1rem rgba(220,53,69,0.45)!important;
    border-color: #dc3545!important;
    box-shadow: 0 0 0 0.1rem rgba(220,53,69,0.45)!important;
    padding-right: calc(1.5em + 0.75rem)!important;
    background-image: url(../images/error.svg) !important;
    background-repeat: no-repeat!important;
    background-position: right calc(0.375em + 0.1875rem) center!important;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)!important;    border-radius: .25rem;
}
#inght.invalid {    border-radius: .25rem;padding: 10px;
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.1rem rgba(220,53,69,0.85)!important;
    border-color: #dc3545!important;
    box-shadow: 0 0 0 0.1rem rgba(220,53,69,0.85)!important;
    padding-right: calc(0.5em + 0.75rem)!important;
    background-image: url(../images/error.svg) !important;
    background-repeat: no-repeat!important;
    background-position: right calc(0.375em + 0.1875rem) center!important;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)!important;
}
#captcha {
    width: 100px!important;
    display: inline!important;min-width: 100px!important;
	margin-bottom: 20px;
}
#submit_btn {
    margin-top: 12px;
}
.captcha {
    max-width: 350px!important;
}
/*======================
        HELPER
========================*/

.section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background-color: #fff;
}

.bg-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
#topnav {
    background: #000;
}
.bg-overlay-gradient{
    background: #396afc;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2948ff, #396afc);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2948ff, #396afc); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.4;
}

.title h2 {
    margin-top: 10px;
}

span.title-border:before {
    left: 100%;
}

span.title-border:after {
    right: 100%;
}

span.title-border:before {
    content: "";
    background: #dadada;
    width: 45px;
    height: 1px;
    top: 9px;
    position: absolute;
}

span.title-border:after {
    content: "";
    background: #dadada;
    width: 45px;
    height: 1px;
    top: 9px;
    position: absolute;
}

span.title-border {
    padding: 0 8px;
    font-size: 18px;
    line-height: 18px;
    position: relative;
    display: inline-block;
}

.btn-rounded {
    border-radius: 30px;
}

.btn-custom {
    font-size: 15px;
    transition: all 0.4s;
    color: #fff !important;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active,
.btn-custom.active,
.btn-custom.focus,
.btn-custom:active,
.btn-custom:focus,
.btn-custom:hover,
.open > .dropdown-toggle.btn-custom {
    box-shadow: none !important;
}

.btn-outline-custom {
    background-color: transparent;
    border: 1px solid #fff !important;
    transition: all 0.4s;
    color: #fff;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus,
.btn-outline-custom:active,
.btn-outline-custom.active,
.btn-outline-custom.focus,
.btn-outline-custom:active,
.btn-outline-custom:focus,
.btn-outline-custom:hover,
.open > .dropdown-toggle.btn-outline-custom {
    background-color: #fff !important;
    border: 1px solid #fff !important;
    box-shadow: none !important;
    color: #000;
}

.btn {
    padding: 12px 25px;
    font-size: 14px;
    letter-spacing: 0.03px;
    font-weight: 700;
    text-transform: uppercase;
}

.vertical-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;  
    flex-direction: row;
    -webkit-flex-direction: row;
}

/*==========================
        HOME
============================*/

.bg-home {
    background-image: url('../images/home-bg.jpg');
    background-size: cover;
    background-position: center center;
    height: 100vh;
}

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

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

.home-title{
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
}

.home-sub-title{
    font-size: 17px;
    line-height: 1.8;
    max-width: 600px;
}

.watch-video a span{
    font-size:16px;
    padding-left: 10px;
    position: relative;
    top: -5px;
}
.vincheckh2{margin:0 0 25px 0;}
#vincheck{height:56px;padding:18px 20px;margin:15px 0;}
.play-icon-circle {
    height: 64px;
    width: 64px;
    line-height: 64px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    font-size: 28px;
}
#features {
    background-color: #242424;
	    background-image: url(../images/bg1.png);
    background-repeat: repeat-x;
}
.rowzz {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.htczz{margin:30px;border-radius: 5px;max-width: 200px;}
#features h5,#features h4,#features h1,#features h3,#features ul li{color: #ffffff;}
.play-btn-light{
    background-color: #fff !important;
    color: #6c77c0;
    mix-blend-mode: lighten;;
}
.vinbox{ 
padding: 30px;
    box-shadow: rgb(17 17 26 / 10%) 0px 4px 16px, rgb(17 17 26 / 10%) 0px 8px 24px, rgb(17 17 26 / 10%) 0px 16px 56px;
    border: 1px solid #00adef;
  -webkit-border-radius: 6px; 
  -moz-border-radius: 6px; 
  border-radius: 6px; 
}
.vin-info {
    line-height: 85px;
    font-size: 36px;
    text-align: center;
    color: #000;
	cursor:pointer;
}
.vin-info:hover {
    color: #01adef;
	cursor:pointer;
}
.responsive-img{width:100%}
.note{
	font-family: MBCorpoText,DaimlerCS-Regular,sans-serif;
margin-top:30px;
    font-style: normal;
    font-size: 16px;    color: #ffffff;
    line-height: 24px;
}
.modal-body p {
    padding: 5px 15px;
	font-family: "MBCorpoText",Helvetica,Arial,sans-serif !important;
}
/*----------DEMO 2-----------*/
.home-height-half{
    padding: 450px 0 30px 0;
    height: auto;
}
/*----------DEMO 3-----------*/
.home-half{
    padding-bottom: 150px;
    padding-top: 180px;
    background-image: url('../images/home-bg.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
}

.home-registration-form .form-title {
    font-size: 24px;
    font-weight: 600;
}

.home-registration-form .form-subtitle{
    line-height: 1.4;
    font-size: 18px;
}

.home-registration-form {
    border-radius: 3px;
    box-shadow: 0px 0px 3px 0px #000000;
}

.home-registration-form .registration-form label{
    font-size: 14px;
}

.home-subtitle-width-100{
    max-width: 100%;
}

.small-text {
    font-size: 14px;
}

.registration-input-box{
    border:none;
    border-radius:0px;
    color: #999;
    border-bottom: 1px solid #c5c5c5;
    box-shadow: none !important;
    padding-left: 0;
    padding-right: 0;
}

/*---------DEMO 6-----------*/
.back-slide{
    height: 100vh;
}

.search-form input {
    padding: 15px 20px;
    width: 100%;
    font-size: 17px;
    color: #4c5667 !important;
    border: none;
    outline: none !important;
    padding-right: 180px;
    padding-left: 30px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 30px;
}

.search-form button {
    position: absolute;
    top: 7px;
    right: 8px;
    outline: none !important;
    border-radius: 30px;
    font-size: 17px;
    padding: 9px 30px;
}

.search-form form {
    position: relative;
    max-width: 600px;
    margin: 0px auto;
}

/*--------DEMO 8-----------*/
.bg-gradient {
    background: -webkit-linear-gradient(#7474BF, #348AC7);
    background: -moz-linear-gradient(#7474BF, #348AC7);
    background: -ms-linear-gradient(#7474BF, #348AC7);
    background: -o-linear-gradient(#7474BF, #348AC7);
    background: linear-gradient(#7474BF, #348AC7);
}
.navbar-light{
    background-color: #fff;
    box-shadow: 0 10px 33px rgba(0,0,0,.1) !important;
}

.navbar-light .navigation-menu > li > a {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    min-height: 62px;
}

.navbar-light .logo .logo-dark {
    display: inline-block !important;
}

.navbar-light .navigation-menu > li > a {
    color: #000 !important;
}
/*-----------DEMO 9----------*/
.bg-overlay-gredient {
    background: #000046;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    opacity: 0.8;
}
/*----------DEMO 10-----------*/
.bg-video{
    height: 100vh;
    background-color: #000;
}
/*---------DEMO 11--------*/
.navbar-light.small {
    top: 0px !important;
    width: 100%;
}
/*--------DEMO 12----------*/
.slidero{
    position: relative;
    z-index: 1;
}
/*---------DEMO 13-----------*/
.main-slider .flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: rgba(255,255,255,0.8); 
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  box-shadow: none; 
}
.main-slider .flex-control-paging li a:hover { 
  background: #333;
  background: rgba(255,255,255,0.9);
}
.main-slider .flex-control-paging li a.flex-active { 
}
.main-slider .flex-control-nav {
    bottom: -50px;
    left: 0;
    right: 0;
    width: auto;
}
/*==========================
        FEATURES
============================*/

.features-desc h2{
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
}

.features-desc p{
    font-size: 15px;
}

.features-desc a{
    color: #000;
    transition: all 0.5s;
    font-size: 15px;
    font-weight: 600;
}

.features-desc a i{
    font-size: 16px;
    position: relative;
    top: 2px;
}



.features-border{
    height: 2px;
    width: 70px;
}

/*==========================
        CTA 
============================*/
.critarea-desc {
    font-size: 26px;
}
/*==========================
        SERVICES
============================*/

.service-box {
    border: 1px dotted #dddddd;
    border-radius: 3px;
    position: relative;
}

.service-left {
    float: left;
}

.service-box .service-icon {
    font-size: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.service-box .service-desc {
    margin-left: 25%;
}

.service-box .service-desc h4 {
    font-size: 18px;
    font-weight: 600;
}

.service-box .service-desc p {
    font-size: 14px;
}

/*=========================
    CLIENTS/TESTIMONIAL 
===========================*/

.testimonial-box h4 {
    line-height: 26px;
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    font-family: 'MBCorpoText', sans-serif;
}

.client-images img {
    max-height: 30px;
    width: auto !important;
    margin: 10px auto;
    opacity: 0.3;
    transition: all 0.5s;
}

.client-images img:hover {
    opacity: 0.6;
}

.client-images .owl-pagination{
    display: none;
}

.testi-work{
    font-size: 15px;
}

/*=========================
        TEAM
===========================*/
.team-box{
    border-radius: 7px;
    border: 1px dashed #ddd;
}

.team-box .team-desc .team-name{
    font-weight: 600;
}

.team-box .team-desc .team-work{
    font-size: 14px;
}

.team-social li a {
    color: #808083;
    transition: all 0.52s;
    border: 1px solid #ddd;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 12px;
    display: inline-block;
}

.team-social li a:hover{
    color: #fff;
}

/*=========================
        PRICING
===========================*/
.plan-price h6{
    font-weight: 600;
    font-size: 36px;
    height: 110px;
    width: 110px;
    line-height: 110px;
    display: inline-block;
    color: white;
    border-radius: 50%;
}

.plan-price h6 span{
    font-size: 16px;
}

.plan-title h5{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}


.plan-features p{
    color: #8e8e8e;
}

.pricing-box{
    border-radius: 8px;
    border:1px solid #e2e2e2;
}

/*==========================
        CONTACT US
============================*/

.form-sub-title {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 50px;
}

.form-control {
    margin-bottom: 25px;
    box-shadow: none !important;
    height: 44px;
}

textarea.form-control {
    height: auto;
}

.error {
    margin: 8px 0px;
    display: none;
    color: red;
}

#ajaxsuccess {
    font-size: 16px;
    width: 100%;
    display: none;
    clear: both;
    margin: 8px 0px;
}

.error_message {
    padding: 10px;
    background-color: rgba(244, 35, 103, 0.2);
    margin-bottom: 20px;
    text-align: center;
}

.contact-loader {
    display: none;
}

#success_page {
    text-align: center;
    margin-bottom: 50px;
}

#success_page h3 {
    color: #0dba26;
    font-size: 22px;
}

/*==========================
        FOOTER
============================*/

.company-sub-menu li a {
  color: #a2a2a2;
  font-size: 16px; 
  margin-bottom: 7px;
  display: inline-block;
  transition: all 0.5s;
}

.footer-title{
  font-size: 16px;    color: #ffffff;
  font-weight: 700
}

.company-sub-menu li a:hover{
  text-decoration: none;color: #ffffff !important;
}

.contact-us p{
  color: #a2a2a2;
  font-size: 16px;
  margin-bottom: 7px;
}

.footer-icons li a{ 
    height: 35px;
    width: 35px;
    color: #a2a2a2;
    text-align: center;  
    border-radius: 20%;
    font-size: 16px;
    display: inline-block;
    line-height: 35px;  
    border-radius: 50%;
    border:1px solid #a2a2a2;  
    transition: all 0.5s;
}

.footer-icons li a:hover{
    color: #fff;
}
.vinbox .topic {
    font-size: 1.05rem;
}
.footer-alt .copy-rights{
  margin: 0;background: #262625;
  line-height: 60px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.counter-z{ 
   position: relative;
    top: 30px;
    left: 5px;
	}
.counter-z .badge-primary {
    width: 25px;
    line-height: 20px;border-radius: 100%;
    text-align: center;
    height: 25px;
    color: #fff;
    background-color: #00adef;
}
	.vincheckh2 {
    font-size: 28px;
	    font-family: MBCorpoTitle,serif;
}
.benz2{font-family: 'Lora', serif;font-size: 48px !important;
    line-height: 1.2!important;
    font-weight: 700!important;}
.benz2, .benz2 span {text-shadow: #000000 2px 2px 5px;}
.benz2 span {font-family: 'MBCorpoText', sans-serif;
    display: block!important;
    font-size: 28px!important;line-height:28px!important;
}
.footer {
    padding-top: 40px;
    padding-bottom: 20px;
	font-family: "MBCorpoText",Helvetica,Arial,sans-serif !important;
}
.footer a, .copy-rights a {
    color: #a2a2a2;
}
.footer a:hover, .copy-rights a:hover {
    color: #ffffff;
}
	.footer-alt .copy-rights {
font-size:14px;
}
@media (max-width: 768px) {
	.benz-title {
 font-size: 1.7rem;
}
.note{
	font-family: MBCorpoText,DaimlerCS-Regular,sans-serif;
margin-top:30px;
    font-style: normal;
    font-size: 14px;    color: #ffffff;
    line-height: 20px;
}
	.footer-alt .copy-rights {
    padding: 10px 15px;
    line-height: 15px;font-size:14px;
}
.features-desc {
    padding-bottom: 30px;
}
	.offset-2{padding:0;margin:0;}
	.benz{display:block;}
	#service{padding:50px 0;}
	.mob-v{padding:0;}
    .service-box .service-desc {
        width: auto;
        margin-left: 0%;
    }
	.vincheckh2 {
    font-size: 24px;
}
	.vinbox {
    padding: 30px 15px;
	}
.g-recaptcha {
transform:scale(0.94);
-webkit-transform:scal(0.94);
transform-origin:0 0;
-webkit-transform-origin:0 0;
} 
#inght.invalid {    border-radius: .25rem;padding: 7px 5px 0 5px;
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.1rem rgba(220,53,69,0.85)!important;
    border-color: #dc3545!important;
    box-shadow: 0 0 0 0.1rem rgba(220,53,69,0.85)!important;
    padding-right: calc(0.5em + 0.75rem)!important;
    background-image: none !important;
    background-repeat: no-repeat!important;
    background-position: right calc(0.375em + 0.1875rem) center!important;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)!important;
}
    .service-box .service-icon {
        top: -15px;
        position: relative;
        transform: none;
        left: 0;
    }
    .vertical-content{
        display: inherit;
    }
    .features-desc h2{
        font-size: 26px;
    }
    .home-title {
        font-size: 28px;
    }
    .home-sub-title {
        font-size: 14px;
    }
    .home-half {
        padding-bottom: 85px;
        padding-top: 120px;
    }
    .home-height-half{
        height: 100vh;
    }
    .navbar-light .logo {
        line-height: 0px !important;
        padding: 0px !important;
    }
}

/*==================================
STYLE SWITHER - Demo purpose only
==================================*/ 

#style-switcher div h3 {
  color: #ffffff;
  font-size: 16px;
  margin: 8px 3px 12px;
}
#style-switcher {
  background: none repeat scroll 0 0 #2b2424;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.08);
  left: -189px;
  position: fixed;
  top: 17%;
  width: 189px;
  z-index: 9999;
  padding: 10px 5px;
}
#style-switcher div {
  padding: 5px 10px;
}
#style-switcher .bottom {
  background: none repeat scroll 0 0 #FFFFFF;
  color: #252525;
  padding: 0;
}
#style-switcher .bottom a.settings {
  background: none repeat scroll 0 0 #2b2424;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.08);
  display: block;
  height: 41px;
  position: absolute;
  right: -40px;
  top: 0;
  width: 40px;
  padding: 3px;
}
#style-switcher .bottom a {
  text-decoration: none;
}

#style-switcher .bottom a.settings i {
  margin-left: 5px;
  color: #ffffff;
  font-size: 24px;
  position: absolute;
}

ul.pattern {
  list-style: none outside none;
  margin: 0 0 0px;
  overflow: hidden;
  padding:0;
  border-radius: 0px;
}
ul.pattern li {
  float: left;
  margin: 2px;
}
ul.pattern li a {
  cursor: pointer;
  display: block;
  height: 35px;
  width: 35px;
  border-radius: 0px 35px 0px 0;
  margin: 5px;
}
ul.pattern .color1 {
  background-color: #00adef;
}
ul.pattern .color2 {
  background-color: #ff546c;
}
ul.pattern .color3 {
  background-color: #f2b31a;
}
ul.pattern .color4 {
  background-color: #31b164;
}
ul.pattern .color5 {
  background-color: #8060cf;
}
ul.pattern .color6 {
  background-color: #37b8df;
}
@media only screen and (max-width: 479px) {
  #style-switcher {
    display: none;
  }
}
