/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
@import "font-family.css";
@import "root.css";
@import "utility.css";

::placeholder {
  color: rgba(var(--body-color-rgb), 0.5);
  opacity: 1;
}.bus-partner-content

::-webkit-input-placeholder {
  color: rgba(var(--body-color-rgb), 0.5);
}

::-moz-placeholder {
  color: rgba(var(--body-color-rgb), 0.5);
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(var(--body-color-rgb), 0.5);
}

:-moz-placeholder {
  color: rgba(var(--body-color-rgb), 0.5);
  opacity: 1;
}

.jnl-form-control {
  color: var(--body-color);
  font-size: var(--font-size-body);
  background-color: var(--body-bg);
  border: 0.1rem solid transparent;
  outline: none;
  padding: 0.8rem 1.5rem;
  width: 100%;
  border-radius: 1rem;
}
.jnl-form-control:focus-visible,
.jnl-form-control:is(:focus, :focus-visible, :active) {
  border-color: var(--primary-color);
  outline-color: none;
}

.subs-form-control {
  padding: 2rem 2rem;
  padding-right: 10.6rem;
  border-radius: 1.6rem;
}
@media (max-width: 991px) {
  .mt-5 {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .subs-form-control {
    padding: 1.6rem 2rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.btn {
  --btn-font: 1.4rem;
  --btn-font-family: var(--font-family-body);
  --btn-radius: 4rem;
  --bt-padding-x: 1.8rem;
  --bt-padding-y: 1rem;
  --btn-light: #fff;
  --btn-icon-size: 2.7rem;

  font-size: var(--btn-font);
  font-family: var(--btn-font-family);
  font-weight: 600;
  line-height: 1.25;
  border: 0.2rem solid transparent;
  color: var(--btn-light);
  border-radius: var(--btn-radius);
  padding: var(--bt-padding-y) var(--bt-padding-x);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: fit-content;
  overflow: hidden;
/*   padding-right: calc(var(--btn-icon-size) + 1.5rem); */
}
.arrow-wrap {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
}
.btn-arrow {
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  border-radius: 50%;
  background-color: var(--btn-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  position: absolute;
}
.arrow2 {
  opacity: 0;
  transform: translateX(-30px);
}
.btn:hover .arrow1 {
  transform: translateX(30px);
  opacity: 0;
}
.btn:hover .arrow2 {
  transform: translateX(0);
  opacity: 1;
}

.btn-icon-primary {
  gap: 1.8rem;
  padding-right: calc(var(--btn-icon-size) + 1.5rem);
}
.btn-primary {
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
  color: var(--primary-color);
  background-color: var(--light);
}
.btn-primary:hover .btn-arrow {
  background-color: var(--primary-color);
  color: var(--light);
}
.btn-primary-outline {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  color: var(--light);
  border: 0.2rem solid var(--light);
}
.btn-primary-outline:hover {
  color: var(--light);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.btn-primary-outline2 {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  color: var(--primary-color);
  border: 0.2rem solid var(--primary-color);
}
.btn-primary-outline2:hover {
  color: var(--light);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.btn-primary-outline .btn-arrow,
.btn-primary-outline2 .btn-arrow {
  background-color: rgba(var(--light-rgb), 0.1);
  color: var(--light);
}
.btn-primary-outline:hover .btn-arrow,
.btn-primary-outline2:hover .btn-arrow {
  background-color: rgba(var(--light-rgb), 1);
  color: var(--primary-color);
}

.btn-link {
  --btn-font: 1.6rem;
  --bt-padding-x: 0;
  --bt-padding-y: 0;
  padding-right: 0;
}
.btn-link:hover {
  color: var(--primary-color);
}

/* Placeholder space when header is sticky */
.header-placeholder {
  height: var(--header-height, 10.2rem);
}
.section-header {
  padding-block: 2.8rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  padding-inline: 1.5rem;
  /* background-color: rgba(var(--secondary-bg-rgb), 0.6); */
  /* border-bottom: 0.1rem solid var(--border-color); */
}
.section-header.sticky {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  padding-block: 0.85rem;
  backdrop-filter: blur(1rem);
  background-color: rgba(var(--secondary-bg-rgb), 0.5);;
}
.section-header.sticky .section-header-wrap {
  --logo-size: 17.5rem;
}
.section-header.sticky .megamenu-content,
.section-header.sticky .menu-sub {
  top: calc(100% + var(--dropdown-height) - 1.6rem);
}

.section-header-wrap {
  --header-btn-group-width: 29.4rem;
  --logo-size: 20.2rem;
}
.section-header-logo {
  width: var(--logo-size);
  min-width: var(--logo-size);
  transition:
    width 0.3s ease-in-out,
    min-width 0.3s ease-in-out;
}
.section-header-right {
  --search-size: 20px;
  width: calc(100% - (var(--logo-size)) / 1);
  position: relative;
}
.section-header-main-menu {
  width: calc(100% - (var(--header-btn-group-width)) / 1);
  position: relative;
}
.section-header-hamburger {
  display: inline-block;
  padding-left: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .section-header-hamburger {
    display: none;
  }
}

.section-header-search .jnl-form-control {
  border-radius: 2.5rem;
}

.menu-wrap {
  --menu-item-gx: 2.3rem;
  --dropdown-height: 3.2rem;
  --megamenu-width: 89rem;
  --submenu-width: 22rem;
  gap: 0 var(--menu-item-gx);
  padding: 1.5rem 3rem;
  width: fit-content;
  margin-inline: auto;
  background-color: transparent;
  border-radius: 4rem;
}
.section-header.sticky .menu-wrap {
  background-color: var(--black);
}
.menu-wrap > li {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--light);
}
.menu-wrap > li > a {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: var(--light);
  transition: all 0.3s ease-in-out;
}
.menu-wrap > li:hover > a,
.menu-wrap > li > a:hover {
  color: var(--primary-color);
}
.menu-wrap > li.dropdown {
  position: relative;
}
.menu-wrap > li.dropdown > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: var(--dropdown-height);
  top: 100%;
  left: 0;
}
.menu-wrap > li .dropdown-icon {
  padding-left: 0.6rem;
  display: block;
}
.menu-wrap > li.megamenu {
  position: static !important;
}
.menu-wrap > li:hover > .megamenu-content {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0);
}
.menu-wrap > li:hover > .menu-sub {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0);
}

.menu-sub {
  position: absolute;
  width: 100%;
  min-width: var(--submenu-width);
  height: auto;
  left: -1.5rem;
  top: calc(100% + var(--dropdown-height) - 0.6rem);
  z-index: 2;
  background-color: var(--body-bg);
  box-shadow: 0px 1px 4.5px 0px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  padding: 1.25rem 1.55rem;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    transform 700ms ease;
}
.menu-sub > li > a {
  padding: 0.5rem 0;
  color: var(--body-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  position: relative;
}
.menu-sub > li > a::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 100%;
  top: 0;
  right: -2rem;
  z-index: 1;
  background-color: transparent;
}
.menu-sub > li > a:hover {
  color: var(--primary-color);
}
.menu-sub > li:hover > .menu-sub--2 {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0);
}
.menu-sub--2 {
  position: absolute;
  width: 100%;
  min-width: var(--submenu-width);
  height: auto;
  left: calc(100% + 0.1rem);
  top: 0;
  z-index: 2;
  background-color: var(--body-bg);
  box-shadow: 0px 2px 4.5px 0px rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  padding: 2rem 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    transform 700ms ease;
}
.menu-sub--2 > li > a::after {
  content: none;
}

.megamenu-content {
  position: absolute;
  width: 100%;
  max-width: 90%;
  height: auto;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: calc(100% + var(--dropdown-height) - 0.6rem);
  z-index: 2;
  background-color: var(--body-bg);
  box-shadow: 0px 2px 4.5px 0px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  padding: 1.2rem 1.55rem;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    transform 700ms ease;
}
.megamenu-content-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.megamenu-content-list::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  background-color: rgba(88, 89, 91, 0.15);
}
.megamenu-content-list > li {
  width: 42%;
  padding: 0.5rem 0;
}
.megamenu-content-list > li > a {
  color: var(--body-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.megamenu-content-list > li > a:hover {
  color: var(--primary-color);
}

/* header-btn-group css */
.header-btn-group {
  width: var(--header-btn-group-width);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .section-header.sticky .section-header-wrap {
    --logo-size: 13rem;
  }
  .section-header-wrap {
    --header-btn-group-width: 26.25rem;
    --logo-size: 14.2rem;
  }
  .menu-wrap {
		--menu-item-gx: 2rem;
		--megamenu-width: 89rem;
		--submenu-width: 22rem;
		padding-right: 1.2rem;
		margin-inline: 0;
		width: 100%;
	}

  .header-btn-group {
    gap: 1rem;
  }
  .btn {
    --btn-font: 1.4rem;
    --bt-padding-x: 1.4rem;
    --bt-padding-y: 1rem;
    --btn-icon-size: 2rem;
  }
  .btn-link {
    --btn-font: 1.4rem;
    --bt-padding-x: 0;
    --bt-padding-y: 0;
  }
}
@media (max-width: 1024px) {
  .section-header-right {
    justify-content: flex-end;
  }
  .section-header-main-menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-btn-group {
    width: 80%;
    width: calc(100% - (var(--header-btn-group-width)) / 1);
  }
}
@media (max-width: 768px) {
  .header-btn-group {
    display: none;
  }
}

/* mobile navigation css */
.mobile-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition:
    transform 500ms ease 500ms,
    visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav-wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition:
    transform 500ms ease 0ms,
    visibility 500ms ease 0ms;
}
.mobile-nav-wrapper.expanded .mobile-nav-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
}
.mobile-nav-wrapper .menu-wrap {
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
	width: 100%;
}
.mobile-nav-wrapper .menu-wrap li {
  width: 100%;
  color: var(--light);
}
.mobile-nav-wrapper .menu-wrap li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: inherit;
	padding: 1rem 0;
	font-size: 16px;
}
.mobile-nav-wrapper .menu-wrap li a::after {
  content: none;
}
.mobile-nav-wrapper .menu-wrap .megamenu,
.mobile-nav-wrapper .menu-wrap .megamenu-content,
.mobile-nav-wrapper .menu-wrap .menu-sub {
  width: 100%;
  position: static !important;
  opacity: 1;
  visibility: visible;
  min-width: initial;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  transform-origin: initial;
  transform: initial;
}
.mobile-nav-wrapper .menu-wrap .menu-sub--2 .dropdown-icon,
.mobile-nav-wrapper .menu-wrap .menu-sub .dropdown-icon {
  display: none;
}
.mobile-nav-wrapper .menu-wrap .megamenu-content,
.mobile-nav-wrapper .menu-wrap .menu-sub {
  padding-left: 1rem;
  display: none;
}
.mobile-nav-wrapper .menu-wrap .menu-sub--2 {
  padding-left: 0;
  display: block;
}
.mobile-nav-wrapper .menu-wrap .menu-sub--2 li + li {
  margin-top: 0;
}
.mobile-nav-wrapper .menu-wrap .megamenu-content li {
  padding: 0;
}
.mobile-nav-wrapper .menu-wrap .megamenu-content li a {
  padding: 1rem 0;
}
.mobile-nav-wrapper .menu-wrap .megamenu-content li + li {
  margin-top: 0;
}
.mobile-nav-wrapper .menu-wrap .dropdown-icon {
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  color: var(--body-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  transition: all 0.3s ease-in-out;
}
.mobile-nav-wrapper .menu-wrap .dropdown-icon.expanded {
  transform: scaleY(-1);
}
.mobile-nav-wrapper .section-header-actionwrap {
  display: block;
}
.mobile-nav-wrapper .section-header-telwrap {
  padding: 0;
}
.mobile-nav-wrapper .section-header-telnum {
  color: var(--light);
}
.mobile-nav-wrapper .section-header-telicon img {
  filter: brightness(50);
}
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  cursor: pointer;
}
.mobile-nav-logo {
  margin-bottom: 2rem;
}
.mobile-nav-logo img {
  width: 18rem;
}
.mobile-nav-container {
	margin-bottom: 3rem;
}
.mobile-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--black-rgb), 1);
  opacity: 0.6;
}
.mobile-nav-content {
	width: 34rem;
	background-color: rgba(var(--black-rgb), 1);
	z-index: 10;
	position: relative;
	height: 100%;
	overflow-y: auto;
	padding-block: 1.5rem;
	padding-inline: 1.6rem;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-100%);
	transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
	max-width: 100%;
}
@media (max-width: 991px) {
  .mobile-nav-wrapper .header-btn-group .btn {
    --btn-font: 1.3rem;
    --bt-padding-y: 0.8rem;
  }
  .mobile-nav-wrapper .header-btn-group {
    display: flex;
    justify-content: center;
  }
}

