/* ===========================
Index Of css

01. Veriables CSS
02. Normalize CSS
03. Responsive Normalized CSS
04. Header CSS
05. Footer CSS
06. Hero CSS
07. Call to Action CSS
08. Vehicle List CSS

========================== */
/*======================================
    Variables
========================================*/
/*======================================
    Normalize CSS
========================================*/
@font-face {
  font-family: "NissanBrand";
  src: url("../fonts/NissanBrand.ttf");
}
@font-face {
  font-family: "NissanBrand";
  src: url("../fonts/NissanBrand-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "NissanBrand";
  src: url("../fonts/NissanBrand-Light.ttf");
  font-weight: lighter;
}
@font-face {
  font-family: "NissanBrand";
  src: url("../fonts/NissanBrand-Italic.ttf");
  font-style: italic;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "NissanBrand", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #2B2E34;
  overflow-x: hidden;
  font-size: 14px;
}

p {
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 300px;
}

.footer {
  position: absolute;
  bottom: 0;
  min-height: 300px;
}

.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
}

span,
a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0px;
  color: #00040A;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 43px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 450px;
  }
}

/* One Click Scroll Top Button*/
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #C3002F;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #ffffff !important;
  border-radius: 10%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}
.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}

/* Whatsapp Integration Button*/
.whatsapp-link {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #C3002F;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #ffffff !important;
  border-radius: 50%;
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}
.whatsapp-link:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}

/* Pagination CSS */
.pagination li a {
  background: #ffffff;
  color: #00040A;
  padding: 0 22px;
  font-weight: 500;
  font-size: 20px;
  border-radius: 0;
  line-height: 40px;
}

.page-item.active .page-link {
  background: #C3002F;
  border-color: transparent;
}

.pagination li.active a,
.pagination li:hover a {
  background: #C3002F;
  color: #ffffff;
  border-color: transparent;
}

.pagination .pagination-list li a i {
  font-size: 20px;
}

.btn {
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 1px;
}

.btn:hover {
  background-color: #00040A;
  color: #ffffff;
  box-shadow: none;
  transform: none;
}

.btn-primary, .bg-theme {
  background-color: #C3002F;
  color: #ffffff;
}

.btn-light, .bg-light {
  background-color: #ffffff;
  color: #00040A;
}

.btn-gray-darkest, .bg-gray-darkest {
  background-color: #2B2E34;
  color: #ffffff;
}

.btn-gray-darker, .bg-gray-darker {
  background-color: #4C4C4C;
  color: #ffffff;
}

.btn-gray-dark, .bg-gray-dark {
  background-color: #656565;
  color: #ffffff;
}

.btn-gray, .bg-gray {
  background-color: #999999;
  color: #00040A;
}

.btn-gray-light, .bg-gray-light {
  background-color: #ABABAB;
  color: #00040A;
}

.btn-gray-lighter, .bg-gray-lighter {
  background-color: #CCCCCC;
  color: #00040A;
}

w .btn-gray-lightest,
.bg-gray-lightest {
  background-color: #E8E8E8;
  color: #00040A;
}

.btn-text {
  background-color: transparent;
  color: #00040A;
  border: none;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.btn-text.active,
.btn-text:active {
  color: #C3002F;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader-icon {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0px;
}

.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #C3002F;
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}