/* section-hero css */
.hs-overflow {
	overflow: hidden;
}
.section-hero {
	position: relative;
	padding-inline: 1.5rem;
	padding-top: 14rem;
	padding-bottom: 6rem;
	background-color: var(--secondary-bg);
	min-height: 100dvh;
	scale: 1.25;
}
.section-hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.32) 30%,
    rgba(0, 0, 0, 1) 100%
  );
}
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
.video-size {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.25; */
}
.hero-content {
  position: relative;
  z-index: 2;
  gap: 1.5rem;
}
.hero-content-group {
  width: 48%;
}
.hero-tagline {
  display: inline-flex;
  font-size: 2.8rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-content-title {
  font-size: 4.8rem;
  color: var(--light);
  margin-bottom: 1rem;
}

.mark-color {
  color: var(--primary-color);
}
.hero-btn-group {
  gap: 1rem;
}
.hero-scroll-down-wrap {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.3rem;
  cursor: pointer;
  text-decoration: none;
  color: rgba(var(--light-rgb), 0.5);
}
.hero-scroll-text {
  font-size: 1.4rem;
  letter-spacing: 0.7rem;
  text-transform: uppercase;
  color: rgba(var(--light-rgb), 0.5);
}
.hero-scroll-down-icon {
  color: rgba(var(--light-rgb), 0.5);
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(0.5rem);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  .hero-content-text br {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-hero {
    padding-top: 13rem;
    min-height: 86dvh;
  }
  .hero-content-group {
    width: 100%;
  }
  .hero-tagline {
    font-size: 1.8rem;
    padding: 1rem 1.5rem;
  }
  .hero-btn-group {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.sec-title-wrap {
	gap: 1.2rem;
}
.sec-tagline {
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #f15927;
}
.sec-title {
  /* font-size: 3.2rem; */
  font-size: 3.6rem;
}
@media (max-width: 1050px) {
  .sec-title {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .sec-title {
    font-size: 2.8rem;
  }
}

/* section-about css */
.section-about {
  padding-inline: 1.5rem;
  padding-block: 8rem;
}
.section-about-content {
  max-width: 84rem;
  margin-inline: auto;
}
.about-content-title {
  font-size: 2.4rem;
}
@media (max-width: 991px) {
  .section-about {
    padding-block: 4rem;
  }
  .about-content-title {
    margin-bottom: 1.6rem;
  }
}

/* section-bus-partner css */
.section-bus-partner {
	padding-inline: 1.5rem;
	padding-block: 10rem;
}
.bus-partner-content {
	border-radius: 2rem;
	padding-block: 5rem;
	padding-inline: 2.5rem;
	position: relative;
}
.bus-partner-content-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(34, 34, 34, 0.48);
	scale: .75;
	border-radius: 2rem;
}
.bus-partner-text {
  margin-bottom: 2.7rem;
}
.bus-partne-wrap {
  margin: 0 -2.7rem;
  gap: 2rem 0;
}
.bus-partner-logo {
  padding: 0 2.7rem;
}
@media (max-width: 1050px) {
	.bus-partner-content-bg {
		border-radius: 0.8rem;
	}
}
@media (max-width: 991px) {
  .bus-partner-text br { display: none; }
  .bus-partne-wrap {
    margin: 0 -1.8rem;
    gap: 1.5rem 0;
  }
  .bus-partner-logo {
    padding: 0 1.8rem;
  }
  .bus-partner-content-bg {
		border-radius: 0.6rem;
	}
	.bus-partner-content {
		padding: 45px 15px 40px;
		border-radius: 2px;
	}
	.section-bus-partner {
		padding-top: 64px;
		padding-bottom: 60px;
	}
}


/* section-safety css */
.section-safety {
  padding-inline: 1.5rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.section-safety-area {
  --gap-x: 14.8rem;
  --tab-width: 37.8rem;
  margin-top: 5.8rem;
  position: relative;
  gap: var(--gap-x);
}

.section-safety-tab {
  width: var(--tab-width);
  min-width: var(--tab-width);
}
.safety-tab-list li {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: start;
  border: 0.1rem solid #1A1A1A;
  border-radius: 1.2rem;
  padding: 2.4rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.safety-tab-list li:hover,
.safety-tab-list li.isOpen {
  background-color: #1A1A1A;
}
.safety-tab-list li + li {
  margin-top: 1.5rem;
}
.safety-slider-wrap {
  position: relative;
  width: calc(calc(100% - (var(--gap-x) + var(--tab-width))) / 1);
}
.section-safety-wrap {
  position: absolute;
  top: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s ease-in-out;
}
.is-active.section-safety-wrap {
  position: static;
  opacity: 1;
  top: 0;
  visibility: visible;
  transform: scale(1);
}
.section-safety-wrap::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.safety-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: absolute;
  width: 100%;
  max-width: calc(calc(100% - 5.8rem));
  left: 0;
  right: 0;
  bottom: 2.8rem;
  z-index: 2;
  margin: 0 auto;
}
.safety-content {
  will-change: transform, opacity;
}
.safety-slider-video { width: 100%; }
.safety-content-title {
  font-size: 2.8rem;
  margin-bottom: 5rem;
}
.safety-content-text + .safety-content-text {
  margin-top: 1.85rem;
}
.safety-content .btn {
  white-space: nowrap;
  min-width: 14.5rem;
}

.safety-slider-img {
  position: relative;
  width: 100%;
}
.safety-slider-img img, .safety-slider-video video {
  width: 100%;
  height: 45.6rem !important;
  object-fit: cover;
  border-radius: 2.5rem !important;
}
.fvgt .sec-title-wrap .sec-title {
	font-size: 1.6rem;
	font-weight: 400;
	width: 100rem;
	max-width: 100%;
}
.fvgt .sec-title-wrap .sec-tagline {
	font-size: 3.6rem;
	font-weight: 700;
	color: #fff;
	text-transform: none;
	margin-bottom: 0;
}
.fvgt .safety-content {
	display: none;
}
.fvgt .section-safety-wrap::after {
	display: none;
}

@media (max-width: 1200px) {
  .section-safety-area {
    margin-top: 5.5rem;
  }
  .section-safety-wrap {
    --gap-x: 4rem;
    width: 100%;
  }
}
@media (max-width: 1050px) {
  .section-safety .sec-tagline {
    display: none;
  }
  .section-safety {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section-safety-area {
    --gap-x: 3rem;
    --tab-width: 100%;
    margin-top: 31px;
  }
  .safety-content {
    gap: 2rem;
    max-width: calc(calc(100% - 4rem));
    bottom: 1.6rem;
  }
  .safety-slider-wrap {
    position: relative;
    width: 100%;
  }
  .section-safety-wrap {
    width: 100%;
  }
  .safety-content-title {
    margin-bottom: 2rem;
  }
  .safety-content-text + .safety-content-text {
    margin-top: 1rem;
  }
  .safety-tab-list {
    column-count: 4;
    column-gap: 5px;
  }
	.safety-tab-list li + li {
		margin-top: .5rem;
	}
	.safety-tab-list li {
		font-size: 1.6rem;
		padding: 2rem;
		border-radius: 0.4rem;
	}
	
  .safety-slider-img img, .safety-slider-video video {
		border-radius: 1.2rem !important;
	}
}
@media (max-width: 767px) {
  .section-safety {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .safety-tab-list {
    column-count: 2;
    column-gap: 5px;
  }
  .safety-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .safety-slider-img img, .safety-slider-video video {
    height: 40.6rem !important;
    border-radius: 0.9rem !important;
  }
}

/* section-dvr-solutions css */
.section-dvr-solutions {
	padding-inline: 1.5rem;
	padding-block: 10rem;
}
.dvr-solutions-title-wrap {
  max-width: 100rem;
  margin: 0 auto;
}
.dvr-solutions-wrap {
  --gap: 1.6rem;
  gap: var(--gap);
  margin-top: 2.5rem;
}
.dvr-solutions-card {
  width: calc(calc(100% - (var(--gap) * 4)) / 5);
  text-decoration: none;
  color: initial;
	cursor: default;
}
.dvr-solutions-card:hover .dvr-card-arrow-icon {
	right: 0;
	opacity: 1;
	display: none;
}
.dvr-solutions-card:hover .dvr-card-img img {
  transform: scale(1.04);
}
.dvr-card-img {
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 1rem;
}
.dvr-card-img img {
  width: 100%;
  height: 100% !important;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}
.dvr-solutions-heading-wrap {
  position: relative;
  padding-right: 4.5rem;
}
.dvr-card-title {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--light);
}
.dvr-card-arrow-icon {
  position: absolute;
  width: fit-content;
  height: auto;
  top: 50%;
  right: 50%;
  color: var(--light);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1050px) {
  .section-dvr-solutions {
    padding-bottom: 6rem;
  }
  .dvr-solutions-card {
    width: calc(calc(100% - (var(--gap) * 2)) / 3);
  }
}
@media (max-width: 991px) {
  .dvr-card-img {
    margin-bottom: 1.2rem;
  }
  .dvr-solutions-heading-wrap {
    padding-right: 4rem;
  }
  .dvr-card-title {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .section-dvr-solutions {
    padding-bottom: 4rem;
  }
  .dvr-solutions-card {
    width: calc(calc(100% - (var(--gap) * 1)) / 2);
  }
}
@media (max-width: 520px) {
  .dvr-solutions-card {
    width: 100%;
  }
}



/* section-industries css */
.section-industries {
	padding-inline: 1.5rem;
	padding-top: 10rem;
	padding-bottom: 10rem;
	position: relative;
	background-color: var(--secondary-bg);
	overflow: hidden;
}
.section-industries .video-size {
  opacity: 0.15;
}
.section-industries-area {
  position: relative;
  z-index: 1;
  max-width: 128rem;
}
.section-industries-wrap {
  position: relative;
  z-index: 1;
  margin-top: 13.7rem;
}
.industries-track-wrap {
  gap: 1rem;
}
.industries-track-img {
  --bg-blur-size: 46.8rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.industries-track-img::after {
  content: "";
  position: absolute;
  width: var(--bg-blur-size);
  height: var(--bg-blur-size);
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  background-image: url("../images/resources/blur-bg1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transition: all 0.3s ease-in-out;
}
.industries-track-img img {
  width: 100%;
  height: 100% !important;
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.industries-track-img.active,
.industries-track-img:hover {
  --bg-blur-size: 47rem;
}
.industries-track-img.active img,
.industries-track-img:hover img {
  z-index: 1;
  filter: grayscale(0);
  transform: scale(1.25);
}
.industries-track-img.active::after,
.industries-track-img:hover::after {
  opacity: 1;
  visibility: visible;
}

.industries-crumbs {
  --crumbs-size: 5rem;
  text-align: center;
  overflow: hidden;
  margin-top: 7.5rem;
  width: 100%;
  max-width: 116.8rem;
}
.industries-crumbs-list {
  list-style: none;
  display: flex;
  justify-content: center;
  background-color: #202328;
}
.industries-crumbs-list li {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--light);
  display: flex;
  width: fit-content;
  cursor: pointer;
}
.industries-crumbs-list li span {
  display: flex;
  align-items: center;
  background-color: #202328;
  text-align: center;
  padding: 3.8rem 7rem;
  position: relative;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  height: 100%;
  margin-left: 0.5rem;
}
.industries-crumbs-list li span:after {
  content: "";
  height: 100%;
  border-top: var(--crumbs-size) solid transparent;
  border-bottom: var(--crumbs-size) solid transparent;
  border-left: var(--crumbs-size) solid #202328;
  position: absolute;
  right: -5rem;
  top: 0.1rem;
  z-index: 1;
}
.industries-crumbs-list li span:before {
  content: "";
  height: 100%;
  border-top: var(--crumbs-size) solid transparent;
  border-bottom: var(--crumbs-size) solid transparent;
  border-left: var(--crumbs-size) solid #000;
  position: absolute;
  left: 0;
  top: 0.1rem;
}

.industries-crumbs-list li:first-child span {
  margin-left: 0;
}

.industries-crumbs-list li:first-child span:before {
  display: none;
}

.industries-crumbs-list li:last-child span:after {
  display: none;
}

.industries-crumbs-list li.active span,
.industries-crumbs-list li span:hover {
  background: var(--primary-color);
  color: #fff;
}

.industries-crumbs-list li.active span::after,
.industries-crumbs-list li span:hover:after {
  border-left-color: var(--primary-color);
  color: #fff;
}

@media (max-width: 1280px) {
  .industries-crumbs-list li span {
    padding: 2rem 4rem;
  }
}
@media (max-width: 1100px) {
  .industries-crumbs-list li span {
    margin: 0;
  }
  .industries-crumbs-list li span:after,
  .industries-crumbs-list li span:before {
    display: none;
  }
  .industries-crumbs-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .industries-track-img,
  .industries-track-img.active,
  .industries-track-img:hover {
    --bg-blur-size: 30rem;
  }
  .section-industries {
    padding-bottom: 6rem;
  }
  .section-industries .video-size {
    opacity: 0;
  }
  .section-industries-wrap {
    margin-top: 5rem;
  }
  .industries-track-img {
    width: 30%;
  }
  .industries-track-wrap {
    flex-wrap: wrap;
  }
  .industries-crumbs {
    margin-top: 4rem;
  }
}
@media (max-width: 480px) {
  .industries-track-img,
  .industries-track-img.active,
  .industries-track-img:hover {
    --bg-blur-size: 20rem;
  }
}

/* section-customer-proof css */
.section-customer-proof {
  background-color: #050601;
  padding-inline: 1.5rem;
  padding-bottom: 10rem;
}
.customer-proof-wrapper {
  position: relative;
  margin-top: 4.8rem;
  padding-bottom: 3rem;
}
.customer-proof-slider {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.customer-slider-item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 3.7rem 10rem;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.customer-slider-content-wrap {
  --left-width: 33.8rem;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--black-rgb), 0.65);
  border-radius: 2rem;
  padding: 3.8rem 3.2rem;

  display: flex;
  flex-wrap: wrap;
}
.customer-identity-images {
  width: var(--left-width);
  position: relative;
  padding-right: 1rem;
}
.customer-identity-images::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: calc(100% - 0.7rem);
  bottom: 0;
  right: 0;
  background-color: var(--black);
  z-index: 0;
  border-radius: 0 0 1.5rem 0;
}
.customer-countery-flag {
  width: fit-content;
  overflow: hidden;
  border-radius: 0.2rem;
  margin-bottom: 1.4rem;
}
.customer-countery-flag img {
  width: fit-content;
  height: 100%;
  object-fit: cover;
}
.customer-bus-details-box {
  margin-bottom: 3.2rem;
}
.customer-bus-heading-name {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.4rem;
}
.customer-bus-subheading {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 1.1rem;
}
.customer-bus-details-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--light);
  line-height: 1.1;
}

.customer-bus-img {
  overflow: hidden;
  border-radius: 1.5rem;
  margin-right: -1rem;
}
.customer-bus-img img {
  width: 100%;
  border-radius: 1.5rem;
}

.customer-details {
  width: calc(100% - (var(--left-width)) / 1 );
  padding-left: 3.2rem;
}

.customer-details-inner {
  margin-bottom: 3rem;
}
.customer-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.4rem;
}
.customer-subtitle {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 1rem;
}
.customer-title-fmlybns {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
}
.customer-title-fmlybns-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--light);
}


.divivder-line {
  border-top: 0.1rem solid rgba(var(--light-rgb), 0.4);
  position: relative;
}
.bus-details-box {
  --gap-x: 3.5rem;
  --gap-y: 2rem;
  margin-top: 3rem;
  gap: var(--gap-y) var(--gap-x);

}
.bus-details-bx-inner {
  width: calc(calc(100% - (var(--gap-x))) / 2);
}
.bus-driver-heading-bx {
  --num-size: 5rem;
  --gap: 1.8rem;
  gap: var(--gap);
  margin-bottom: 1rem;
}
.bus-driver-num {
  width: var(--num-size);
  min-width: var(--num-size);
  height: var(--num-size);
  border-radius: 1rem;
  background: rgba(32, 35, 40, 0.62);
  color: var(--light);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bus-sev-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light);
}
.bus-sev-sub-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--light);
}
.bus-sev-text {
  font-size: 1.2rem;
  color: var(--light);
}
.bus-details-copyright {
  gap: 1rem;
  margin-top: 3rem;
}
.bus-details-copyright-text1,
.bus-details-copyright-text2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--light);
}
.bus-details-copyright-text1 {
  text-transform: uppercase;
}