.preloader-icon span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader-fx {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
.big-heading {
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.small-heading {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.intro-text {
  font-weight: 400;
  text-align: center;
  font-size: 16px;
}

.content-small-heading {
  font-weight: 700;
  text-transform: uppercase;
}

.content-big-heading {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.content-text {
  font-weight: 400;
  text-align: left;
  font-size: 1rem;
  line-height: 1.2rem;
}

.content-img {
  width: 100%;
  padding: 0px 4px;
}

.btn-content {
  background-color: transparent;
  color: #00040A;
  border: none;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
}

.btn-content:hover {
  color: #C3002F;
}

.text-primary {
  color: #C3002F !important;
}

.btn-color {
  border: 1px solid #CCCCCC;
  margin: 6px;
  height: 50px;
  width: 120px;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#map {
  min-height: 400px;
  height: 100%;
  width: 100%;
  padding: 8px;
}

#page-map {
  min-height: 80vh;
  width: 100%;
  padding: 8px;
}

.btn-form {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  border: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0.25rem;
}

.bootstrap-table .fixed-table-container .table thead th {
  vertical-align: top;
  padding: 0;
  margin: 0;
}

/*======================================
    Responsive CSS
========================================*/
/* Tablet Screen */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
  h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
  h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
  h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  .btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
  }
  .scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 80px;
    right: 30px;
  }
  .whatsapp-link {
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 140px;
    right: 30px;
    font-size: 30px;
    padding-bottom: 0;
    padding-right: 2px;
  }
  .btn-text {
    font-size: calc(0.9rem + 0.5vw);
  }
  .small-heading {
    font-size: 1rem;
    padding-bottom: 10px;
  }
  .big-heading {
    font-size: calc(1.35rem + 0.9vw);
    padding-bottom: 10px;
  }
  .btn-color {
    border: 1px solid #999999;
    margin: 4px;
    height: 40px;
    width: 85px;
  }
  .pagination li a {
    padding: 0 16px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 0;
    line-height: 32px;
  }
  .pagination .pagination-list li a i {
    font-size: 16px;
  }
}
/* Mobile Screen */
@media only screen and (max-width: 767px) {
  h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
  h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
  h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
  h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  .btn {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
  }
  .btn-text {
    font-size: calc(0.9rem + 0.5vw);
  }
  .scroll-top {
    width: 30px;
    height: 30px;
    line-height: 30px;
    bottom: 50px;
    right: 14px;
  }
  .whatsapp-link {
    width: 30px;
    height: 30px;
    line-height: 30px;
    bottom: 90px;
    right: 14px;
    font-size: 20px;
    padding-bottom: 2px;
    padding-right: 0;
  }
  .small-heading {
    font-size: 1rem;
    padding-bottom: 10px;
  }
  .big-heading {
    font-size: calc(1.35rem + 0.9vw);
    padding-bottom: 10px;
  }
  .btn-color {
    margin: 3px;
    height: 35px;
    width: 60px;
  }
  .pagination li a {
    padding: 0 16px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 0;
    line-height: 32px;
  }
  .pagination .pagination-list li a i {
    font-size: 16px;
  }
}
/*======================================
	Header CSS
========================================*/
.navbar-area {
  position: absolute;
  width: 100%;
  z-index: 99;
  background-color: transparent;
  transition: all 0.3s ease-out 0s;
}

.navbar-area hr {
  border: 0;
  border-top: 1px solid;
  width: 100%;
  height: 0;
  margin: 10px 0;
  padding: 0px 20px;
}

.navbar-dark hr {
  color: #ffffff;
}

.navbar-light hr {
  color: #00040A;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(0, 4, 10, 0.8745098039);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
  top: 0;
}

.sticky .navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}

.sticky .navbar .navbar-nav .nav-item .dropdown-item {
  color: #00040A;
}

.sticky hr {
  color: #ffffff;
}

.nav-link h1 {
  font-size: 15px;
}

.sticky .logo-desktop {
  content: url(/static/images/logo/Nissan_Brand_VI_Dark.svg);
}

.sticky .logo-mobile {
  content: url(/static/images/logo/Wordmark_Dark.svg);
}

.hide-sticky-show {
  display: none;
}

.sticky .hide-sticky-show {
  display: unset;
}

@keyframes showLogo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.show-sticky-hide {
  display: block;
  animation: showLogo 250ms ease-in-out both;
}

.sticky .show-sticky-hide {
  display: none;
}

.navbar {
  display: inline;
  padding: 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
  width: 100%;
}

.navbar-collapse {
  align-items: flex-end;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.logo-container {
  width: 70px;
  margin: 20px;
  min-height: 55px;
}

.logo-large-container {
  display: block;
  position: absolute;
  right: unset;
  left: 50px;
  top: 38px;
  padding: 0;
  width: 200px;
  min-height: 150px;
}

.logo {
  height: auto;
  position: relative;
  width: 100%;
}

.logo-large {
  height: auto;
  position: relative;
  width: 100%;
}

.offcanvas-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  transition: box-shadow 0.15s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.offcanvas-toggler,
.offcanvas-toggler:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.navbar-toggler .toggler-icon,
.offcanvas-toggler .toggler-icon {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  display: block;
  margin: 5px auto;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-dark .navbar-toggler .toggler-icon,
.navbar-dark .offcanvas-toggler .toggler-icon {
  background-color: #ffffff;
}

.navbar-light .navbar-toggler .toggler-icon,
.navbar-light .offcanvas-toggler .toggler-icon {
  background-color: #00040A;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1),
.offcanvas-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 8px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2),
.offcanvas-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3),
.offcanvas-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -8px;
}

.navbar-nav .nav-item a {
  font-size: 15px;
  font-weight: 400;
  color: #2B2E34;
  transition: all 0.3s ease-out 0s;
  position: relative;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}

.navbar-light .navbar-nav .nav-item .nav-link {
  color: #00040A;
}

.navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #C3002F;
  z-index: -1;
  opacity: 0;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  z-index: 5;
  width: 0%;
  left: 0;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: #C3002F;
}

.navbar-nav .nav-item:hover .nav-link:before,
.navbar-nav .nav-item .nav-link.active::before {
  opacity: 1;
  width: 30px;
}

.sub-layer-nav {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.page-highlight .nav-item .nav-link {
  font-weight: 700;
}

.dropdown-menu {
  border-radius: 0;
}

.offcanvas-vehicle {
  height: 100vh;
}

.offcanvas .sub-menu a {
  color: #00040A;
  font-size: 16px;
  line-height: 36px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #E8E8E8;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
  }
  .navbar-area hr {
    border: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
  }
  .sticky .navbar .navbar-nav .nav-item .nav-link {
    color: #00040A;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    margin-top: -1px;
    padding: 8px 12px;
  }
  .navbar-dark .navbar-nav .nav-item .nav-link,
  .navbar-light .navbar-nav .nav-item .nav-link {
    color: #00040A;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    margin-top: -1px;
    padding: 8px 12px;
  }
  .hide-sticky-show {
    display: initial;
  }
  .show-sticky-hide {
    display: none;
  }
  .logo-container {
    width: 120px;
    margin: 20px;
    min-height: 16px;
  }
  .sub-layer-nav {
    display: flex;
    flex-direction: column;
    width: auto;
  }
  .dropdown-menu {
    background-color: #E8E8E8;
    border: none;
  }
}
@media only screen and (max-width: 768px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #E8E8E8;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
  }
  .navbar-area hr {
    border: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
  }
  .sticky .navbar .navbar-nav .nav-item .nav-link {
    color: #00040A;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    margin-top: -1px;
    padding: 8px 12px;
  }
  .navbar-dark .navbar-nav .nav-item .nav-link,
  .navbar-light .navbar-nav .nav-item .nav-link {
    color: #00040A;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    margin-top: -1px;
    padding: 8px 12px;
  }
  .hide-sticky-show {
    display: initial;
  }
  .show-sticky-hide {
    display: none;
  }
  .logo-container {
    width: 120px;
    margin: 20px;
    min-height: 16px;
  }
  .sub-layer-nav {
    display: flex;
    flex-direction: column;
    width: auto;
  }
  .dropdown-menu {
    background-color: #E8E8E8;
    border: none;
  }
}
/*======================================
	Footer CSS
========================================*/
.footer {
  background-color: #00040A;
  colour: #ffffff;
  z-index: 2;
  text-align: left;
  position: absolute;
  width: 100%;
}
.footer .footer-middle {
  background-color: #1A1A1A;
  padding-bottom: 30px;
}
.footer .footer-middle hr {
  color: #ffffff;
  border: 0;
  border-top: 1px solid;
  width: 100%;
  height: 0;
  margin: 10px 0;
  padding: 0px 20px;
}
.footer .footer-bottom {
  background-color: #00040A;
  border-top: 1px solid rgba(255, 255, 255, 0.2901960784);
  text-align: left;
}
.footer .footer-heading {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 0 20px 0;
}
.footer .footer-item {
  padding-bottom: 15px;
}
.footer .footer-item a {
  color: #ffffff;
}
.footer .footer-social {
  display: inline-block;
  margin-right: 6px;
}
.footer .footer-social span {
  color: #E8E8E8;
  font-size: 24px;
}
.footer .footer-option {
  padding: 25px 20px 25px 0;
}
.footer .footer-option a {
  color: #ffffff;
  text-decoration: none;
}
.footer .footer-copyright {
  padding: 25px 120px 25px 0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-middle {
    padding-bottom: 20px;
  }
  .footer .footer-middle hr {
    width: 50%;
    left: 50%;
  }
  .footer .footer-bottom {
    padding-bottom: 65px;
    text-align: center;
  }
  .footer .footer-item {
    padding-bottom: 10px;
  }
  .footer .footer-option,
  .footer .footer-copyright {
    padding: 5px 25px 5px 0;
  }
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer .footer-middle {
    padding-bottom: 15px;
  }
  .footer .footer-middle hr {
    width: 50%;
    margin-left: 25%;
  }
  .footer .footer-bottom {
    padding-bottom: 50px;
    text-align: center;
  }
  .footer .footer-item {
    padding-bottom: 10px;
  }
  .footer .footer-option,
  .footer .footer-copyright {
    padding: 5px 25px 5px 0;
  }
}
/*======================================
    Hero Area CSS
========================================*/
.hero-area {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-area-tight {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.hero-thumbnail-spacing {
  padding-bottom: 70px;
  margin-bottom: 40px;
}

.carousel-caption {
  display: block;
  position: absolute;
  right: unset;
  left: 50px;
  top: 265px;
  padding: 0;
  max-width: 33vw;
}

.carousel-caption .hero-button-container {
  min-width: 160px;
  align-items: stretch;
}

.carousel-indicators.hero-indicators {
  bottom: -70px;
  margin: 0;
}

.carousel-indicators.hero-indicators [data-bs-target] {
  width: 190px;
  height: 120px;
  border: 0px;
  opacity: 1;
  margin: 0;
  text-indent: 0px;
  font-size: 32px;
  color: #C3002F;
  background-color: #E8E8E8;
}
.carousel-indicators.hero-indicators [data-bs-target] .carousel-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-inner video {
  max-width: 100%;
  max-height: 1575px;
  height: auto;
  vertical-align: middle;
}

.carousel-inner iframe {
  max-width: 100%;
  min-height: 1000px;
  max-height: 1575px;
  height: auto;
  vertical-align: middle;
}

.carousel-inner .embedded {
  margin-left: auto;
  margin-right: auto;
}

.nim-logo {
  width: 98px;
  height: 36px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area {
    margin-bottom: 50px;
  }
  .hero-thumbnail-spacing {
    padding-bottom: 35px;
  }
  .carousel-caption {
    left: 16px;
    top: 100px;
    max-width: 90vw;
  }
  .carousel-caption .hero-button-container {
    min-width: 100px;
    align-items: stretch;
  }
  .carousel-indicators.hero-indicators {
    bottom: -35px;
    margin: 0;
  }
  .carousel-indicators.hero-indicators [data-bs-target] {
    width: 120px;
    height: 75px;
  }
  .carousel-inner video {
    min-height: 500px;
    max-height: 100px;
  }
  .carousel-inner iframe {
    min-height: 500px;
    max-height: 1000px;
  }
}
@media (max-width: 767px) {
  .hero-area {
    margin-bottom: 40px;
  }
  .hero-thumbnail-spacing {
    padding-bottom: 20px;
  }
  .carousel-caption {
    left: 16px;
    top: 100px;
    max-width: 90vw;
  }
  .carousel-caption .hero-button-container {
    min-width: 100px;
    align-items: stretch;
  }
  .carousel-indicators.hero-indicators {
    bottom: -20px;
    margin: 0;
  }
  .carousel-indicators.hero-indicators [data-bs-target] {
    width: 80px;
    height: 50px;
  }
  .carousel-inner video {
    min-height: 210px;
    max-height: 700px;
  }
  .carousel-inner iframe {
    min-height: 210px;
    max-height: 700px;
  }
  .nim-logo {
    right: unset;
    bottom: 40px;
    left: 15px;
  }
}
/*======================================
    Call to Action CSS
========================================*/
.action-area,
.action-area-float {
  position: relative;
  background: #00040A;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 40px;
}

.action-area a,
.action-area-float a {
  color: #E8E8E8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: normal;
  text-transform: capitalize;
  text-decoration: none;
  background: transparent;
  border-radius: 0;
  align-self: center;
}

.action-area .action-text,
.action-area-float .action-text {
  text-transform: uppercase;
}

.action-area .action-button,
.action-area-float .action-button {
  border: 1px solid rgba(102, 102, 102, 0.5333333333);
}

.action-area .action-button .cta-icon,
.action-area-float .action-button .cta-icon {
  font-size: 52px;
  color: #E8E8E8;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .action-area {
    position: fixed;
    z-index: 99;
    background-color: #2B2E34;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-out 0s;
    bottom: 0;
    padding: 0;
    margin-bottom: 0;
    height: 50px;
    width: 100%;
  }
  .action-area a,
  .action-area-float a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    padding: 5px 5px;
    text-align: center;
    height: 100%;
  }
  .action-area-float a {
    display: flex;
    flex-direction: column;
  }
  .action-area-float {
    position: relative;
    background: #00040A;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 50px;
  }
  .action-area-float .action-button .cta-icon {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .action-area {
    position: fixed;
    z-index: 99;
    background-color: #2B2E34;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-out 0s;
    bottom: 0;
    padding: 0;
    margin-bottom: 0;
    height: 36px;
    width: 100%;
  }
  .action-area a,
  .action-area-float a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    padding: 5px 5px;
    text-align: center;
    height: 100%;
  }
  .action-area-float a {
    display: flex;
    flex-direction: column;
  }
  .action-area-float {
    position: relative;
    background: #00040A;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 40px;
  }
  .action-area-float .action-button .cta-icon {
    font-size: 20px;
  }
}
/*======================================
    Vehicle list CSS
========================================*/
.vehicle-list-area {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 40px;
  min-height: 320px;
}