.divider-served {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  width: fit-content;
  height: auto;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--light);
  background-color: #108D47;
  padding: 0.5rem 1rem;
}
.bus-spl {
  --gap: 6.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin-top: 2.4rem;
  margin-bottom: 3rem;
}
.bus-spl-col {
  width: calc(calc(100% - (var(--gap))) / 2);
}
.bus-spl-number {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 5.3rem;
  color: var(--light);
  font-weight: 700;
}
.bus-details-list {
  list-style-position: inside;
}
.bus-details-list li {
  font-size: 1.4rem;
  font-weight: 500;
}
.bus-details-list li strong {
  font-size: 2.4rem;
  font-weight: 700;
}
.customer-flag-group {
  margin-bottom: 1.5rem;
  gap: 0.6rem;
}
.flag-item {
  overflow: hidden;
  border-radius: 0.7rem;
}
.flag-item img {
  border-radius: 0.7rem;
}
.customer-pagination {
  bottom: 0!important;
  z-index: 3;
}
.customer-pagination .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--light);
  opacity: 1;
}
.customer-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

@media (max-width: 1050px) {
  .section-customer-proof {
    padding-bottom: 6rem;
  }
  .customer-proof-wrapper {
    margin-top: 3.8rem;
  }
  .customer-slider-item {
    padding: 1.7rem 2rem;
	border-radius: 1rem;
  }
  .customer-slider-content-wrap {
    padding: 2.8rem 2.2rem;
	border-radius: 08rem;
  }

  .customer-bus-details-box {
    margin-bottom: 2.2rem;
  }
  .customer-bus-heading-name {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }

  .customer-details-inner {
    margin-bottom: 2rem;
  }
  .customer-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .customer-subtitle {
    font-size: 2rem;
  }

  .bus-details-box {
    --gap-x: 1.5rem;
    --gap-y: 1rem;
    margin-top: 2rem;
  }
  .bus-driver-heading-bx {
    --num-size: 4rem;
    --gap: 1rem;
  }
  .bus-sev-title {
    font-size: 1.8rem;
  }
  .bus-details-copyright {
    margin-top: 2rem;
  }
}
@media (max-width: 991px) {
  .customer-slider-content-wrap {
    --left-width: 100%;
    gap: 2.8rem 0;
  }
  .customer-bus-text,
  .customer-price {
    font-size: 3.5rem;  
  }
  .customer-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .bus-spl {
    --gap: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .bus-spl-col {
    width: 100%;
  }
  .bus-spl-number {
    gap: 1.2rem;
    font-size: 3.3rem;
  }
  .bus-details-list li strong {
    font-size: 2rem;
  }
  .customer-countery-flag {
    width: 15.5rem;
  }

  .customer-identity-images {
    width: 100%;
    padding-right: 1rem;
  }
  .customer-identity-images::after { content: none; }
  .customer-details {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .section-customer-proof {
    padding-bottom: 4rem;
  }
  .customer-slider-item {
    padding: 1.2rem 1rem;
	 border-radius: 0.8rem;
  }
  .customer-slider-content-wrap {
    --left-width: 35rem;
	  padding: 1.8rem 1.2rem;
	  border-radius: 0.6rem;
  }
  .customer-details {
    width: 100%;
    padding-left: 0;
  }

  .bus-details-bx-inner {
    width: 100%;
  }
  .bus-details-copyright {
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: self-start;
  }
}

/* section-reseller css */
.section-reseller {
	padding-inline: 1.5rem;
	padding-bottom: 10rem;
	background-color: var(--black);
	padding-top: 10rem;
}
.reseller-wrap {
  gap: 2rem;
}
.reseller-img {
  width: 43.8%;
  display: flex;
  justify-content: center;
  background-image: url('../images/resources/camera-blur-bg2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 105%;
}
.reseller-img img {
  width: 100%;
  max-width: 56.2rem;
  margin: 0 auto;
  scale: .5;
}
.reseller-content-box {
	width: 61rem;
	background-color: rgba(23, 23, 23, 0.65);
	border-radius: 2rem;
	padding: 5.6rem 4rem;
}
.reseller-content-title {
  margin-bottom: 1.4rem;
}
.reseller-content-text {
  margin-bottom: 3rem;
}
@media (max-width: 1050px) {
  .section-reseller {
    padding-bottom: 6rem;
  }
}
@media (max-width: 991px) {
  .section-reseller {
    padding-bottom: 4rem;
  }
  .reseller-content-box {
    border-radius: 1rem;
    padding: 3.6rem 3rem;
  }
}
@media (max-width: 768px) {
  .reseller-content-box {
    width: 100%;
    border-radius: 0.8rem;
    padding: 3.5rem 2.8rem;
  }
  .reseller-img {
    width: 100%;
  }
}



/* FleetView platform page */

/* section-single-hero css */
.section-single-hero {
  background-color: var(--black);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  padding-top: 28.5rem;
  padding-bottom: 28.5rem;
  padding-inline: 1.5rem;
}
.section-single-hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(var(--black-rgb), 0.58);
  background: #000000;
background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 68%);
}
.single-hero-container {
  width: 100%;
  max-width: 123rem;
}
.hero-single-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-single-tagline {
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary-color);
  letter-spacing: 0.11rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.hero-single-content-title {
  font-size: 6.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.hero-single-content-text {
  width: 100%;
}
.hero-single-btn-group {
	position: relative;
	z-index: 2;
  margin-top: 10rem;
}
.hero-scroll-down-wrap {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.3rem;
  cursor: pointer;
  text-decoration: none;
  color: rgba(var(--light-rgb), 0.5);
}
.hero-scroll-text {
  font-size: 1.4rem;
  letter-spacing: 0.7rem;
  text-transform: uppercase;
  color: rgba(var(--light-rgb), 0.5);
}
.hero-scroll-down-icon {
  color: rgba(var(--light-rgb), 0.5);
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(0.5rem);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media only screen and (max-width: 1050px) {
  .section-single-hero {
    padding-top: 11.5rem;
    padding-bottom: 14.5rem;
  }
  .hero-single-content-title {
    font-size: 4.4rem;
    margin-bottom: 2rem;
  }
  .hero-single-tagline {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .hero-single-btn-group {
    width: 100%;
    margin-top: 5rem;
  }
  .hero-scroll-down-wrap {
    bottom: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .hero-single-content-title {
    font-size: 3.2rem;
  }
  .hero-single-btn-group {
    width: 100%;
    margin-top: 3rem;
  }
  .hero-scroll-down-wrap {
    bottom: 2rem;
  }
}

/* contact-single-hero css */
.contact-single-hero.section-single-hero::after {
	background: radial-gradient(90.14% 90.14% at 75% 50%, rgba(240, 90, 37, 0.12) 0%, rgba(240, 90, 37, 0.00) 60%);
}
.contact-single-hero .video-wrapper {
    left: initial;
    right: 0;
    max-width: 64%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.40) 0.18%, rgba(0, 0, 0, 0.00) 0.18%), linear-gradient(90deg, rgba(255, 255, 255, 0.40) 0.05%, rgba(0, 0, 0, 0.00) 0.05%);
}
@media (max-width: 991px) {
    .contact-single-hero .video-wrapper {
        max-width: 100%;
    }
}

/* section-telematics-built css */
.section-telematics-built {
  padding-inline: 1.5rem;
  padding-bottom: 10rem;
}
.telematics-built-content {
  width: 100%;
  max-width: 89.5rem;
  margin: 0 auto;
}
.telematics-built-content-group {
  width: 100%;
}
.telematics-buil-btn-group {
  margin-top: 3.8rem;
}
@media only screen and (max-width: 1050px) {
  .section-telematics-built {
    padding-block: 6rem;
  }
}
@media only screen and (max-width: 768px) {
  .section-telematics-built {
    padding-block: 4rem;
  }
}

/* section-operational css */
.section-operational {
  padding-inline: 1.5rem;
  padding-block: 10rem;
}
.section-operational .sec-title-wrap {
  width: 100%;
  max-width: 100rem;
  margin-inline: auto;
}
.operational-wrap {
  --gap: 2.5rem;
  gap: var(--gap);
  margin-top: 6rem;
}
.operational-card {
  width: calc(calc(100% - (var(--gap) * 3)) / 4);
}
.operational-card-img {
  overflow: hidden;
  border-radius: 1.2rem;
  margin-bottom: 2.5rem;
}
.operational-card-img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}
.operational-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  text-align: center;
}
.operational-card:hover .operational-card-img img {
  transform: scale(1.04);
}
@media only screen and (max-width: 1050px) {
  .section-operational {
    padding-block: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-operational {
    padding-block: 5rem;
  }
  .operational-wrap {
    margin-top: 4rem;
  }
  .operational-card {
    width: calc(calc(100% - (var(--gap) * 1)) / 2);
  }
  .operational-card-title {
    font-size: 1.6rem;
  }
}

/* section-chart css */
.section-chart {
  padding-inline: 1.5rem;
  padding-bottom: 10rem;
}
.chart-container {
  width: 100%;
  max-width: 126.8rem;
  margin: 0 auto;
}
.chart-inner {
  width: 100%;
  margin-bottom: 1rem;
}
.chart-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1050px) {
  .section-chart {
    padding-bottom: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-chart {
    padding-bottom: 5rem;
  }
}

/* section-incident css */
.section-incident {
	padding-inline: 1.5rem;
	padding-bottom: 10rem;
	padding-top: 10rem;
}
.section-incident .sec-title-wrap {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
.incident-wrap {
	position: relative;
	border: 0.4rem solid var(--primary-color);
	border-radius: 2.5rem;
	min-height: 74rem;
	overflow: hidden;
	margin-top: 6.8rem;
	/*scale: .5;*/
}
@media only screen and (max-width: 1050px) {
  .section-incident {
    padding-bottom: 6rem;
  }
  .incident-wrap {
    min-height: 60rem;
    margin-top: 4rem;
	border-radius: 1.1rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-incident {
    padding-bottom: 5rem;
  }
  .incident-wrap {
    min-height: 40rem;
	border-radius: 0.89rem;
  }
}

/* fleetview-for-geotab page */
/* section-partner css */
.section-partner {
  padding-inline: 1.5rem;
  padding-block: 10rem;
}
.sec-partner-title-wrap {
  width: 100%;
  max-width: 100rem;
  padding-bottom: 6rem;
  margin: 0 auto;
}

.partner-row {
  --gap-x: 18rem;
  gap: var(--gap-x);
}
.partner-content-col {
  width: calc(calc(48% - (var(--gap-x) / 2)) / 1);
}
.partner-content-title {
  margin-bottom: 2rem;
}
.partner-content-list {
  margin-top: 1.6rem;
}

.partner-img-col {
  width: calc(calc(52% - (var(--gap-x) / 2)) / 1);
}
.partner-img-col img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

@media (max-width: 1050px) {
  .section-partner {
    padding-block: 6rem;
  }
  .sec-partner-title-wrap {
    padding-bottom: 4rem;
  }
  .partner-row {
    --gap-x: 8rem;
  }
}

@media (max-width: 991px) {
  .section-partner {
    padding-block: 4rem;
  }
  .partner-row {
    --gap-x: 4rem;
  }
}
@media (max-width: 768px) {
  .partner-row {
    --gap-x: 3rem;
  }
  .partner-content-col {
    width: 100%;
  }
  .partner-img-col {
    width: 100%;
  }
}
.partner2.section-partner,
.partner3.section-partner {
  padding-top: 0;
}
@media (max-width: 1050px) {
  .partner2.section-partner,
  .partner3.section-partner {
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .partner2.section-partner,
  .partner3.section-partner {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .partner2.section-partner,
  .partner3.section-partner {
    padding-top: 0;
  }
}

/* Video Telematics page */
/* section-vehicle-operating css */
.section-vehicle-operating {
  padding-inline: 1.5rem;
  padding-top: 10rem;
}
.vehicle-operating-container {
  width: 100%;
  max-width: 123rem;
}
@media only screen and (max-width: 1050px) {
  .section-vehicle-operating {
    padding-top: 6rem;
  }
}
@media only screen and (max-width: 768px) {
  .section-vehicle-operating {
    padding-top: 5rem;
  }
}

/* section-industries2 css */
.section-industries2 {
  padding-top: 0;
}
.industries-wrap2 {
  margin-top: 0;
  padding-top: 10rem;
}
@media only screen and (max-width: 1050px) {
  .industries-wrap2 {
    padding-top: 8rem;
  }
}

/* section-camera-features css */
.section-camera-features {
  padding-inline: 1.5rem;
  padding-bottom: 10rem;
}
.camera-features-wrap {
  --gap: 2.6rem;
  gap: var(--gap);
}
.camera-features-card {
  width: calc(calc(100% - (var(--gap) * 3)) / 4);
  background-color: rgba(32, 32, 32, 0.47);
  border-radius: 1.6rem;
  transition: all 0.3s ease-in-out;
  padding: 6rem 3rem;
  transform: translateY(0);
}
.camera-features-card:hover {
  box-shadow: 0px 7px 18px 0px rgba(var(--primary-color-rgb), 0.1);
  transform: translateY(-0.15rem);
}
.camera-features-card:hover .camera-features-img {
  transform: translateY(-0.1rem);
}
.camera-features-img {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.camera-features-img img {
  width: auto !important;
  height: auto !important;
  max-height: 8.5rem;
}
.camera-features-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  text-align: center;
  margin-bottom: 1rem;
}
.camera-features-text {
  font-size: 1.8rem;
  text-align: center;
  font-weight: normal;
}
@media only screen and (max-width: 1050px) {
  .section-camera-features {
    padding-bottom: 6rem;
  }
  .camera-features-wrap {
    --gap: 1.8rem;
  }
  .camera-features-card {
    width: calc(calc(100% - (var(--gap) * 2)) / 3);
    border-radius: 1.2rem;
    padding: 5rem 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .section-camera-features {
    padding-bottom: 5rem;
  }
  .camera-features-card {
    width: calc(calc(100% - (var(--gap) * 1)) / 2);
    border-radius: 1.2rem;
    padding: 5rem 2rem;
  }
  .camera-features-title {
    font-size: 1.6rem;
  }
  .camera-features-text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 480px) {
  .camera-features-card {
    width: 100%;
  }
}

/* section-solution-comarison css */
.section-solution-comarison {
  padding-inline: 1.5rem;
  padding-bottom: 10rem;
}
.solution-comarison-table-wrap {
  margin-top: 6rem;
}
.solution-comarison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.4rem;
  table-layout: fixed;
}
.solution-comarison-table th,
.solution-comarison-table td {
  background-color: #2F2F2F;
  color: var(--light);
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 1.6rem;
  border-radius: 1rem;
}
.solution-comarison-table thead th {
  background-color: #2F2F2F;
  font-weight: 600;
  border: 1px solid #555555;
}
.solution-comarison-table td {
  background-color: rgba(47, 47, 47, 0.53);
  border: 1px solid transparent;
  transition: all 0.5s ease-in-out;
}
.solution-comarison-table td:hover {
  background-color: rgba(47, 47, 47, 0.8);
  border-color: rgba(47, 47, 47, 0.8);
}
@media only screen and (max-width: 1050px) {
  .section-solution-comarison {
    padding-bottom: 6rem;
  }
  .solution-comarison-table-wrap {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .section-solution-comarison {
    padding-bottom: 5rem;
  }
  .solution-comarison-table-wrap {
    margin-top: 3.2rem;
    overflow-y: hidden;
    overflow-x: auto;
  }
  .solution-comarison-table {
    width: 74rem;
  }
  .solution-comarison-table th,
  .solution-comarison-table td {
    padding: 2rem 1.5rem;
  }
}

/* section-telematics-cases css */
.section-telematics-cases {
  padding-inline: 1.5rem;
  padding-bottom: 10rem;
  position: relative;
}
.total-offsetHeight {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.section-telematics-cases .container {
  position: relative;
  z-index: 2;
}
.telematics-cases-wrap {
  gap: 1rem;
  margin-top: 6rem;
  position: relative;
}
.telematics-cases-wrap::after {
  content: '';
  position: absolute;
  width: 0.1rem;
  height: calc(100% - 17.5rem);
  background-color: #545454;
  top: 9.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.telematics-card {
  --tlt-icon-size: 6.4rem;
  --tlt-card-border-color: #545454;
  --tlt-card-border-radius: 1rem;
  --tlt-card-mx-width: 40rem;
  --tlt-padding-x: 2.3rem;
  --tlt-padding-y: 2.7rem;
  width: calc(calc(100% - 1rem) / 2);
  position: relative;
}
.telematics-card:nth-child(odd) {
  margin-top: 18rem;
}
.telematics-card:nth-child(even) {
  margin-bottom: 18rem;
}
.telematics-card:nth-child(odd)::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.55rem;
  width: 40%;
  height: 0.1rem;
  background-color: #545454;
  z-index: 1;
}
.telematics-card:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.55rem;
  width: 40%;
  height: 0.1rem;
  background-color: #545454;
  z-index: 1;
}
.telematics-card:nth-child(odd) .telematics-card-inner {
  margin-right: auto;
}
.telematics-card:nth-child(even) .telematics-card-inner {
  margin-left: auto;
}
.telematics-card-inner {
  width: 100%;
  max-width: var(--tlt-card-mx-width);
  background-color: var(--black);;
  border: 0.1rem solid var(--tlt-card-border-color);
  border-radius: var(--tlt-card-border-radius);
  padding: var(--tlt-padding-y) var(--tlt-padding-x);
  position: relative;
  z-index: 2;
}
.telematics-card-icon-wrap {
  align-items: center;
  margin-bottom: 1rem;
}
.telematics-icon-box {
  width: var(--tlt-icon-size);
  min-width: var(--tlt-icon-size);
  height: var(--tlt-icon-size);
  min-height: var(--tlt-icon-size);
  border-radius: 50%;
  background-color: #202328;
}
.telematics-icon-box .icon {}
.telematics-card-title {
  width: calc(calc(100% - var(--tlt-icon-size)) / 1);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--light);
  padding-left: 1.6rem;
}
.telematics-card-text {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1050px) {
  .section-telematics-cases {
    padding-bottom: 6rem;
  }
  .telematics-cases-wrap {
    gap: 1rem;
    margin-top: 4rem;
  }
  .telematics-card:nth-child(odd) {
    margin-top: 10rem;
  }
  .telematics-card:nth-child(even) {
    margin-bottom: 10rem;
  }
}
@media only screen and (max-width: 991px) {
  .telematics-cases-wrap {
    gap: 3rem;
  }
  .telematics-cases-wrap::after {
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: calc(100% - 5rem);
  }
  .telematics-card {
    --tlt-padding-x: 1.6rem;
    --tlt-padding-y: 2rem;
    width: calc(calc(100% - 3rem) / 2);
  }
  .telematics-card:nth-child(odd)::after {
    right: -1.55rem;
  }
  .telematics-card:nth-child(even)::before {
    left: -1.55rem;
  }
}
@media only screen and (max-width: 768px) {
  .telematics-cases-wrap::after {
    left: 0;
    transform: none;
  }
  .telematics-card {
    --tlt-card-mx-width: 100%;
    --tlt-padding-x: 1.6rem;
    --tlt-padding-y: 2rem;
    width: calc(calc(100% - 3rem) / 1);
  }
  .telematics-card:nth-child(odd) .telematics-card-inner {
    margin-right: 0;
  }
  .telematics-card:nth-child(even) .telematics-card-inner {
    margin-left: 0;
  }
  .telematics-card:nth-child(odd) {
    margin-left: 2rem;
    margin-top: 0;
  }
  .telematics-card:nth-child(even) {
    margin-left: 4rem;
    margin-bottom: 0;
  }
  .telematics-card:nth-child(odd)::after {
    left: -2rem;
  }
  .telematics-card:nth-child(even)::before {
    left: -4rem;
  }
}




/* footer-main css */
.footer-main {
  background-color: #080808;
}
.footer-top {
  padding-inline: 1.5rem;
  padding-top: 10rem;
  padding-bottom: 5rem;
}
.footer-top-wrap {
  --logo-widget-size: 33.2rem;
  --gap: 6rem;
  gap: var(--gap);
}
.footer-logo-widget {
  width: var(--logo-widget-size);
  min-width: var(--logo-widget-size);
}
.footer-logo {
  margin-bottom: 2.4rem;
}
.footer-logo img {
  width: 100%;
  max-width: 20rem;
  height: auto !important;
}
.footer-address-text {
	font-size: 1.8rem;
	font-weight: 400;
	margin-bottom: 2.4rem;
	color: var(--light);
	display: block;
	text-decoration: none;
}
.footer-tel-text {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--light);
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.footer-tel-text:hover {
  color: var(--primary-color);
}
.tel-icon {
  display: inline-flex;
  margin-right: 1rem;
}

.widget-wrapper {
  --gap-x: 5.2rem;
  width: calc(calc(100% - (var(--logo-widget-size) + var(--gap))) / 1);
  gap: var(--gap-x);
}
.footer-widget {
  width: calc(calc(100% - (var(--gap-x) * 4)) / 5);
}
.footer-heading {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 3rem;
}
.footer-link-list {
  --circle-size: 0.6rem;
}
.footer-link-list li {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--light);
  transition: all 0.5s ease-in-out;
  position: relative;
}
.footer-link-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.footer-link-list li + li {
  margin-top: 1.3rem;
}
.footer-link-list li a {
  text-decoration: none;
  color: inherit;
}
.footer-link-list li:hover::before {
  opacity: 1;
  visibility: visible;
  left: -0.1rem;
}
.footer-link-list li:hover {
  padding-left: calc(var(--circle-size) + 0.25rem);
}
.footer-link-list li:hover,
.footer-link-list li a:hover {
  transition: all 0.5s ease-in-out;
  color: var(--primary-color);
}

.footer-bottom {
  padding-inline: 1.5rem;
  padding-block: 3.2rem;
  border-top: 1px solid rgba(238, 238, 238, 0.25);
}
.footer-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(var(--light-rgb), 1);
}
.footer-text a {
  transition: all 0.3s ease-in-out;
}
.footer-text a:hover { color: var(--primary-color); }
.footer-btm-quick-link {
  gap: 1.6rem;
}
.footer-btm-quick-link li {
  font-size: 1.4rem;
  color: var(--light);
  font-weight: 400;
  line-height: 1;
  position: relative;
}
.footer-btm-quick-link li + li::after {
  position: absolute;
  content: '';
  width: 0.1rem;
  height: 80%;
  top: 50%;
  left: -0.8rem;
  transform: translateY(-50%);
  display: inline-flex;
  background-color: var(--light);
}
.footer-btm-quick-link li a {
  color: currentColor;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer-btm-quick-link li a:hover { color: var(--primary-color); }

@media (max-width: 1050px) {
  .footer-top {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
  .footer-top-wrap {
    --gap: 4rem;
  }
  .widget-wrapper {
    --gap-x: 2.6rem;
  }
  .footer-widget {
    width: calc(calc(100% - (var(--gap-x) * 2)) / 3);
  }
  .footer-logo {
    margin-bottom: 1.2rem;
  }
  .footer-address-text {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
  .footer-heading {
    margin-bottom: 1rem;
  }
  .footer-link-list li + li {
    margin-top: 0.5rem;
  } 
  .footer-tel-text {
    font-size: 2rem;
  }
  .footer-bottom {
    padding-block: 2.2rem;
  }
}
@media (max-width: 991px) {
  .footer-top {
    --logo-widget-size: 33rem;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .footer-top-wrap {
    --gap: 3rem;
  }
  .footer-widget {
    width: calc(calc(100% - (var(--gap-x) * 1)) / 2);
  }
}
@media (max-width: 768px) {
  .footer-top-wrap {
    --logo-widget-size: 100%;
  }
  .widget-wrapper {
    width: 100%;
    --gap-x: 2rem;
  }
  .footer-widget {
    width: calc(calc(100% - (var(--gap-x) * 2)) / 3);
  }
  .footer-text-wrap {
    flex-direction: column;
    gap: 0.3rem;
  }
}
@media (max-width: 520px) {
  .widget-wrapper {
    width: 100%;
    --gap-x: 2rem;
  }
  .footer-widget {
    width: 100%;
  }
  .footer-text-wrap {
    align-items: flex-start;
  }
}


/* driver-safety page */
/* faq-section css */
.faq-section {
  padding-inline: 1.5rem;
  padding-bottom: 10rem;
}
.faq-container {
  max-width: 88.6rem;
}
.faq-wrap {
  margin-top: 6.6rem;
}
.faq-item {
  --faq-icon-size: 3.2rem;
  border: 0.1rem solid rgba(var(--primary-color-rgb), 0.2);
  border-radius: 1.2rem;
  background-color: rgba(var(--light-rgb), 0.05);
  transition: all 0.4s ease-in-out;
}
.faq-item.active {
  background-color: #1C1A1A;
  box-shadow: 0px 1px 12px 0px #FFD7001A;
}
.faq-item + .faq-item {
  margin-top: 1rem;
}
.faq-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--light);
  padding: 2.85rem 2.4rem;
  padding-right: calc(2.6rem + var(--faq-icon-size));
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-tgl-icon {
  position: absolute;
  width: var(--faq-icon-size);
  height: var(--faq-icon-size);
  top: 50%;
  right: 2.4rem;
  z-index: 1;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.active .faq-tgl-icon {
  transform: translateY(-50%) rotate(45deg);
}
.faq-content {
  padding: 2.4rem 2.4rem;
  padding-right: 5.6rem;
  padding-top: 0.85rem;
}
@media (max-width: 1050px) {
  .faq-section {
    padding-bottom: 6rem;
  }
  .faq-wrap {
    margin-top: 4.6rem;
  }
  .faq-item {
    --faq-icon-size: 3rem;
  }
  .faq-title {
    font-size: 1.8rem;
    padding: 2.5rem 2rem;
    padding-right: calc(2.2rem + var(--faq-icon-size));
  }
  .faq-tgl-icon {
    right: 2.2rem;
  }
  .faq-content {
    padding: 2.2rem 2rem;
    padding-right: 5rem;
    padding-top: 0.85rem;
  }
}

/*Forms*/
.book-demo-form-area {
	padding-top: 10rem;
	padding-inline: 1.5rem;
	padding-bottom: 10rem;
}
.book-demo-form-row {
	display: flex;
	gap: 5.7rem;
}
.book-demo-form-r {
	width: 38rem;
	flex-shrink: 0;
	max-width: 100%;
}
.book-demo-form-l {
	width: 100%;
}
.tcan-gfrom .gform_heading {
	display: none;
}
.tcan-gfrom .gsection_title {
	font-size: 1.8rem;
	font-weight: 700;
}
.tcan-gfrom .gsection {
	border: none !important;
	padding: 0 !important;
	padding-bottom: 0 !important;
}
.tcan-gfrom .gform_wrapper.gravity-theme .gfield_label {
	font-size: 1.6rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.60);
	font-family: var(--font-family-body);
	margin-bottom: 0.8rem;
}
.tcan-gfrom .gform_wrapper.gravity-theme .ginput_complex label {
	font-size: 1.2rem;
	line-height: normal;
	color: rgba(255, 255, 255, 0.60);
}
.tcan-gfrom .gform_wrapper.gravity-theme input[type="text"], .tcan-gfrom .gform_wrapper.gravity-theme input[type="email"], .tcan-gfrom .gform_wrapper.gravity-theme input[type="tel"], .tcan-gfrom .gform_wrapper.gravity-theme select {
	background: rgba(255, 255, 255, 0.04);
	border: .1rem solid rgba(255, 255, 255, 0.10);
	border-radius: 1.6rem;
	height: 5.6rem;
	outline: none;
	padding: 1.4rem 1.9rem;
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.60);
}
.tcan-gfrom .gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 2.7rem;
}
.gform_wrapper.gravity-theme .gsection:not(:first-child) {
	margin-top: 2rem;
	border-top: .1rem solid rgba(255, 255, 255, 0.14) !important;
	padding-top: 3rem !important;
}
.tcan-gfrom .gchoice {
	padding: 0 1.9rem;
	background: rgba(255, 255, 255, 0.02);
	border: .1rem solid rgba(255, 255, 255, 0.08);
	border-radius: 1.6rem;
	display: flex;
	gap: 1rem;
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.55);
}
.tcan-gfrom .gform_wrapper.gravity-theme .gfield-choice-input + label {
	padding: 1.6rem 0;
	font-size: 1.6rem;
	width: 100%;
}
.tcan-gfrom .gchoice:not(:last-child) {
	margin-bottom: .5rem;
}
.tcan-gfrom .gform_wrapper.gravity-theme .gfield textarea {
	background: rgba(255, 255, 255, 0.04);
	border: .1rem solid rgba(255, 255, 255, 0.10);
	border-radius: 1.6rem;
	height: 13rem !important;
	outline: none;
	padding: 1.4rem 1.9rem;
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.60);
}
.tcan-gfrom .f-no-spam {
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.30);
	margin-bottom: 0;
	margin-top: 0;
}
.tcan-gfrom input[type="submit"] {
	padding: 1.6rem 3.3rem;
	border-radius: 4rem;
	background: #F05A25;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 1.6rem !important;
	color: #fff;
	font-weight: 700;
	transition: all .4s;
}
.tcan-gfrom .gform_validation_errors {
	display: none;
}
.tcan-gfrom .gfield_validation_message {
	padding: 0 !important;
	border: none !important;
	background: transparent !important;
	font-size: 1.2rem !important;
	margin-top: .4rem !important;
}



.book-demo-form-r-box {
	padding: 2.3rem;
	background: #0D0D0D;
	border-radius: 2rem;
	margin-bottom: 2.3rem;
}
.book-demo-form-r-box h3 {
	font-size: 1.8rem;
	line-height: normal;
	color: rgba(255, 255, 255, 0.30);
	font-weight: 600;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: .1rem solid rgba(255, 255, 255, 0.06);
}
.bdf-form-r-txt-l {
	display: flex;
	gap: 2.2rem;
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.55);
}
.bdf-form-r-txt-l span {
	font-size: 1.4rem;
	font-weight: 700;
	color: #F05A25;
}
.bdf-form-r-txt-l:not(:last-child), .book-demo-form-line:not(:last-child) {
	margin-bottom: 1.9rem;
}
.bdf-form-r-call h4 {
	font-size: 1.8rem;
	font-weight: 600;
}
.bdf-form-r-call p {
	margin-top: 1.4rem;
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.50);
}
.bdf-form-r-call a {
	font-size: 1.8rem;
	font-weight: 600;
	color: #F05A25;
	display: flex;
	align-items: center;
	gap: .6rem;
	margin-top: 1.4rem;
}
.book-demo-form-r-box-list, .book-demo-form-line {
	display: flex;
	gap: 1.5rem;
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.55);
	align-items: center;
}
.book-demo-form-r-box-list .icon, .book-demo-form-line .icon {
	flex-shrink: 0;
}
.book-demo-l-t span {
	font-size: 1.8rem;
	font-weight: 600;
	color: #fff;
}
.book-demo-form-r-box.info-c {
	background: rgba(240, 90, 37, 0.04);
	border: .1rem solid rgba(240, 90, 37, 0.15);
	color: rgba(255, 255, 255, 0.55);
}
.book-demo-form-r-box.info-c a {
	color: #F05A25;
}
.ryi-sec .sec-tagline {
	text-transform: capitalize;
	margin-bottom: 2rem;
	display: flex;
}
.ryi-sec .sec-text {
	margin-top: 1.6rem;
	margin-bottom: 4.6rem;
	color: rgba(255, 255, 255, 0.45);
}
.tcan-gfrom .gfield_checkbox button {
	border: none;
	outline: none;
	background: #f15927;
	font-size: 1.4rem;
	padding: .4rem 1.4rem;
	color: #fff;
	border-radius: .4rem;
}
.book-demo-form-r-box-list:not(:last-child) {
	margin-bottom: 1.2rem;
}
@media (max-width: 1050px) {
	.book-demo-form-area {
		padding-top: 2rem;
		padding-bottom: 6rem;
	}
    .book-demo-form-row {
    	flex-wrap: wrap;
		gap: 3.7rem;
    }
    .book-demo-form-row {
    	flex-wrap: wrap;
    }
		.tcan-gfrom .gform_wrapper.gravity-theme input[type="text"], .tcan-gfrom .gform_wrapper.gravity-theme input[type="email"], .tcan-gfrom .gform_wrapper.gravity-theme input[type="tel"], .tcan-gfrom .gform_wrapper.gravity-theme select, .tcan-gfrom .gchoice, .tcan-gfrom .gform_wrapper.gravity-theme .gfield textarea { border-radius: 0.6rem; }
}