.vehicle-item-img {
  width: 100%;
  padding: 6px;
}

.vehicle-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vehicle-item-content .vehicle-item-name {
  font-weight: 400;
  text-transform: uppercase;
}

.vehicle-item-content .vehicle-item-price {
  color: #00040A;
  font-size: 16px;
  font-weight: 400;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vehicle-list-area {
    margin-bottom: 50px;
    min-height: 320px;
  }
}
@media (max-width: 767px) {
  .vehicle-list-area {
    margin-bottom: 40px;
    min-height: 320px;
  }
}
/*======================================
    Call to Action CSS
========================================*/
.article-list-area {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 40px;
}

.article-preview {
  flex: 1;
}

.article-heading {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
}

.article-heading:focus,
.article-heading:hover {
  color: transparent;
}
.article-heading:focus:before,
.article-heading:hover:before {
  content: attr(data-text);
  overflow: visible;
  text-overflow: inherit;
  background: #ffffff;
  position: absolute;
  left: auto;
  top: auto;
  width: auto;
  max-width: 400px;
  white-space: normal;
  word-wrap: break-word;
  display: block;
  color: #00040A;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .article-list-area {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .article-list-area {
    margin-bottom: 40px;
  }
}
/*======================================
    COntent Features CSS
========================================*/
.content-area {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 40px;
}

.content-area.spaced {
  padding-top: 150px;
}

.content-area-dark {
  position: relative;
  background: #00040A;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 40px;
}

.content-area-dark.spaced {
  padding-top: 150px;
}

.carousel-indicators.content-indicators {
  bottom: 6px;
  margin: 0;
}

.carousel-indicators.content-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 10px;
  background-color: #C3002F;
}

.carousel-indicators.content-indicators [data-bs-target].active {
  width: 20px;
  height: 10px;
  border-radius: 10px;
}

.content-frame {
  height: 800px;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .content-area {
    margin-bottom: 50px;
  }
  .content-area.spaced {
    padding-top: 100px;
  }
  .content-frame {
    height: 800px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .content-area {
    margin-bottom: 40px;
  }
  .content-area.spaced {
    padding-top: 75px;
  }
  .content-frame {
    height: 450px;
    width: 100%;
  }
}
/*======================================
    Content Scroll CSS
========================================*/
.scroll-three-area .carousel-item,
.scroll-two-area .carousel-item,
.scroll-one-area .carousel-item {
  background-color: #ffffff;
}

.scroll-three-area .carousel-nav-icon,
.scroll-two-area .carousel-nav-icon,
.scroll-one-area .carousel-nav-icon {
  height: 48px;
  width: 48px;
}

.scroll-three-area .carousel-nav-icon .carousel-chevron,
.scroll-two-area .carousel-nav-icon .carousel-chevron,
.scroll-one-area .carousel-nav-icon .carousel-chevron {
  fill: #C3002F;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .scroll-three-area,
  .scroll-two-area,
  .scroll-one-area {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .scroll-three-area,
  .scroll-two-area,
  .scroll-one-area {
    margin-bottom: 40px;
  }
  .scroll-three-area .carousel-inner .carousel-item > div,
  .scroll-two-area .carousel-inner .carousel-item > div,
  .scroll-one-area .carousel-inner .carousel-item > div {
    display: none;
  }
  .scroll-three-area .carousel-inner .carousel-item > div:first-child,
  .scroll-two-area .carousel-inner .carousel-item > div:first-child,
  .scroll-one-area .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
  .carousel-caption {
    display: block !important;
  }
}
.scroll-three-area .carousel-inner .carousel-item.active,
.scroll-three-area .carousel-inner .carousel-item-next,
.scroll-three-area .carousel-inner .carousel-item-prev,
.scroll-two-area .carousel-inner .carousel-item.active,
.scroll-two-area .carousel-inner .carousel-item-next,
.scroll-two-area .carousel-inner .carousel-item-prev,
.scroll-one-area .carousel-inner .carousel-item.active,
.scroll-one-area .carousel-inner .carousel-item-next,
.scroll-one-area .carousel-inner .carousel-item-prev {
  display: flex;
}

@media (min-width: 768px) {
  .scroll-three-area .carousel-inner .carousel-item-end.active,
  .scroll-three-area .carousel-inner .carousel-item-next {
    transform: translateX(33%);
  }
  .scroll-three-area .carousel-inner .carousel-item-start.active,
  .scroll-three-area .carousel-inner .carousel-item-prev {
    transform: translateX(-33%);
  }
  .scroll-two-area .carousel-inner .carousel-item-end.active,
  .scroll-two-area .carousel-inner .carousel-item-next {
    transform: translateX(50%);
  }
  .scroll-two-area .carousel-inner .carousel-item-start.active,
  .scroll-two-area .carousel-inner .carousel-item-prev {
    transform: translateX(-50%);
  }
}
.scroll-three-area .carousel-inner .carousel-item-end,
.scroll-three-area .carousel-inner .carousel-item-start,
.scroll-two-area .carousel-inner .carousel-item-end,
.scroll-two-area .carousel-inner .carousel-item-start,
.scroll-one-area .carousel-inner .carousel-item-end,
.scroll-one-area .carousel-inner .carousel-item-start {
  transform: translateX(0);
}

/*======================================
    Hero Area CSS
========================================*/
.compare-area {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 40px;
}

.btn-compare {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  background-color: #ffffff;
  width: 100%;
}

.btn-compare:hover {
  background-color: #ffffff;
  color: #00040A;
  transform: none;
  box-shadow: none;
  outline: 0;
}

.btn-compare:focus:not(:focus-visible) {
  outline: 0;
  text-decoration: none;
  box-shadow: none;
}

.btn-compare:not(:first-of-type) {
  border-top: none;
}

.compare-area .accordion-button {
  color: #00040A;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #ffffff;
  box-shadow: none;
  outline: none;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.compare-area .accordion-button:not(.collapsed) {
  color: #C3002F;
  box-shadow: none;
}

.compare-area .carousel-item {
  background-color: #ffffff;
}

.compare-area .carousel-nav-icon {
  height: 48px;
  width: 48px;
}

.compare-area .carousel-nav-icon .carousel-chevron {
  fill: #C3002F;
}

.compare-area .brochure-button {
  border: 1px solid rgba(102, 102, 102, 0.5333333333);
  color: #E8E8E8;
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  background-color: #C3002F;
  margin-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .compare-area {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .compare-area {
    margin-bottom: 40px;
  }
  .compare-area .carousel-inner .carousel-item > div {
    display: none;
  }
  .compare-area .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}
.compare-area .carousel-inner .carousel-item.active,
.compare-area .carousel-inner .carousel-item-next,
.compare-area .carousel-inner .carousel-item-prev {
  display: flex;
}

@media (min-width: 768px) {
  .compare-area .carousel-inner .carousel-item-end.active,
  .compare-area .carousel-inner .carousel-item-next {
    transform: translateX(33%);
  }
  .compare-area .carousel-inner .carousel-item-start.active,
  .compare-area .carousel-inner .carousel-item-prev {
    transform: translateX(-33%);
  }
}
.compare-area .carousel-inner .carousel-item-end,
.compare-area .carousel-inner .carousel-item-start {
  transform: translateX(0);
}

/*======================================
    Testimonial CSS
========================================*/
.testimonials {
  padding-bottom: 150px;
}
.testimonials .testimonial-inner {
  position: relative;
}
.testimonials #tns1 > .tns-item {
  transform: scale(0.9);
}

.testimonials .single-testimonial {
  height: 100%;
  width: 100%;
  position: relative;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #eee;
  background-color: #999999;
  border-radius: 8px;
}
.testimonials .single-testimonial .review {
  margin-bottom: 20px;
}
.testimonials .single-testimonial .review li {
  display: inline-block;
  margin-right: 3px;
}
.testimonials .single-testimonial .review li:last-child {
  margin-right: 0;
}
.testimonials .single-testimonial .review li i {
  color: #C3002F;
}
.testimonials .single-testimonial .quote i {
  font-size: 30px;
  color: #C3002F;
}
.testimonials .single-testimonial p {
  font-size: 15px;
}
.testimonials .single-testimonial .bottom {
  position: relative;
  margin-top: 40px;
}
.testimonials .single-testimonial .bottom .clien-image {
  margin-right: 20px;
}
.testimonials .single-testimonial .bottom .clien-image img {
  height: 80px;
  width: 80px;
  border-radius: 100%;
  margin-right: 22px;
  float: left;
}
.testimonials .single-testimonial .bottom .name {
  font-size: 17px;
  position: relative;
  top: 20px;
}
.testimonials .single-testimonial .bottom .name span {
  font-size: 13px;
  display: block;
  margin-top: 5px;
  color: #888;
  font-weight: 400;
}

.testimonials .tns-nav button {
  width: 10px;
  height: 10px;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
  background: #00040A;
  display: inline-block;
  border: none;
  margin-right: 9px;
  border-radius: 30px;
}

.testimonials .tns-nav button:last-child {
  margin: 0;
}

.testimonials .tns-nav button.tns-nav-active {
  width: 20px;
  background-color: #C3002F !important;
}

.testimonials .tns-nav {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: -50px;
  transform: translateX(5px);
}

/*======================================
    Call to Action CSS
========================================*/
.news-article {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 40px;
  padding-top: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .article-list-area {
    margin-bottom: 50px;
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .article-list-area {
    margin-bottom: 40px;
    padding-top: 50px;
  }
}
/*======================================
    COntent Features CSS
========================================*/
.map-area {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 10px;
  padding-top: 140px;
}

.btn-use-loc {
  background-color: transparent;
  padding: 0;
  color: #ffffff;
  text-transform: none;
}

.map-area .accordion-button,
.content-area .accordion-button.dealer-accordion-button {
  color: #00040A;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #ffffff;
  box-shadow: none;
  outline: none;
}

.map-area .accordion-button:not(.collapsed),
.content-area .accordion-button.dealer-accordion-button:not(.collapsed) {
  color: #C3002F;
  background-color: #E8E8E8;
  box-shadow: none;
}

.map-area .dealer-accordion-icon,
.content-area .dealer-accordion-icon {
  width: 30px;
  margin-right: 10px;
}

.map-area .dealer-contact-link,
.content-area .dealer-contact-link {
  color: #00040A;
  text-decoration: none;
}

.map-area .dealer-contact-link:hover,
.content-area .dealer-contact-link:hover {
  color: #C3002F;
  text-decoration: none;
}

.map-directions {
  text-decoration: underline;
  color: #00040A;
}

.map-directions:hover {
  color: #C3002F;
}

#page-legend, #loc-legend {
  background-color: #ffffff;
  padding: 10px;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.map-legend-icon {
  width: 19px;
  height: 23px;
  margin-right: 8px;
}

.map-legend-text {
  font-family: "NissanBrand", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #2B2E34;
  overflow-x: hidden;
  font-size: 14px;
}

.map-legend-text:first-of-type {
  margin-right: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .map-area {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .map-area {
    margin-bottom: 40px;
  }
}
/*======================================
    COntent Features CSS
========================================*/
.finance-calculator {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 10px;
  padding-top: 140px;
}

.calculator-label {
  font-size: 0.875rem;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .finance-calculator {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .finance-calculator {
    margin-bottom: 40px;
  }
}
/*======================================
    COntent Features CSS
========================================*/
.error-area {
  position: relative;
  background-size: cover;
  background-position: center top;
  min-height: 100vh;
}

/*======================================
    Pre-Owned Content CSS
========================================*/
.pre-owned-list-heading {
  font-weight: 700;
  text-transform: uppercase;
}

.pre-owned-list-derivative {
  font-weight: 400;
  text-transform: uppercase;
}

.pre-owned-spec-label {
  font-size: 1rem;
}

.pre-owned-spec {
  font-weight: 700;
  font-size: 1rem;
}

.pre-owned-section {
  position: relative;
  margin-bottom: 24px;
}
.pre-owned-section .pre-owned-section-heading {
  font-weight: 400;
  text-transform: uppercase;
}
.pre-owned-section .pre-owned-section-heading:first-child::before {
  content: "";
  border-top: 6px solid #C3002F;
  top: -0.75rem;
  position: absolute;
  width: 2.5rem;
}

.pre-owned-lightbox-modal .pre-owned-modal-content {
  background: #242424;
}

.pre-owned-lightbox-modal .btn-close {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 1.2rem;
  z-index: 10;
}

.pre-owned-lightbox-modal .pre-owned-modal-body {
  display: flex;
  align-items: center;
  padding: 0;
  text-align: center;
}

.pre-owned-lightbox-modal img {
  width: auto;
  min-height: 70vh;
  max-height: 100vh;
  max-width: 100%;
}

.pre-owned-lightbox-modal .carousel-inner {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.pre-owned-lightbox-modal .carousel-caption {
  position: absolute;
  top: unset;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(36, 36, 36, 0.75);
  max-width: unset;
  padding: 1.25rem 0 1.25rem 0;
}

.pre-owned-lightbox-modal .carousel-control-prev,
.pre-owned-lightbox-modal .carousel-control-next {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: auto;
}

.pre-owned-lightbox-modal .carousel-control-prev {
  left: 10px;
}

.pre-owned-lightbox-modal .carousel-control-next {
  right: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pre-owned-lightbox-modal img {
    min-height: unset;
  }
}
@media (max-width: 767px) {
  .pre-owned-lightbox-modal img {
    min-height: unset;
  }
}
/*======================================
    Forced Custom Spacing CSS
========================================*/
.custom-mb-0 {
  margin-bottom: 0px;
}

.custom-mb-10 {
  margin-bottom: 10px;
}

.custom-mb-20 {
  margin-bottom: 20px;
}

.custom-mb-30 {
  margin-bottom: 30px;
}

.custom-mb-40 {
  margin-bottom: 40px;
}

.custom-mb-50 {
  margin-bottom: 50px;
}

.custom-mb-60 {
  margin-bottom: 60px;
}

.custom-mb-70 {
  margin-bottom: 70px;
}

.custom-mb-80 {
  margin-bottom: 80px;
}

.custom-mb-90 {
  margin-bottom: 90px;
}

.custom-mb-100 {
  margin-bottom: 100px;
}

.custom-mb-110 {
  margin-bottom: 110px;
}

.custom-mb-120 {
  margin-bottom: 120px;
}

.custom-mb-130 {
  margin-bottom: 130px;
}

.custom-mb-140 {
  margin-bottom: 140px;
}

.custom-mb-150 {
  margin-bottom: 150px;
}

.custom-mb-160 {
  margin-bottom: 160px;
}

.custom-mb-170 {
  margin-bottom: 170px;
}

.custom-mb-180 {
  margin-bottom: 180px;
}

.custom-mb-190 {
  margin-bottom: 190px;
}

.custom-mb-200 {
  margin-bottom: 200px;
}

.custom-mb-210 {
  margin-bottom: 210px;
}

.custom-mb-220 {
  margin-bottom: 220px;
}

.custom-mb-230 {
  margin-bottom: 230px;
}

.custom-mb-240 {
  margin-bottom: 240px;
}

.custom-mb-250 {
  margin-bottom: 250px;
}

.custom-pb-0 {
  padding-bottom: 0px;
}

.custom-pb-10 {
  padding-bottom: 10px;
}

.custom-pb-20 {
  padding-bottom: 20px;
}

.custom-pb-30 {
  padding-bottom: 30px;
}

.custom-pb-40 {
  padding-bottom: 40px;
}

.custom-pb-50 {
  padding-bottom: 50px;
}

.custom-pb-60 {
  padding-bottom: 60px;
}

.custom-pb-70 {
  padding-bottom: 70px;
}

.custom-pb-80 {
  padding-bottom: 80px;
}

.custom-pb-90 {
  padding-bottom: 90px;
}

.custom-pb-100 {
  padding-bottom: 100px;
}

/*======================================
    Heading Block CSS
========================================*/
.heading-block {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.heading-block-tight {
  position: relative;
  overflow: hidden;
}

.heading-block-light {
  background: #ffffff;
}

.heading-block-dark {
  background: #00040A;
}

.heading-color-light {
  color: #ffffff;
}

.heading-color-dark {
  color: #00040A;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading-block {
    margin-bottom: 50px;
  }
  .heading-block-light {
    background: unset;
  }
  .heading-block-dark {
    background: unset;
  }
  .heading-color-light {
    color: unset;
  }
  .heading-color-dark {
    color: unset;
  }
  .heading-block-mobile-light {
    background: #ffffff;
  }
  .heading-block-mobile-dark {
    background: #00040A;
  }
  .heading-color-mobile-light {
    color: #ffffff;
  }
  .heading-color-mobile-dark {
    color: #00040A;
  }
}
@media (max-width: 767px) {
  .heading-block {
    margin-bottom: 40px;
  }
  .heading-block-light {
    background: unset;
  }
  .heading-block-dark {
    background: unset;
  }
  .heading-block-mobile-light {
    background: #ffffff;
  }
  .heading-block-mobile-dark {
    background: #00040A;
  }
  .heading-color-mobile-light {
    color: #ffffff;
  }
  .heading-color-mobile-dark {
    color: #00040A;
  }
}

/*# sourceMappingURL=main.css.map */
