/*--------------------------------------------------------------
  TABLE OF CONTENTS:
----------------------------------------------------------------

** - Utility
** - Common
** - Custom Cursor
** - Animations
** - Cards
** - Navigation
** - Home Showcase
** - Mobile Nav
** - Search Popup
** - Page Header
** - Main Slider
** - About
** - Services
** - ServiceS Details
** - Project
** - Project Details
** - Video
** - Funfact
** - Team
** - Team Details
** - Contact
** - Testimonial
** - Why Choose
** - Working Process
** - Blog
** - Blog List
** - Blog Standard
** - Blog Details
** - Feature
** - Pricing Plan
** - Faq
** - Gallery
** - History
** - Coming Soon
** - Products
** - Product Details
** - Cart
** - Checkout
** - Wishlist
** - Sign Up
** - Login
** - Privacy Policy
** - Error
** - Footer
** - Google Map

--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --automart-font: "Rubik", sans-serif;
  --automart-font-two: "Onest", sans-serif;
  --automart-gray: #7A7A7A;
  --automart-gray-rgb: 122, 122, 122;
  --automart-base: #E8050C;
  --automart-base-rgb: 232, 5, 12;
  --automart-black: #0A144B;
  --automart-black-rgb: 10, 20, 75;
  --automart-white: #ffffff;
  --automart-white-rgb: 255, 255, 255;
  --automart-bdr-radius: 20px
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--automart-font);
  color: var(--automart-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--automart-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--automart-font-two);
  color: var(--automart-black);
  margin: 0;
}

p {
  margin: 0;
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.2;
  z-index: -1;
}

#particles-js-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.2;
  z-index: -1;
}



/*** chat popup ***/

.chat-popup {
  position: fixed;
  left: 0;
  bottom: 0px;
  width: 350px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: var(--automart-black);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateX(-100%);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.chat-popup.popup-visible {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.chat-popup .popup-inner {
  position: relative;
  display: block;
  padding: 40px 35px;
  padding-top: 32px;
}

.chat-popup .close-chat {
  position: absolute;
  display: flex;
  left: 0px;
  top: -55px;
  width: 60px;
  height: 55px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background: var(--automart-base);
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-popup .popup-inner p {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .70);
}

.chat-popup .chat-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.chat-popup .chat-form .form-group:last-child {
  margin-bottom: 0px;
}

.chat-popup .chat-form .form-group input[type='text'],
.chat-popup .chat-form .form-group input[type='email'],
.chat-popup .chat-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, .70);
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, .10);
  transition: all 500ms ease;
}

.chat-popup .chat-form .form-group textarea {
  height: 120px;
  resize: none;
}

.chat-popup .chat-form .form-group input:focus,
.chat-popup .chat-form .form-group textarea:focus {
  outline: none;
}

.chat-popup .chat-form .form-group button {
  border: none;
}

.chat-popup .chat-form .form-group .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.chat-popup .chat-form .form-group .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.chat-popup .chat-form .form-group .thm-btn:hover span,
.chat-popup .chat-form .form-group .thm-btn:hover i {
  color: var(--automart-base);
}



.chat-icon {
  position: fixed;
  display: inline-block;
  left: 30px;
  bottom: 45px;
  z-index: 99;
}

.chat-icon button {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  background: var(--automart-base);
  z-index: 1;
  border: none;
}

.chat-icon button:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(var(--automart-base-rgb), .20);
  border-radius: 5px;
  z-index: -1;
}



/***
=============================================
xs sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  transform: translateX(0%);
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--automart-base);
  border-color: var(--automart-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--automart-white-rgb), .50);
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  background-color: var(--automart-black);
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: rgba(var(--automart-white-rgb), .70);
  border: none;
  border-radius: var(--automart-bdr-radius);
  outline: none;
  transition: all 500ms ease;
  background-color: rgba(var(--automart-white-rgb), .05);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
  position: relative;
  border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn span::before {
  background: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn i::after {
  background: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover span {
  color: var(--automart-black);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover i {
  color: var(--automart-black);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--automart-white);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--automart-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--automart-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--automart-white-rgb), .10);
  border-radius: 50%;
  color: var(--automart-white);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--automart-base);
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--automart-white);
}


/*=============== scrollbar-Css =============*/

.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}



/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--automart-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--automart-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--automart-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--automart-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--automart-base-rgb), 0.70);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--automart-base-rgb), 0.40);
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}



/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--automart-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--automart-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--automart-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}






/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  z-index: 99999;
  transform: translateY(-100%);
  transition: all 0.5s;
}

.search-active .search-popup {
  transform: translateY(0%);
}

.search-popup .color-layer {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  background-color: var(--automart-base);
  transition: all 0.5s;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

.sidenav-bar-visible .search-popup {
  display: none;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0%;
  cursor: pointer;
  color: #ffffff;
  font-size: 30px;
  transition: all 0.5s;
  border: none;
  opacity: 0;
  transform: translateX(100px);
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 9999;
}

.search-popup .close-search:hover {
  color: var(--automart-base);
  background-color: rgba(255, 255, 255, 1.0);
}

.search-active .search-popup .close-search {
  opacity: 1;
  transform: translateX(0px);
  visibility: visible;
}




.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 25px;
  left: 0px;
  right: 0px;
  margin: 0px auto 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: 999;
}

.search-active .search-popup form {
  opacity: 1;
}

.search-popup .form-group {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  background-color: rgba(255, 255, 255, 1.0);
  font-size: 18px;
  color: var(--automart-black);
  height: 70px;
  width: 100%;
  padding: 10px 30px 10px 75px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
  border: 0px solid rgba(0, 0, 0, 0.10)
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]:focus {
  outline: none;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 70px;
  background: var(--automart-black);
  text-align: center;
  font-size: 20px;
  color: var(--automart-white);
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 60px;
}

.search-popup .form-group button i {
  font-style: normal;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background-color: rgba(var(--automart-base-rgb), .10);
  color: var(--automart-black);
}

.search-popup input::placeholder {
  color: var(--automart-black);
}
















/* Section Title Css */

.section-title {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 51px;
  z-index: 1;
}

.section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 6px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
  color: var(--automart-base);
  font-weight: 500;
  text-transform: uppercase;
}

.section-title__tagline-box:before {
  content: "";
  height: 2px;
  background: var(--automart-base);
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  width: 80px;
}

.section-title__title {
  color: var(--automart-black);
  font-size: 48px;
  line-height: 1.1em;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 16px 0 0;
}

.section-title__title .split-line {
  text-transform: none;
}

.section-title__tagline-box.two:before {
  margin: 0 auto 0;
}

.section-title__tagline-box.two::after {
  left: 110px;
}


/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  background-color: transparent;
  z-index: 1;
}

.thm-btn span {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
  overflow: hidden;
  border-radius: 30px;
  background-color: var(--automart-base);
  padding: 21px 45px 21px;
  transition: all 200ms linear;
  transition-delay: .1s;
  z-index: 1;
  text-transform: capitalize;
}

.thm-btn span::before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: rgba(var(--automart-black-rgb), 1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.thm-btn:hover span::before {
  top: -40%;
}

.thm-btn i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--automart-base);
  color: var(--automart-white);
  font-size: 20px;
  line-height: 20px;
  transition: all 200ms linear;
  transition-delay: .1s;
  z-index: 1;
}

.thm-btn i::after {
  transition-duration: 500ms;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 50%;
  background-color: rgba(var(--automart-black-rgb), 1);
  -webkit-transform: translateX(-50%) translateY(-100%);
  transform: translateX(-50%) translateY(-100%);
  border-radius: 50%;
  z-index: -1;
}

.thm-btn:hover i::after {
  -webkit-transform: translateX(-50%) translateY(0%);
  transform: translateX(-50%) translateY(0%);
}

.thm-btn:hover span {
  color: var(--automart-white);
}

.thm-btn:hover i {
  color: var(--automart-white);
}




/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-one__top {
  position: relative;
  display: block;
  background: var(--automart-white);
  padding: 22px 0px 22px;
  overflow: hidden;
  border-bottom:1px solid #000;
}

.main-header-one__top .container {
  max-width: 1650px;
}

.main-header-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 1;
}

.main-menu__contact-list li .icon::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--automart-white);
  border: 1px solid rgb(var(--automart-black-rgb), .1);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.main-menu__contact-list li .icon::after {
  position: absolute;
  top: -50px;
  left: 0;
  bottom: 1px;
  right: 0;
  background: var(--automart-base);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  content: "";
  z-index: -2;
}

.main-menu__contact-list li .icon i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  color: var(--automart-base);
}

.main-menu__contact-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.main-menu__contact-list li .text h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--automart-font);
}

.main-menu__contact-list li .text p {
  color: var(--automart-gray);
  font-weight: 400;
}

.main-menu__contact-list li .text p a {
  color: var(--automart-gray);
}

.main-menu__contact-list li .text p a:hover {
  color: var(--automart-base);
}


.main-header-one__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-one__top-btn .thm-btn span {
  padding: 17px 45px 17px;
}

.main-header-one__top-btn .thm-btn i {
  width: 52px;
  height: 52px;
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
  padding: 0px 30px 0px;
  margin-left: 30px;
  z-index: 1;
}

.main-menu__nav-sidebar-icon::before {
  position: absolute;
  top: -35px;
  left: 0;
  bottom: -35px;
  right: 0;
  background: var(--automart-base);
  content: "";
  z-index: -1;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  padding-right: 0;
  height: 35px;
  width: 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu--one {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--automart-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu--one {
  width: 35px;
}

.icon-dots-menu--two {
  position: relative;
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--automart-white);
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu--two {
  width: 25px;
}

.icon-dots-menu--three {
  position: relative;
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--automart-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu--three {
  width: 35px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-header-one__bottom {
  position: relative;
  display: block;
  background: #fff;
  z-index: 1;
}

.main-header-one__bottom .container {
  max-width: 1320px;
}

.main-header-one__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-one__bottom-left {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__logo {
  position: relative;
  display: block;
  padding-right: 85px;
  z-index: 1;
}

.main-header__logo::before {
  position: absolute;
  top: -29px;
  left: -9999999px;
  bottom: 0;
  right: 0px;

  content: "";
  z-index: -1;
}

.main-header__logo a {
  position: relative;
  display: inline-block;
}

.main-header__logo a img {
  width: 100%;
}

.main-header-one__bottom .main-menu__main-menu-box {
  display: block;
  margin-left: 45px;
}


.main-header-one__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--automart-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--automart-base);
}

.main-menu__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--automart-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--automart-base);
}

.main-header-one__bottom-contact {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-left: 20px;
}

.main-header-one__bottom-contact::before {
  position: absolute;
  top: 8px;
  left: 0;
  bottom: 7px;
  width: 1px;
  background: rgb(var(--automart-white-rgb), .30);
  content: "";
}

.main-header-one__bottom-contact .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: var(--automart-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-one__bottom-contact .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 20px;
  line-height: 20px;
}

.main-header-one__bottom-contact .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-header-one__bottom-contact .content-box p {
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
}

.main-header-one__bottom-contact .content-box h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.main-header-one__bottom-contact .content-box h4 a {
  color: #000;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-one__bottom-contact .content-box h4 a:hover {
  color: var(--automart-base);
}








.stricky-header .main-menu__main-menu-box-outer-top {
  display: none;
}

.stricky-header .main-menu__logo a {
  padding: 12.5px 0 12.5px;
  padding-right: 60px;
}

.stricky-header.main-menu {
  background-color: var(--automart-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 40px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 20px;
  font-family: var(--automart-font);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--automart-base);
}


.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background: #E8050C;
  background: linear-gradient(90deg, rgba(232, 5, 12, 1) 0%, rgba(232, 5, 12, 0.44) 44%, rgba(232, 5, 12, 0) 73%);
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: right center;
  z-index: 1;
  opacity: 1;
  border-radius: 3px;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: left center;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 55%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 18px;
  color: var(--automart-white);
  transform: translateY(-50%);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--automart-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--automart-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  min-width: 280px;
  padding: 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-bottom-left-radius: var(--automart-bdr-radius);
  border-bottom-right-radius: var(--automart-bdr-radius);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--automart-black-rgb), 0.10);
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--automart-black-rgb), 1);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  font-family: var(--automart-font-two);
  text-transform: capitalize;
  padding: 16px 0px 16px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li.current>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li.current>a,
.stricky-header .main-menu__list>li>ul>li.current>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li.current>a {
  color: rgba(var(--automart-base-rgb), 1.0);
  padding-left: 5px;
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--automart-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li.current>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li.current>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li.current>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li.current>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--automart-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--automart-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--automart-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--automart-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--automart-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--automart-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--automart-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--automart-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--automart-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--automart-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--automart-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--automart-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav__social a {
  font-size: 16px;
  color: var(--automart-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--automart-white-rgb), .10);
  border-radius: 50%;
  -webkit-transition: 500ms;
  transition: 500ms;
  z-index: 1;
}

.mobile-nav__social a+a {
  margin-left: 10px;
}

.mobile-nav__social a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--automart-base);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.mobile-nav__social a:hover::after {
  transform: scale(1.0);
  opacity: 1;
}

.mobile-nav__social a:hover {
  color: var(--automart-white);
  border: 1px solid rgba(var(--automart-base-rgb), 1);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--automart-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--automart-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--automart-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper .container {
  max-width: 1650px;
}

.main-header-two__inner {
  position: relative;
  display: block;
  padding-left: 280px;
  z-index: 1;
}

.main-header-two__logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  max-width: 280px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #f6f7f9;
  z-index: 3;
}

.main-header-two__logo:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10000000px;
  right: 99%;
  background-color: #f6f7f9;
  z-index: -1;
}

.main-header-two__menu-box-outer {
  position: relative;
  display: block;
}

.main-header-two__menu-box-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--automart-black);
  z-index: 1;
}

.main-header-two__menu-box-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 99%;
  right: -1000000px;
  bottom: 0;
  background-color: var(--automart-black);
  z-index: -1;
}

.main-menu-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  background-color: var(--automart-base);
  padding: 12px 30px 12px;
}

.main-menu-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.main-menu-two__contact-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: 2px;
  left: -20px;
  width: 1px;
  background-color: rgba(var(--automart-white-rgb), .30);
}

.main-menu-two__contact-list li:first-child:before {
  display: none;
}

.main-menu-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li .icon i {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--automart-white);
}

.main-menu-two__contact-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.main-menu-two__contact-list li .text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--automart-white);
}

.main-menu-two__contact-list li .text p a {
  color: var(--automart-white);
}

.main-menu-two__contact-list li .text p a:hover {
  color: var(--automart-black);
}

.main-menu-two__login-reg-and-social-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.main-menu-two__login-reg {
  position: relative;
  display: block;
}

.main-menu-two__login-reg p {
  font-size: 14px;
  font-weight: 500;
  color: var(--automart-white);
}

.main-menu-two__login-reg p a {
  color: var(--automart-white);
}

.main-menu-two__login-reg p a:hover {
  color: var(--automart-base);
}

.main-menu-two__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--automart-white-rgb), .20);
  border-radius: 50%;
  font-size: 15px;
  color: var(--automart-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-two__social a:hover {
  color: var(--automart-white);
  border: 1px solid var(--automart-base);
}

.main-menu-two__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--automart-base);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-two__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu-two__social a+a {
  margin-left: 5px;
}


.main-header-two__menu-box-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 30px;
}

.main-header-two__right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__search-box {
  position: relative;
  display: block;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--automart-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--automart-base);
}

.main-menu-two__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu-two__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--automart-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart:hover {
  color: var(--automart-base);
}

.main-header-two__bottom-contact {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-left: 20px;
}

.main-header-two__bottom-contact::before {
  position: absolute;
  top: 8px;
  left: 0;
  bottom: 7px;
  width: 1px;
  background: rgb(var(--automart-black-rgb), .10);
  content: "";
}

.main-header-two__bottom-contact .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: var(--automart-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__bottom-contact .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 20px;
  line-height: 20px;
}

.main-header-two__bottom-contact .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-header-two__bottom-contact .content-box p {
  color: var(--automart-black);
  font-weight: 500;
  text-transform: capitalize;
}

.main-header-two__bottom-contact .content-box h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.main-header-two__bottom-contact .content-box h4 a {
  color: var(--automart-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__bottom-contact .content-box h4 a:hover {
  color: var(--automart-black);
}








.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--automart-black);
}

.main-menu-two .main-menu__list>li.dropdown>a:after {
  color: var(--automart-black);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--automart-base);
}

.main-menu-two .main-menu__list>li.current>a::after,
.main-menu-two .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-two .main-menu__list>li.current>a::after,
.stricky-header.main-menu-two .main-menu__list>li:hover>a::after {
  color: var(--automart-base);
}


.stricky-header.main-menu-two .main-header-two__menu-box-top {
  display: none;
}

.stricky-header.main-menu-two {
  background-color: var(--automart-white);
}

/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper .container {
  max-width: 1650px;
}

.main-header-three__inner {
  position: relative;
  display: block;
  padding-left: 280px;
  z-index: 1;
}

.main-header-three__logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  max-width: 280px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #f6f7f9;
  z-index: 3;
}

.main-header-three__logo:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10000000px;
  right: 99%;
  background-color: #f6f7f9;
  z-index: -1;
}

.main-header-three__menu-box-outer {
  position: relative;
  display: block;
}

.main-header-three__menu-box-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--automart-base);
  padding: 0 30px 0;
  padding-right: 0;
  z-index: 1;
}

.main-header-three__menu-box-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 99%;
  right: -1000000px;
  bottom: 0;
  background-color: var(--automart-base);
  z-index: -1;
}

.main-menu-three__note-text {
  position: relative;
  display: block;
}

.main-menu-three__note-text p {
  font-size: 16px;
  color: var(--automart-white);
}

.main-menu-three__menu-language-and-social-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 5px 0;
}

.main-menu-three__top-menu {
  position: relative;
  display: block;
}

.main-menu-three__top-menu ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.main-menu-three__top-menu ul li {
  position: relative;
  display: block;
}

.main-menu-three__top-menu ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -15px;
  width: 1px;
  background-color: rgba(var(--automart-white-rgb), .30);
}

.main-menu-three__top-menu ul li:first-child:before {
  display: none;
}

.main-menu-three__top-menu ul li a {
  color: var(--automart-white);
}

.main-menu-three__top-menu ul li a:hover {
  color: var(--automart-black);
}

.main-menu-three__language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 19px;
  margin-right: 12px;
}

.main-menu-three__language-switcher::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: var(--automart-white);
  content: "";
  opacity: .30;
}

.main-menu-three__language-switcher .icon {
  position: relative;
  display: block;
  margin-right: 12px;
}

.main-menu-three__language-switcher .icon span {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 18px;
  line-height: 18px;
}

.main-menu-three__language-switcher .language-switcher {
  position: relative;
  display: block;
}

.main-menu-three__language-switcher .language-switcher form {
  position: relative;
  display: block;
  width: 48px;
}

.main-menu-three__language-switcher .language-switcher form .select-box {
  position: relative;
  display: block;
}

.main-menu-three__language-switcher .nice-select {
  background-color: var(--automart-base);
  border-radius: 0px;
  color: var(--automart-white);
  font-size: 16px;
  font-weight: 500;
  height: 30px;
  line-height: 30px;
  outline: none;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  font-family: var(--automart-font);
}

.main-menu-three__language-switcher .nice-select:after {
  right: 0px;
  margin-top: -6px;
  border-bottom: 1px solid var(--automart-white);
  border-right: 1px solid var(--automart-white);
}

.main-menu-three__language-switcher .nice-select .list {
  width: 65px;
  background-color: var(--automart-base);
}

.main-menu-three__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--automart-white-rgb), .30);
  border-radius: 50%;
  font-size: 15px;
  color: var(--automart-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-three__social a:hover {
  color: var(--automart-base);
  border: 1px solid var(--automart-white);
}

.main-menu-three__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--automart-white);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-three__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu-three__social a+a {
  margin-left: 5px;
}


.main-header-three__menu-box-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 30px;
}

.main-header-three__right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__search-box {
  position: relative;
  display: block;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--automart-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--automart-base);
}

.main-menu-three__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu-three__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--automart-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart:hover {
  color: var(--automart-base);
}

.main-header-three__bottom-contact {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-left: 20px;
}

.main-header-three__bottom-contact::before {
  position: absolute;
  top: 8px;
  left: 0;
  bottom: 7px;
  width: 1px;
  background: rgb(var(--automart-black-rgb), .10);
  content: "";
}

.main-header-three__bottom-contact .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: var(--automart-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three__bottom-contact .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 20px;
  line-height: 20px;
}

.main-header-three__bottom-contact .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-header-three__bottom-contact .content-box p {
  color: var(--automart-black);
  font-weight: 500;
  text-transform: capitalize;
}

.main-header-three__bottom-contact .content-box h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.main-header-three__bottom-contact .content-box h4 a {
  color: var(--automart-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three__bottom-contact .content-box h4 a:hover {
  color: var(--automart-black);
}








.main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three .main-menu__list>li>a {
  color: var(--automart-black);
}

.main-menu-three .main-menu__list>li.dropdown>a:after {
  color: var(--automart-black);
}

.main-menu-three .main-menu__list>li.current>a,
.main-menu-three .main-menu__list>li:hover>a,
.stricky-header.main-menu-three .main-menu__list>li.current>a,
.stricky-header.main-menu-three .main-menu__list>li:hover>a {
  color: var(--automart-base);
}

.main-menu-three .main-menu__list>li.current>a::after,
.main-menu-three .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-three .main-menu__list>li.current>a::after,
.stricky-header.main-menu-three .main-menu__list>li:hover>a::after {
  color: var(--automart-base);
}


.stricky-header.main-menu-three .main-header-three__menu-box-top {
  display: none;
}

.stricky-header.main-menu-three {
  background-color: var(--automart-white);
}














/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  z-index: 91;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--automart-black);
}

.main-slider__bg-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.main-slider__bg-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--automart-black-rgb), .90);
  z-index: 1;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

.main-slider .swiper-slide-active .main-slider__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main-slider__shape-1 {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 1000px;
  height: 600px;
  background-color: var(--automart-white);
  z-index: -1;
  opacity: 0;
  -webkit-transform: perspective(400px) rotate(0deg) translateY(100px);
  -ms-transform: perspective(400px) rotate(0deg) translateY(100px);
  transform: perspective(400px) rotate(0deg) translateY(100px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  clip-path: polygon(10% 39%, 71% 16%, 100% 100%, 0% 100%);
}

.main-slider .swiper-slide-active .main-slider__shape-1 {
  opacity: .05;
  -webkit-transform: perspective(400px) rotate(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotate(0deg) translateY(0px);
  transform: perspective(400px) rotate(0deg) translateY(0px);
  -webkit-transition-delay: 2200ms;
  -moz-transition-delay: 2200ms;
  -ms-transition-delay: 2200ms;
  -o-transition-delay: 2200ms;
  transition-delay: 2200ms;
}

.main-slider__shape-2 {
  position: absolute;
  right: 0;
  top: -210px;
  width: 730px;
  height: 500px;
  background-color: var(--automart-white);
  z-index: -1;
  transform: rotate(18deg);
  opacity: 0;
  -webkit-transform: perspective(400px) rotate(0deg) translateX(-100px);
  -ms-transform: perspective(400px) rotate(0deg) translateX(-100px);
  transform: perspective(400px) rotate(0deg) translateX(-100px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 1800ms ease;
  -moz-transition: all 1800ms ease;
  -ms-transition: all 1800ms ease;
  -o-transition: all 1800ms ease;
  transition: all 1800ms ease;
  clip-path: polygon(47% 100%, 0 0, 100% 0);
}

.main-slider .swiper-slide-active .main-slider__shape-2 {
  opacity: .05;
  -webkit-transform: perspective(400px) rotate(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotate(0deg) translateX(0px);
  transform: perspective(400px) rotate(0deg) translateX(0px);
  -webkit-transition-delay: 2500ms;
  -moz-transition-delay: 2500ms;
  -ms-transition-delay: 2500ms;
  -o-transition-delay: 2500ms;
  transition-delay: 2500ms;
}

.main-slider__shape-3 {
  position: absolute;
  top: 120px;
  left: 50px;
  z-index: -1;
}

.main-slider__shape-3 img {
  width: auto;
}

.main-slider__shape-4 {
  position: absolute;
  bottom: 0;
  right: 100px;
  z-index: -1;
}

.main-slider__shape-4 img {
  width: auto;
}

.main-slider .container {
  position: relative;
  z-index: 30;
}

.main-slider__content {
  position: relative;
  display: block;
  padding-top: 140px;
  padding-bottom: 140px;
  z-index: 15;
}

.main-slider__sub-title {
  position: relative;
  display: block;
  font-size: 18px;
  color: var(--automart-white);
  font-weight: 500;
  line-height: 1em;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__sub-title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider__title {
  position: relative;
  font-size: 65px;
  color: var(--automart-white);
  font-weight: 700;
  line-height: 1.3em;
  text-transform: capitalize;
  margin-top: 22px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider__title img {
  position: relative;
  display: inline-block;
  height: 80px;
  width: 200px;
  border-radius: 40px;
}

.main-slider .swiper-slide-active .main-slider__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider__text {
  position: relative;
  display: block;
  font-size: 18px;
  color: rgba(var(--automart-white-rgb), .80);
  font-weight: 400;
  line-height: 28px;
  margin-top: 18px;
  margin-bottom: 43px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .main-slider__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider__btn-and-call {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__btn-and-call {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider__btn-box {
  position: relative;
  display: block;
}

.main-slider__btn-box .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.main-slider__btn-box .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.main-slider__btn-box .thm-btn:hover span,
.main-slider__btn-box .thm-btn:hover i {
  color: var(--automart-base);
}

.main-slider__call {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.main-slider__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background-color: var(--automart-base);
  border-radius: 50%;
  font-size: 24px;
  color: var(--automart-white);
}

.main-slider__call-content {
  position: relative;
  display: block;
  flex: 1;
}

.main-slider__call-content p {
  font-size: 18px;
  color: var(--automart-white);
}

.main-slider__call-content h5 {
  font-size: 20px;
  line-height: 1em;
  font-weight: 600;
  margin-top: 6px;
}

.main-slider__call-content h5 a {
  color: var(--automart-white);
}

.main-slider__call-content h5 a:hover {
  color: var(--automart-base);
}

.main-slider__img-box {
  position: absolute;
  bottom: 0;
  right: -120px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.main-slider__img-one-box {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
  transform: perspective(400px) rotateY(0deg) translateX(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__img-one-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider__img-one {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-slider__img-one img {
  width: 100%;
}

.main-slider__satisfied-customer {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--automart-white);
  padding: 27px 30px 23px;
  border-radius: var(--automart-bdr-radius);
  margin-top: 15px;
}

.main-slider__satisfied-customer-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.main-slider__satisfied-customer-count {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-slider__satisfied-customer-count h3 {
  font-size: 35px;
  color: var(--automart-black);
  font-weight: 700;
  font-family: var(--automart-font) !important;
  line-height: 1em !important;
}

.main-slider__satisfied-customer-count span {
  font-size: 35px;
  color: var(--automart-black);
  font-weight: 700;
  font-family: var(--automart-font);
  line-height: 1em;
}

.main-slider__satisfied-customer-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-slider__satisfied-customer-list li {
  position: relative;
  display: block;
}

.main-slider__satisfied-customer-list li+li {
  margin-left: -20px;
}

.main-slider__satisfied-customer-img {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--automart-white);
  overflow: hidden;
  z-index: 1;
}

.main-slider__satisfied-customer-img img {
  width: 100%;
  border-radius: 50%;
}

.main-slider__satisfied-customer-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  margin-top: 10px;
}


.main-slider__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0px auto 0px;
  padding: 0 30px 0;
  line-height: 0;
  height: 0;
  transform: translateY(-50%);
  z-index: 9999;
}

.main-slider__nav-prev,
.main-slider__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid rgba(var(--automart-white-rgb), .10);
  padding: 19px 0px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.main-slider__nav-prev:hover,
.main-slider__nav-next:hover {
  border-color: var(--automart-base);
  border: 1px solid rgba(var(--automart-white-rgb), 1);
}

.main-slider__nav-prev::before,
.main-slider__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  background-color: var(--automart-white);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.main-slider__nav-prev:hover::before,
.main-slider__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.main-slider__nav-prev span,
.main-slider__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.main-slider__nav-prev span i,
.main-slider__nav-next span i {
  position: relative;
  display: inline-block;
  color: rgba(var(--automart-white-rgb), .50);
  font-size: 18px;
  line-height: 18px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.main-slider__nav-prev:hover span i,
.main-slider__nav-next:hover span i {
  color: rgba(var(--automart-black-rgb), 1);
}

.main-slider__nav-prev span i.left {
  transform: rotate(0deg);
}



/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  z-index: 91;
}

.main-slider-two .swiper-slide {
  position: relative;
  background-color: var(--automart-black);
}

.main-slider-two__bg-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  z-index: -1;
}

.main-slider-two__bg-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.main-slider-two__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main-slider-two__shape-1 {
  position: absolute;
  top: -115px;
  left: 50px;
  opacity: .70;
  z-index: -1;
}

.main-slider-two__shape-1 img {
  width: auto;
}

.main-slider-two__shape-2 {
  position: absolute;
  bottom: -150px;
  left: 450px;
  opacity: .70;
  z-index: -1;
}

.main-slider-two__shape-2 img {
  width: auto;
}

.main-slider-two__round-text-box {
  position: absolute;
  top: 35px;
  right: 770px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--automart-base);
  z-index: 55;
}

.main-slider-two__round-text-box .inner {
  position: relative;
  display: block;
  width: 180px;
  height: 180px;
}

.main-slider-two__curved-circle {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  color: var(--automart-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--automart-font-two);
  letter-spacing: 0px;
  word-spacing: 2px;
  transform: rotate(0deg);
  height: 180px !important;
}

.main-slider-two__round-text-box .overlay-icon-box {
  position: absolute;
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px;
  background-color: var(--automart-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider-two__round-text-box:hover .overlay-icon-box {
  background-color: var(--automart-white);
}

.main-slider-two__round-text-box .overlay-icon-box a {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 45px;
}

.main-slider-two__round-text-box:hover .overlay-icon-box a {
  color: var(--automart-base);
}

.main-slider-two__review-box {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 50px;
  left: 900px;
  z-index: 55;
  background-color: rgba(var(--automart-base-rgb), 1);
  padding: 20px 20px 20px;
  border-radius: 20px;
}

.main-slider-two__review-box ul {
  position: relative;
  display: block;
}

.main-slider-two__review-box ul li {
  position: relative;
  display: block;
  float: left;
}

.main-slider-two__review-box ul li+li {
  margin-left: -20px;
}

.main-slider-two__review-box ul li .img-box {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--automart-base);
}

.main-slider-two__review-box ul li .img-box img {
  width: 100%;
}

.main-slider-two__review-box .text-box {
  position: relative;
  display: block;
  margin-left: 10px;
  flex: 1;
}

.main-slider-two__review-box .text-box h2 {
  color: var(--automart-white);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

.main-slider-two__review-box .text-box p {
  color: var(--automart-white);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.main-slider-two .container {
  position: relative;
  z-index: 30;
}

.main-slider-two__content {
  position: relative;
  display: block;
  padding-top: 150px;
  padding-bottom: 150px;
  z-index: 15;
}

.main-slider-two__sub-title {
  position: relative;
  display: block;
  font-size: 18px;
  color: var(--automart-white);
  font-weight: 500;
  line-height: 1em;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__sub-title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-two__title {
  position: relative;
  font-size: 60px;
  color: var(--automart-white);
  font-weight: 700;
  line-height: 1.3em;
  text-transform: capitalize;
  margin-top: 22px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-two__title img {
  position: relative;
  display: inline-block;
  height: 80px;
  width: 200px;
  border-radius: 40px;
}

.main-slider-two .swiper-slide-active .main-slider-two__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider-two__text {
  position: relative;
  display: block;
  font-size: 18px;
  color: rgba(var(--automart-white-rgb), .80);
  font-weight: 400;
  line-height: 28px;
  margin-top: 18px;
  margin-bottom: 43px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 1;
}

.main-slider-two .swiper-slide-active .main-slider-two__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider-two__btn-and-img-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__btn-and-img-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider-two__btn-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.main-slider-two__btn-box .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.main-slider-two__btn-box .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.main-slider-two__btn-box .thm-btn:hover span,
.main-slider-two__btn-box .thm-btn:hover i {
  color: var(--automart-base);
}

.main-slider-two__video-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 3;
}

.main-slider-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: var(--automart-white);
  background-color: rgba(var(--automart-base-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider-two__video-icon:hover {
  background-color: var(--automart-white);
  color: var(--automart-base);
}

.main-slider-two__video-link .ripple,
.main-slider-two__video-icon .ripple:before,
.main-slider-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider-two__video-title {
  font-size: 20px;
  color: var(--automart-white);
  font-weight: 700;
  line-height: 1em;
}

.main-slider-two__img-box {
  position: relative;
  display: block;
  max-width: 260px;
  width: 100%;
}

.main-slider-two__img-box img {
  width: 100%;
  border-radius: 20px;
}








.main-slider-two__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0px auto 0px;
  padding: 0 30px 0;
  line-height: 0;
  height: 0;
  transform: translateY(-50%);
  z-index: 9999;
}

.main-slider-two__nav-prev,
.main-slider-two__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid rgba(var(--automart-white-rgb), .10);
  padding: 19px 0px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.main-slider-two__nav-prev:hover,
.main-slider-two__nav-next:hover {
  border-color: var(--automart-base);
  border: 1px solid rgba(var(--automart-white-rgb), 1);
}

.main-slider-two__nav-prev::before,
.main-slider-two__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  background-color: var(--automart-white);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.main-slider-two__nav-prev:hover::before,
.main-slider-two__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.main-slider-two__nav-prev span,
.main-slider-two__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.main-slider-two__nav-prev span i,
.main-slider-two__nav-next span i {
  position: relative;
  display: inline-block;
  color: rgba(var(--automart-white-rgb), .50);
  font-size: 18px;
  line-height: 18px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.main-slider-two__nav-prev:hover span i,
.main-slider-two__nav-next:hover span i {
  color: rgba(var(--automart-black-rgb), 1);
}

.main-slider-two__nav-prev span i.left {
  transform: rotate(0deg);
}


/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  padding: 129px 0px 129px;
  z-index: 1;
}

.banner-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}

.banner-one__shape-one {
  position: absolute;
  top: -15px;
  left: -35px;
  opacity: .20;
  z-index: -1;
}

.banner-one__shape-one img {
  width: auto;
}

.banner-one__shape-two {
  position: absolute;
  bottom: -55px;
  right: -55px;
  opacity: .20;
  z-index: -1;
}

.banner-one__shape-two img {
  width: auto;
}

.banner-one__shape-three {
  position: absolute;
  bottom: 0;
  left: -140px;
  opacity: .20;
  z-index: -1;
}

.banner-one__shape-three img {
  width: auto;
}

.banner-one__left {
  position: relative;
  display: block;
  margin-top: 85px;
}

.banner-one__sub-title {
  position: relative;
  display: block;
  font-size: 18px;
  color: var(--automart-white);
  font-weight: 500;
  line-height: 1em;
  text-transform: uppercase;
  font-family: var(--automart-font-two);
}

.banner-one__title {
  position: relative;
  font-size: 65px;
  color: var(--automart-white);
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-top: 13px;
  margin-bottom: 15px;
}

.banner-one__text {
  color: rgba(var(--automart-white-rgb), .80);
}

.banner-one__top-btn {
  position: relative;
  display: block;
  margin-top: 42px;
}

.banner-one__top-btn .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.banner-one__top-btn .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.banner-one__top-btn .thm-btn:hover span,
.banner-one__top-btn .thm-btn:hover i {
  color: var(--automart-base);
}

.banner-one__right {
  position: relative;
  display: block;
  background-color: rgb(var(--automart-white-rgb), .05);
  padding: 35px 35px 35px;
  border-radius: 10px;
}

#contact-one_form {
  position: relative;
  display: block;
}

.banner-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.banner-one__input-box label {
  position: relative;
  display: block;
  color: var(--automart-white);
  font-size: 20px;
  line-height: 30px;
  font-family: var(--automart-font);
  font-weight: 600;
  margin-bottom: 13px;
}

.banner-one__input-box label span {
  color: var(--automart-base);
}

.banner-one__input-box input[type="text"],
.banner-one__input-box input[type="email"],
.banner-one__input-box textarea {
  position: relative;
  display: block;
  height: 60px;
  width: 100%;
  outline: none;
  color: var(--automart-white);
  font-size: 16px;
  font-family: var(--automart-font);
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: capitalize;
  border-radius: 10px;
  background-color: rgb(var(--automart-white-rgb), .10);
  border: none;
  padding: 0px 25px 0px;
  border-left: 2px solid rgb(var(--automart-white-rgb), .30);
  resize: none;
}

.banner-one__input-box textarea {
  height: 120px;
  border-radius: 10px;
  padding: 16px 25px 0px;
  border-left: 2px solid rgb(var(--automart-white-rgb), .30);
}

.banner-one__input-box .select-box {
  width: 100%;
}

.banner-one__input-box .nice-select {
  position: relative;
  display: block;
  height: 60px;
  width: 100%;
  outline: none;
  color: var(--automart-white);
  font-size: 16px;
  line-height: 60px;
  font-family: var(--automart-font);
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: capitalize;
  border-radius: 10px;
  background-color: rgb(var(--automart-white-rgb), .10);
  border: none;
  padding: 0px 25px 0px;
  border-left: 2px solid rgb(var(--automart-white-rgb), .30);
}

.banner-one__input-box .nice-select:after {
  position: absolute;
  top: 25px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--automart-white);
  border-right: 2px solid var(--automart-white);
  margin-top: 0px;
  z-index: 10;
}

.banner-one__input-box .nice-select .option {
  color: var(--automart-white);
}

.banner-one__input-box .nice-select .option.selected {
  font-weight: 500;
}

.banner-one__input-box .nice-select .list {
  background-color: var(--automart-base);
}

.banner-one__input-box .nice-select .option:hover,
.banner-one__input-box .nice-select .option.focus,
.banner-one__input-box .nice-select .option.selected.focus {
  color: var(--automart-white);
}

.banner-one__btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 12px;
}

.banner-one__btn-box .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.banner-one__btn-box .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.banner-one__btn-box .thm-btn:hover span,
.banner-one__btn-box .thm-btn:hover i {
  color: var(--automart-base);
}


/***
=============================================
Services One
=============================================
***/
.services-one {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 120px 0 100px;
  overflow: hidden;
  z-index: 1;
}

.services-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.services-one__inner {
  position: relative;
  display: block;
}

.services-one__services-list {
  position: relative;
  display: block;
}

.services-one__services-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--automart-white);
  border: 1px solid rgba(var(--automart-gray-rgb), .20);
  border-radius: 12px;
  padding: 19px 19px 19px;
  margin-bottom: 20px;
}

.services-one__icon-and-title-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 480px;
  width: 100%;
}

.services-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(var(--automart-gray-rgb), .10);
  border-radius: 12px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__services-list li:hover .services-one__icon {
  background-color: var(--automart-base);
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--automart-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__services-list li:hover .services-one__icon span {
  color: var(--automart-white);
}

.services-one__title-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.services-one__count {
  position: relative;
  display: inline-block;
}

.services-one__count::before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--automart-gray);
  font-family: var(--automart-font);
  counter-increment: count;
  content: "0"counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  top: 2px;
}

.services-one__count::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -6px;
  width: 2px;
  height: 13px;
  background-color: var(--automart-gray);
  transform: rotate(14deg);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.services-one__title a {
  color: var(--automart-black);
}

.services-one__services-list li:hover .services-one__title a {
  color: var(--automart-base);
}

.services-one__text-and-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 700px;
  width: 100%;
}

.services-one__text {
  font-size: 18px;
  line-height: 27px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__services-list li:hover .services-one__text {
  color: var(--automart-black);
}

.services-one__btn-box {
  position: relative;
  display: block;
  max-width: 152px;
  width: 100%;
}

.services-one__btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  color: var(--automart-gray);
  border: 2px solid rgba(var(--automart-gray-rgb), .10);
  padding: 15px 18px 15px;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  z-index: 1;
}

.services-one__btn-box a:hover {
  color: var(--automart-white);
  border: 2px solid transparent;
}

.services-one__btn-box a::after {
  content: "";
  background-color: var(--automart-base);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.services-one__btn-box a:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

/* hover image */
.services-one__services-list .hover-item__box {
  position: absolute;
  width: 300px;
  height: 250px;
  top: -106px;
  right: 0;
  pointer-events: none;
  transform: translate(-100%, -50%);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) rotate(0deg) !important;
  transition: all 0.5s ease-out;
  z-index: 10;
}

.services-one__services-list .hover-item__box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease-out;
}











/***
=============================================
Services Two
=============================================
***/
.services-two {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.services-two__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 49px;
}

.services-two__top .section-title {
  margin-bottom: 0px;
}

.services-two__top-btn {
  position: relative;
  display: block;
  bottom: 11px;
}

.services-two__inner {
  position: relative;
  display: block;
}

.services-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-two__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  margin-right: 30px;
}

.services-two__single-img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--automart-black-rgb), 0.6);
  opacity: 0;
  z-index: 1;
  content: "";
}

.services-two__single:hover .services-two__single-img::before {
  opacity: 1;
}

.services-two__single-img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.services-two__single:hover .services-two__single-img img {
  transform: scale(1);
}

.services-two__single-content {
  position: relative;
  display: block;
  margin-top: -135px;
  margin-left: 10px;
  z-index: 5;
}

.services-two__single-content-inner {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background: #f6f7f9;
  padding: 38px 30px 36px;
  border-radius: 10px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='401' height='256' viewBox='0 0 401 256'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZEAAAEACAYAAAByG0uxAAAQAElEQVR4AezbeYxeZb0H8DNT2iteboLXAF5RqNeVqhWQpFK3aohLoIIacQliVEiMWpUYQRJJakjcAn8YNSbiEnGn0YhLFI1aFR2DBekAZRGkdmqlKFrKbM4wHd+DXabtLO8773uec57n+Ux6mHc55/k9v8/vpF9maX8x58eKZes/ftUTfvWbm8+7YdMdH9p0051XOBi4B9wD7oE87oHy7/3rfnbD2jIHimLNEXNFRf8sbyz59rW/fNGdd//kF+982+uGVj7rKV955orll684afn7HQzcA+4B90Ae90D59/6q01Z8710XnDt0x51Xf/WqL1+7spUXS1rHQX8OCZHTj9x0012XvvgFJ//yiccfs/qoo44sli1bWvT19R10kScECHQh4FICEQj09fU98vf/fz/6UcUJJxz3+nPOWrN58NZ7PlIUpx85c/v9B56cfuStW77xyac/7QmXP7p10YHXPSJAgACB3AXKMHnS8v+7uMyJmUGyL0SWbL7lax8+8YRjL1yy5LCvVnK30z8BAgQItATKfChzYtNNX35/+bR1FI+EyJe++tMVxz/+sR8oTyhfbN5hRwQIECDQBIEyJ0488bjLv/uD61eX+2mFyHOXrjrtaR/yLaySw0GAAAECCwmU39o66RnLP1YUK5b1r//4Rccde8zR5y50kfcJEMhLQLcE5hN4zNFHrW7lx7H9q0558qlHHDHnrwDPt4b3CBAgQCBTgWVLjyhe+oLnrel/7P8+ZuXSpX6Ynul9oG0CBAgsSqD84uNR/7VkeX9/f9/RfX19i1rERYcIeEqAAIFMBFrZUfT3Lzm6P5N+tUmAAAECFQgIkQpQLUmAQDABhWoWECI1D0B5AgQIxCwgRGKenr0TIECgZgEhUvMA6iivJgECBHolIER6JWkdAgQIZCggRDIcupYJEAgtkG49IZLubHVGgACBygWESOXEChAgQCBdASGS7mxj78z+CRCIQECIRDAkWyRAgEBTBYRIUydjXwQIEAgtsIh6QmQRaC4hQIAAgf8ICJH/OPgvAQIECCxCQIgsAs0lBA4IeEQgbwEhkvf8dU+AAIGuBIRIV3wuJkCAQN4CdYRI3uK6J0CAQEICQiShYWqFAAECoQWESGhx9QjUIaAmgYoEhEhFsJYlQIBADgJCJIcp65EAAQIVCQiROWG9QYAAAQILCQiRhYS8T4AAAQJzCgiROWm8QYBAaAH14hMQIvHNzI4JECDQGAEh0phR2AgBAgTiExAi8c3s4B17RoAAgRoFhEiN+EoTIEAgdgEhEvsE7Z8AgdAC6s0QECIzMDwkQIAAgc4EhEhnXs4mQIAAgRkCQmQGhofVCViZAIE0BYRImnPVFQECBIIICJEgzIoQIEAgtECYekIkjLMqBAgQSFJAiCQ5Vk0RIEAgjIAQCeOsShwCdkmAQIcCQqRDMKcTIECAwAEBIXLAwiMCBAgQ6FCg6xDpsJ7TCRAgQCAhASGS0DC1QoAAgdACQiS0uHoEuhawAIHmCAiR5szCTggQIBCdgBCJbmQ2TIAAgeYI5BIizRG3EwIECCQkIEQSGqZWCBAgEFpAiIQWV49ALgL6zEJAiGQxZk0SIECgGgEhUo2rVQkQIJCFgBBp1JhthgABAnEJCJG45mW3BAgQaJSAEGnUOGyGAIHQAup1JyBEuvNzNQECBLIWECJZj1/zBAgQ6E5AiHTnl+fVuiZAgMBeASGyF8InAgQIEOhcQIh0buYKAgQIhBZobD0h0tjR2BgBAgSaLyBEmj8jOyRAgEBjBYRIY0djY90KuJ4AgeoFhEj1xioQIEAgWQEhkuxoNUaAAIHqBQ4OkerrqUCAAAECCQkIkYSGqRUCBAiEFhAiocXVI3CwgGcEohYQIlGPz+YJECBQr4AQqddfdQIECEQtEGWIRC1u8wQIEEhIQIgkNEytECBAILSAEAktrh6BKAVsmsDsAkJkdhevEiBAgEAbAkKkDSSnECBAgMDsAkJkdpdevGoNAgQIJC8gRJIfsQYJECBQnYAQqc7WygQIhBZQL7iAEAlOriABAgTSERAi6cxSJwQIEAguIESCkzetoP0QIEBg8QJCZPF2riRAgED2AkIk+1sAAAECoQVSqidEUpqmXggQIBBYQIgEBleOAAECKQkIkZSmmXIveiNAoJECQqSRY7EpAgQIxCEgROKYk10SIEAgtEBb9YRIW0xOIkCAAIHZBITIbCpeI0CAAIG2BIRIW0xOItCegLMI5CYgRHKbuH4JECDQQwEh0kNMSxEgQCA3gfpDJDdx/RIgQCAhASGS0DC1QoAAgdACQiS0uHoE6hewAwI9ExAiPaO0EAECBPITECL5zVzHBAgQ6JmAEGmT0mkECBAgcLiAEDncxCsECBAg0KaAEGkTymkECIQWUC8GASESw5TskQABAg0VECINHYxtESBAIAYBIRLDlNrfozMJECAQVECIBOVWjAABAmkJCJG05qkbAgRCC2ReT4hkfgNonwABAt0ICJFu9FxLgACBzAWESOY3QD3tq0qAQCoCQiSVSeqDAAECNQgIkRrQlSRAgEBogarqCZGqZK1LgACBDASESAZD1iIBAgSqEhAiVclaN34BHRAgsKCAEFmQyAkECBAgMJeAEJlLxusECBAgsKBAj0NkwXpOIECAAIGEBIRIQsPUCgECBEILCJHQ4uoR6LGA5QjUKSBE6tRXmwABApELCJHIB2j7BAgQqFMgzxCpU1xtAgQIJCQgRBIaplYIECAQWkCIhBZXj0CeArpOVECIJDpYbREgQCCEgBAJoawGAQIEEhUQIg0erK0RIECg6QJCpOkTsj8CBAg0WECINHg4tkaAQGgB9ToVECKdijmfAAECBPYLCJH9FB4QIECAQKcCQqRTMecfKuA5AQIZCwiRjIevdQIECHQrIES6FXQ9AQIEQgs0qJ4QadAwbIUAAQKxCQiR2CZmvwQIEGiQgBBp0DBspUoBaxMgUIWAEKlC1ZoECBDIRECIZDJobRIgQKAKgflCpIp61iRAgACBhASESELD1AoBAgRCCwiR0OLqEZhPwHsEIhMQIpENzHYJECDQJAEh0qRp2AsBAgQiE0ggRCITt10CBAgkJCBEEhqmVggQIBBaQIiEFlePQAICWiCwT0CI7JPwmQABAgQ6FhAiHZO5gAABAgT2CQiRfRJVf7Y+AQIEEhQQIgkOVUsECBAIJSBEQkmrQ4BAaAH1AggIkQDIShAgQCBVASGS6mT1RYAAgQACQiQAckwl7JUAAQKdCAiRTrScS4AAAQIHCQiRgzg8IUCAQGiBuOsJkbjnZ/cECBCoVUCI1MqvOAECBOIWECJxzy/X3eubAIGGCAiRhgzCNggQIBCjgBCJcWr2TIAAgdACc9QTInPAeJkAAQIEFhYQIgsbOYMAAQIE5hAQInPAeJlA9wJWIJC+gBBJf8Y6JECAQGUCQqQyWgsTIEAgfYGmhUj64jokQIBAQgJCJKFhaoUAAQKhBYRIaHH1CDRNwH4IdCEgRLrAcykBAgRyFxAiud8B+idAgEAXAkJkUXguIkCAAIFSQIiUCg4CBAgQWJSAEFkUm4sIEAgtoF4zBYRIM+diVwQIEIhCQIhEMSabJECAQDMFhEgz59KbXVmFAAECFQsIkYqBLU+AAIGUBYRIytPVGwECoQWyqydEshu5hgkQINA7ASHSO0srESBAIDsBIZLdyJvXsB0RIBCvgBCJd3Z2ToAAgdoFhEjtI7ABAgQIhBboXT0h0jtLKxEgQCA7ASGS3cg1TIAAgd4JCJHeWVopbQHdESAwQ2Dy4ali90Mjg0JkBoqHBAgQINCewNTUVDE8OvInIdKel7MIECBAYIbA+NjE0KsuvPjGSkNkRj0PCRAgQCARgampPcXWbfd9otg+MC5EEhmqNggQIBBKYNeu4aHVrz7/i61600KkpeAPgXQEdEKgWoHh4dGhH173u7XFjhtHy0pCpFRwECBAgMC8AtPT00X5FcjGX9/y5ne8/azBfScLkX0SPhMgQIDAYQJleIyMjhc7djzw489d/Z3V577mhb8qir7pYu+HECmKvRQ+ESBAYH6BqT17irHxfxXDI2PJH7t3j+z+29933XbnXUNXbh68e+1TX/W+s9dfcuH2YkaAFK0PIdJC8IcAAQLzCZTBsfP+fw4MDv7pPT+8buDZx550zv+kfjxu5ZrHn/jC15926slP+cAZL3nuD4otGyZmMxIis6l4jQCBagUiWb38Vdb77vvHwB9u/uPaJ71y3Zrnn/7MT53/hpffWvxt43Dyx87BkWLrxvHikK88ikM+hMghIJ4SIECgFJicfLi4d9vOq/7/+WedMd//iZfn5nwIkZynr3cCBGYVKL8Cuffev1658mVvfO++X2Wd9UQvFkIkmpvARgkQCCVQ/irryWdcsL7YPjAWqmasdYRIrJOzbwIEKhEof4g+eOs96x75mUclFdJaVIikNU/dECDQpcDY6MTQmRdc9JNyGcfCAkJkYSNnECCQkcB9Ox+4pvVtrPGMWu6qVSHSFZ+LCRBISWBicrIYHZu4udXT/n+R3XrszzwCQmQeHG8tQsAlBCIXmJiY2BV5C0G3L0SCcitGgACBtASESFrz1A0BAvkJ1NqxEKmVX3ECBAjELSBE4p6f3RMgQKBWASFSK7/idQmoS4BAbwSESG8crUKAAIEsBYRIlmPXNAECBHoj0H6I9KaeVQgQIEAgIQEhktAwtUKAAIHQAkIktLh6BNoXcCaBxgsIkcaPyAYJECDQXAEh0tzZ2BkBAgQaL5BciDRe3AYJECCQkIAQSWiYWiFAgEBoASESWlw9AskJaChnASGS8/T1ToAAgS4FhEiXgC4nQIBAzgJCpJ7pq0qAAIEkBIRIEmPUBAECBOoRECL1uKtKgEBoAfUqERAilbBalAABAnkICJE85qxLAgQIVCIgRCphTWVRfRAgQGB+ASEyv493CRAgQGAeASEyD463CBAgEFogtnpCJLaJ2S8BAgQaJCBEGjQMWyFAgEBsAkIktonZ7+ECXiFAoDYBIVIbvcIECBCIX0CIxD9DHRAgQCC0wP56QmQ/hQcECBAg0KlA/54907ump6c7vc75BAgQSE5gampPsWPn37cm11iFDfWP/2ty6+TkVIUlLE2AQCngaL5AGSLnr/uoEOlgVP0/v37zxonJyQ4ucSoBAgTSFBgZHh8ojrl/Is3uqumqf/0l197/4K7h31azvFUJECAQh0D5Vchfdz7w9WLLFiHSwchaP1jfMDF42z2Xjo6Od3BZoFOVIUCAQCCBhx4aHVr92gu+EKhcMmVaIVIUrz3707/ZNrTzsjKJk+lMIwQIEGhTYHhkrPjWtzeeU2wfGGvzEqftFXgkRIpiw9SpJ7/lyqGh+68SJHtlfCKQp0B2XY+0vgtz9z1/WXfRu7+5Obvme9Dw3hApVxoYW3HSG97bwrzCt7ZKDwcBAikLlP+04cEHR4Zu+P3tril24wAAAKpJREFU56xetf6z5f9Mp9xvVb3NCJGyxMDYKc+59IPf/9H1K7dt23lNmdATkw8XJXb5roMAAQIxC0zt2VOUf6ft3j2y+64/br/i6g3XPe/MV6z6ngBZ/FQPCZFyoQ1Tbz3vzFue8aZXn/eZz1/zxIHfDZ5925atl225feuVjtkNuHBxD8RxD9x++58v23TjHWsf96zXHH/Kc5588SXr3rijKPr8a+ti8R//BgAA///69sBWAAAABklEQVQDAE4bnP3DIkNGAAAAAElFTkSuQmCC' x='0' y='0' width='401' height='256'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='401' height='256' viewBox='0 0 401 256'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='401' height='256'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.services-two__single-content-inner h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-two__single-content-inner h3 a {
  color: var(--automart-black);
}

.services-two__single-content-inner h3 a:hover {
  color: var(--automart-base);
}

.services-two__single-content-inner p {
  margin: 0;
}

.services-two__single-content-inner .btn-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.services-two__single-content-inner .btn-box a {
  color: var(--automart-base);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--automart-font);
}

.services-two__single-content-inner .btn-box a:hover {
  color: var(--automart-black);
}

.services-two__single-content-inner .btn-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  top: 2px;
  padding-left: 4px;
}

.services-two__single-content-btn {
  position: absolute;
  bottom: -7px;
  right: 0px;
  z-index: 5;
}

.services-two__single-content-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--automart-black);
  overflow: hidden;
  border-radius: 50%;
  z-index: 1;
}

.services-two__single-content-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--automart-base);
  transform: scale(0.7);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.services-two__single-content-btn a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.services-two__single-content-btn a span:before {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 20px;
  line-height: 20px;
}

/*=== Services Two Nav ===*/
.services-two__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  margin: 30px auto 0px;
  z-index: 9999;
}

.services-two__nav-prev,
.services-two__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.services-two__nav-prev:hover,
.services-two__nav-next:hover {
  border-color: var(--automart-base);
}

.services-two__nav-prev::before,
.services-two__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  background-color: var(--automart-base);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.services-two__nav-prev:hover::before,
.services-two__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.services-two__nav-prev span,
.services-two__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.services-two__nav-prev span i,
.services-two__nav-next span i {
  position: relative;
  display: inline-block;
  color: var(--automart-black);
  font-size: 18px;
  line-height: 18px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.services-two__nav-prev:hover span i,
.services-two__nav-next:hover span i {
  color: var(--automart-white);
}

.services-two__nav-prev span i.left {
  transform: rotate(0deg);
}


/***
=============================================
     About One
=============================================
***/

.about-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 120px 0px 0px;
  z-index: 1;
}

.about-one__img {
  position: relative;
  display: block;
  padding-bottom: 147px;
  padding-right: 142px;
}

.about-one__img-img1 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='488' height='424' viewBox='0 0 488 424'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='488' height='424'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='488' height='424' viewBox='0 0 488 424'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='488' height='424'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.about-one__img-img1 img,
.about-one__img-img2 img {
  width: 100%;
}

.about-one__img-img2 {
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 20px;
}

.about-one__img-img1::before,
.about-one__img-img2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background-color: var(--automart-base);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.about-one__img-img1:hover::before,
.about-one__img-img2:hover::before {
  opacity: .5;
}

.about-one__img-img1 img,
.about-one__img-img2 img {
  width: 100%;
  filter: saturate(0.5);
  transform: scale3d(1, 1, 1);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.about-one__img-img1:hover img,
.about-one__img-img2:hover img {
  filter: saturate(1.0);
  transform: scale(1.05) rotate(0deg);
}

.about-one__img-exprience {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 370px;
  width: 100%;
  text-align: center;
  border-radius: var(--automart-bdr-radius);
  background-color: var(--automart-base);
  padding: 25px 0px 27px;
}

.about-one__img-exprience-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-one__img-exprience-count h3 {
  color: var(--automart-white);
  font-size: 50px;
  line-height: 1.0em;
  font-family: var(--automart-font-two);
  font-weight: 600;
}

.about-one__img-exprience-count span.plus {
  color: var(--automart-white);
  font-size: 50px;
  line-height: 1.0em;
  font-family: var(--automart-font-two);
  font-weight: 600;
}

.about-one__img-exprience-text {
  position: relative;
  display: block;
}

.about-one__img-exprience-text h3 {
  color: var(--automart-white);
  font-size: 20px;
  line-height: 28px;
  font-family: var(--automart-font-two);
  font-weight: 600;
}

.about-one__img-title {
  position: absolute;
  top: 0;
  right: 35px;
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
  text-align: end;
}

.about-one__img-title h2 {
  color: rgb(var(--automart-black-rgb), .1);
  font-size: 34px;
  line-height: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
}

.about-one__content {
  position: relative;
  display: block;
}

.about-one__content .section-title {
  margin-bottom: 17px;
}

.about-one__content-text {
  position: relative;
  display: block;
}

.about-one__content-text p {
  margin: 0;
}

.about-one__content-top-list {
  position: relative;
  display: block;
  margin-top: 36px;
}

.about-one__content-top-item {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__content-top-item-icon {
  position: relative;
  display: inline-block;
  color: var(--automart-base);
  font-size: 47px;
  line-height: 47px;
  transition: all 300ms linear;
  transition-delay: 0.1s;
}

.about-one__content-top-item:hover .about-one__content-top-item-icon {
  transform: scale(1.05) rotateY(180deg);
}

.about-one__content-top-item-text {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.about-one__content-top-item-text h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-one__content-top-item-text p {
  margin: 0;
}

.about-one__content-bdr {
  position: relative;
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgb(var(--automart-black-rgb), .1);
  margin-top: 12px;
}

.about-one__content-bottom-list {
  position: relative;
  display: block;
  margin-top: 13px;
}

.about-one__content-bottom-item {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__content-bottom-item.two {
  margin-top: 15px;
}

.about-one__content-bottom-item i {
  color: var(--automart-base);
  font-size: 13px;
  line-height: 13px;
}

.about-one__content-bottom-item p {
  color: var(--automart-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-left: 15px;
  flex: 1;
}

.about-one__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 37px;
}

.about-one__content-bottom-btn {
  position: relative;
  display: block;
  line-height: 0;
}

.about-one__content-bottom-phn {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 30px;
}

.about-one__content-bottom-phn-img {
  position: relative;
  display: block;
  padding-right: 16px;
}

.about-one__content-bottom-phn-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.about-one__content-bottom-phn-img-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--automart-base);
  border: 3px solid var(--automart-white);
  z-index: 3;
}

.about-one__content-bottom-phn-img-icon i {
  color: var(--automart-white);
  font-size: 15px;
  line-height: 15px;
}

.about-one__content-bottom-phn-text {
  position: relative;
  display: block;
  margin-left: 16px;
  flex: 1;
}

.about-one__content-bottom-phn-text p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

.about-one__content-bottom-phn-text h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.about-one__content-bottom-phn-text h3 a {
  color: var(--automart-black);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.about-one__content-bottom-phn-text h3 a:hover {
  color: var(--automart-base);
}


/***
=============================================
     Shop One
=============================================
***/
.shop-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.shop-one__single {
  position: relative;
  display: block;
}

.shop-one__img-box {
  position: relative;
  display: block;
}

.shop-one__offer {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: var(--automart-white);
  border-radius: 10px;
  padding: 11px 17px 11px;
}

.shop-one__offer p {
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  color: var(--automart-black);
}

.shop-one__icon-box {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 5;
}

.shop-one__icon-box li {
  position: relative;
  display: block;
}

.shop-one__icon-box li+li {
  margin-left: 8px;
}

.shop-one__icon-box li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--automart-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--automart-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-one__icon-box li a:hover {
  color: var(--automart-white);
  background-color: var(--automart-base);
}

.shop-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--automart-bdr-radius);
  border-bottom-left-radius: 0;
}

.shop-one__img img {
  width: 100%;
  border-radius: var(--automart-bdr-radius);
  border-bottom-left-radius: 0;
  transform: scale3d(1, 1, 1);
  transition: all 500ms ease;
}

.shop-one__single:hover .shop-one__img img {
  transform: scale(1.01) rotate(0deg);
}

.shop-one__content {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-right: 50px;
  padding: 10px 20px 10px;
}

.shop-one__rating {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.shop-one__rating span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #f8ae0d;
}

.shop-one__rating span:last-child {
  color: var(--automart-white);
}

.shop-one__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-top: 12px;
  margin-bottom: 2px;
}

.shop-one__title a {
  color: var(--automart-white);
}

.shop-one__title a:hover {
  color: var(--automart-base);
}

.shop-one__price {
  color: var(--automart-white);
  font-weight: 500;
}

.shop-one__price del {
  margin-left: 15px;
}

.shop-one__arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 2;
  transform: translateY(-50%);
}

.shop-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--automart-white);
  box-shadow: 0 0 15px 4px rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  font-size: 20px;
  color: var(--automart-black);
}

.shop-one__arrow a:hover {
  background-color: var(--automart-base);
  color: var(--automart-white);
}

.shop-one__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  margin: 60px auto 0px;
  z-index: 9999;
}

.shop-one__nav-prev,
.shop-one__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.shop-one__nav-prev:hover,
.shop-one__nav-next:hover {
  border-color: var(--automart-base);
}

.shop-one__nav-prev::before,
.shop-one__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  background-color: var(--automart-base);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.shop-one__nav-prev:hover::before,
.shop-one__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.shop-one__nav-prev span,
.shop-one__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.shop-one__nav-prev span i,
.shop-one__nav-next span i {
  position: relative;
  display: inline-block;
  color: var(--automart-black);
  font-size: 18px;
  line-height: 18px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.shop-one__nav-prev:hover span i,
.shop-one__nav-next:hover span i {
  color: var(--automart-white);
}

.shop-one__nav-prev span i.left {
  transform: rotate(0deg);
}


/***
=============================================
     Choose One
=============================================
***/

.choose-one {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--automart-black);
  padding: 120px 0px 120px;
  z-index: 1;
}

.choose-one__shape1 {
  position: absolute;
  top: 0;
  right: 0;
}

.choose-one__shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.choose-one__shape3 {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 200px;
  opacity: .1;
  background-repeat: no-repeat;
  animation: slide 30s linear infinite;
  -webkit-animation: slide 30s linear infinite;
  z-index: -1;
}

@keyframes slide {
  from {
    background-position: 1920px 0px;
  }

  to {
    background-position: 0px 0px;
  }
}

@-webkit-keyframes slide {
  from {
    background-position: 1920px 0px;
  }

  to {
    background-position: 0px 0px;
  }
}

.choose-one__shape1 img,
.choose-one__shape2 img,
.choose-one__shape3 img {
  width: auto;
}

.choose-one .row {
  align-items: flex-end;
}

.choose-one .section-title {
  margin-bottom: 13px;
}

.choose-one .section-title__tagline {
  color: var(--automart-white);
}

.choose-one .section-title__tagline-box:before,
.choose-one .section-title__tagline-box::after {
  background: var(--automart-white);
}

.choose-one .section-title__title {
  color: var(--automart-white);
}

.choose-one__content {
  position: relative;
  display: block;
}

.choose-one__content-text {
  position: relative;
  display: block;
}

.choose-one__content-text p {
  color: var(--automart-white);
}

.choose-one__content-middle {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 37px;
}

.choose-one__content-middle-left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.choose-one__content-middle-left-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--automart-white);
  color: var(--automart-base);
  font-size: 32px;
  line-height: 32px;
}

.choose-one__content-middle-left-text {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.choose-one__content-middle-left-text h3 {
  color: var(--automart-white);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.choose-one__content-middle-right {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 30px;
  padding-left: 30px;
}

.choose-one__content-middle-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 50px;
  background-color: var(--automart-base);
}

.choose-one__content-middle-right p {
  color: var(--automart-white);
}

.choose-one__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.choose-one__content-btn {
  position: relative;
  display: block;
  line-height: 0;
}

.choose-one__content-btn .thm-btn:hover span,
.choose-one__content-btn .thm-btn:hover i {
  color: var(--automart-black);
}

.choose-one__content-btn .thm-btn span::before {
  background-color: var(--automart-white);
}

.choose-one__content-btn .thm-btn i::after {
  background-color: var(--automart-white);
}

.choose-one__content-right {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 20px;
}

.choose-one__content-right-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.choose-one__content-right-img img {
  width: 100%;
}

.choose-one__content-right-text {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.choose-one__content-right-text p {
  color: var(--automart-white);
  font-size: 18px;
  font-weight: 500;
}

.choose-one__content-right-text span {
  color: var(--automart-white);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.choose-one__right {
  position: relative;
  display: block;
}

.choose-one__right-img {
  position: absolute;
  bottom: -120px;
  right: 50px;
}

.choose-one__right-time {
  position: relative;
  display: block;
  max-width: 300px;
  margin-left: auto;
}

.choose-one__right-time-inner {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--automart-white);
  border-radius: 5px;
  padding: 24px 20px 24px;
  padding-right: 10px;
}

.choose-one__right-time-icon {
  position: relative;
  display: block;
  color: var(--automart-base);
  font-size: 52px;
  line-height: 0px;
}

.choose-one__right-time-text {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.choose-one__right-time-text h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.choose-one__right-time-text p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}



/***
=============================================
     Scroling Text One
=============================================
***/

.sliding-text-one {
  position: relative;
  display: block;
  background-color: var(--automart-base);
  padding: 33.5px 0px 33.5px;
  z-index: 1;
}

.sliding-text-one__wrap {
  position: relative;
  display: block;
}

.sliding-text-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: fit-content;
}

.sliding-text-one__list li {
  position: relative;
  display: block;
  float: left;
  margin-right: 35px;
}

.sliding-text-one__list li img {
  width: auto;
}

.sliding-text-one__title {
  position: relative;
  display: block;
  color: var(--automart-white);
  font-size: 50px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: var(--automart-font-two);
}



/***
=============================================
     Process One
=============================================
***/

.process-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 120px 0px 90px;
  z-index: 1;
}

.process-one__single {
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.process-one__single-bdr1 {
  position: absolute;
  top: -32px;
  right: 0;
  bottom: 0;
  border-right: 1px dashed rgb(var(--automart-black-rgb), .4);
  transform: rotate(58deg);
  height: 350px;
}

.process-one__single-bdr2 {
  position: absolute;
  top: -50px;
  right: 0;
  bottom: 0;
  border-right: 1px dashed rgb(var(--automart-black-rgb), .4);
  transform: rotate(-57deg);
  height: 350px;
}

.process-one__single-content {
  position: relative;
  display: block;
  text-align: center;
}

.process-one__single-step {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  background-color: var(--automart-base);
  padding: 7px 22px 7px;
}

.process-one__single-step p {
  color: var(--automart-white);
  font-size: 18px;
  font-weight: 500;
}

.process-one__single--instyle2 .process-one__single-step {
  margin-top: 25px;
}

.process-one__single-text {
  position: relative;
  display: block;
  margin: 28px 0px 22px;
}

.process-one__single--instyle2 .process-one__single-text {
  margin: 28px 0px 0px;
}

.process-one__single-text h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 7px;
}

.process-one__single-text p {
  margin: 0;
}

.process-one__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0px auto 0px;
  border-radius: 50%;
  background-color: var(--automart-white);
  border: 1px dashed rgb(var(--automart-black-rgb), .4);
}

.process-one__single-icon i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--automart-white);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  color: var(--automart-base);
  font-size: 35px;
  line-height: 35px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.process-one__single:hover .process-one__single-icon i {
  color: var(--automart-white);
  background-color: var(--automart-base);
}



/***
=============================================
     Team One
=============================================
***/

.team-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 0px 0px 120px;
  z-index: 1;
}

.team-one__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.team-one__top .section-title {
  margin-bottom: 0px;
}

.team-one__top-btn {
  position: relative;
  display: block;
  top: -10px;
}

.team-one__inner {
  position: relative;
  display: block;
}

.team-one__single {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  padding: 20px 0px 20px;
  z-index: 1;
}

.team-one__single__bg {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0px;
  background-color: #f6f7f9;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  width: calc((100% + 80px) / 2);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  overflow: hidden;
  z-index: -1;
}

.team-one__single__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: var(--automart-base);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.team-one__single:hover .team-one__single__bg::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: left center;
}

.team-one__single-content {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 270px;
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
  background-color: var(--automart-white);
  border-top: 2px solid var(--automart-black);
  padding: 40px 13px 0px;
  padding-left: 14px;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.team-one__single:hover .team-one__single-content {
  background-color: rgb(0, 0, 0, .2);
  border-color: var(--automart-white);
}

.team-one__single-content-inner {
  position: relative;
  display: block;
}

.team-one__single-content-inner p {
  color: var(--automart-black);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.team-one__single-content-inner h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.team-one__single-content-inner h3 a {
  color: var(--automart-black);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.team-one__single:hover .team-one__single-content-inner p,
.team-one__single:hover .team-one__single-content-inner h3 a {
  color: var(--automart-white);
}

.team-one__single-content-inner h3 a:hover {
  color: var(--automart-base);
}

.team-one__single-img {
  position: relative;
  display: block;
  padding: 5px 0px 5px;
  padding-right: 10px;
  margin-left: 20px;
}

.team-one__single-img-bdr {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--automart-base);
}

.team-one__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.team-one__single-img-inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background-color: var(--automart-black);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.team-one__single:hover .team-one__single-img-inner::before {
  opacity: .7;
}

.team-one__single-img-inner img {
  width: 100%;
  filter: saturate(0.5);
  transform: scale3d(1, 1, 1);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.team-one__single:hover .team-one__single-img-inner img {
  filter: saturate(1.0);
  transform: scale(1.05) rotate(0deg);
}

.team-one__single-img-social {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  z-index: 1;
}

.team-one__single-img-social ul {
  position: relative;
  display: block;
}

.team-one__single-img-social ul li {
  position: relative;
  display: block;
}

.team-one__single-img-social ul li.one,
.team-one__single-img-social ul li.four {
  right: 35px;
}

.team-one__single-img-social ul li.two {
  right: 2px;
}

.team-one__single-img-social ul li.three {
  right: 0;
}

.team-one__single-img-social ul li+li {
  margin-top: 30px;
}

.team-one__single-img-social ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--automart-black);
  transform: scale(0);
  color: var(--automart-white);
  font-size: 14px;
  line-height: 14px;
  transition: all 300ms linear;
  transition-delay: .1s;
}

.team-one__single-img-social ul li a:hover {
  color: var(--automart-white);
  background-color: var(--automart-base);
}

.team-one__single:hover .team-one__single-img-social ul li a {
  transform: scale(1);
}

/*=== Team One Nav ===*/

.team-one__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  margin: 60px auto 0px;
  z-index: 9999;
}

.team-one__nav-prev,
.team-one__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.team-one__nav-prev:hover,
.team-one__nav-next:hover {
  border-color: var(--automart-base);
}

.team-one__nav-prev::before,
.team-one__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  background-color: var(--automart-base);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.team-one__nav-prev:hover::before,
.team-one__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.team-one__nav-prev span,
.team-one__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.team-one__nav-prev span i,
.team-one__nav-next span i {
  position: relative;
  display: inline-block;
  color: var(--automart-black);
  font-size: 18px;
  line-height: 18px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.team-one__nav-prev:hover span i,
.team-one__nav-next:hover span i {
  color: var(--automart-white);
}

.team-one__nav-prev span i.left {
  transform: rotate(0deg);
}



/***
=============================================
     CTA One
=============================================
***/

.cta-one {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--automart-black);
  padding: 114px 0px 114px;
  z-index: 1;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: .6;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
}

.cta-one__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(10, 20, 75, 0.95) 40%, rgba(10, 20, 75, 0) 100%);
}

.cta-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .70;
  z-index: -1;
}

.cta-one__shape-1 img {
  width: auto;
}

.cta-one__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-one__content-left {
  position: relative;
  display: block;
}

.cta-one__content-left-top {
  position: relative;
  display: block;
}

.cta-one__content-left-top h2 {
  color: rgb(var(--automart-white-rgb), .1);
  font-size: 75px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.cta-one__content-left-bottom {
  position: relative;
  display: block;
}

.cta-one__content-left-bottom-title1 {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 33px;
}

.cta-one__content-left-bottom-title1 h2 {
  color: var(--automart-white);
  font-size: 75px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.cta-one__content-left-bottom-title1 img {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: 23px;
  border-radius: 30px;
}

.cta-one__content-left-bottom-title2 {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

.cta-one__content-left-bottom-title2 p {
  color: var(--automart-white);
}

.cta-one__content-left-bottom-title2 h2 {
  color: var(--automart-white);
  font-size: 75px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
  margin-left: 35px;
}

.cta-one__video-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 3;
}

.cta-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 25px;
  color: var(--automart-white);
  background-color: rgba(var(--automart-base-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.cta-one__video-icon:hover {
  background-color: var(--automart-white);
  color: var(--automart-base);
}

.cta-one__video-link .ripple,
.cta-one__video-icon .ripple:before,
.cta-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.cta-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.cta-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.cta-one__video-title {
  font-size: 20px;
  color: var(--automart-white);
  font-weight: 700;
  line-height: 1em;
}

/*==============================================
    Testimonial One
===============================================*/
.testimonial-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0px 120px;
  z-index: 1;
}

.testimonial-one__shpae-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .50;
  z-index: -1;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  border-radius: var(--automart-bdr-radius);
  padding: 25px 30px 30px;
  z-index: 1;
}

.testimonial-one__quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.testimonial-one__quote i {
  position: relative;
  display: inline-block;
  font-size: 90px;
  opacity: .10;
}

.testimonial-one__client-info-outer {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
  width: 65px;
  overflow: hidden;
  border-radius: 50%;
}

.testimonial-one__client-img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-one__client-content {
  position: relative;
  display: block;
  flex: 1;
}

.testimonial-one__client-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 2px;
}

.testimonial-one__client-content h3 a {
  color: var(--automart-black);
}

.testimonial-one__client-content h3 a:hover {
  color: var(--automart-base);
}

.testimonial-one__client-review {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.testimonial-one__client-review span {
  font-size: 15px;
  color: #f8ae0d;
}


.testimonial-one__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  margin: 40px auto 0px;
  z-index: 10;
}

.testimonial-one__nav-prev,
.testimonial-one__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.testimonial-one__nav-prev:hover,
.testimonial-one__nav-next:hover {
  border-color: var(--automart-base);
}

.testimonial-one__nav-prev::before,
.testimonial-one__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  background-color: var(--automart-base);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.testimonial-one__nav-prev:hover::before,
.testimonial-one__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.testimonial-one__nav-prev span,
.testimonial-one__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.testimonial-one__nav-prev span i,
.testimonial-one__nav-next span i {
  position: relative;
  display: inline-block;
  color: var(--automart-black);
  font-size: 18px;
  line-height: 18px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.testimonial-one__nav-prev:hover span i,
.testimonial-one__nav-next:hover span i {
  color: var(--automart-white);
}

.testimonial-one__nav-prev span i.left {
  transform: rotate(0deg);
}

/*==============================================
    FAQ One Start
===============================================*/
.faq-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 20px;
}

.faq-one__left .section-title {
  margin-bottom: 18px;
}

.faq-one__left-text {
  margin-bottom: 28px;
}

.faq-one__img {
  position: relative;
  display: block;
}

.faq-one__img img {
  width: 100%;
  border-radius: 10px;
}

.faq-one__right {
  position: relative;
  display: block;
}

.faq-one__right .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background: var(--automart-white);
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right .faq-one-accrodion .accrodion.active {
  border: 1px solid rgba(var(--automart-black-rgb), .15);
  background: var(--automart-white);
}

.faq-one__right .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 15px 22px 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one__right .faq-one-accrodion .accrodion.active .accrodion-title {
  background-color: var(--automart-base);
}

.faq-one__right .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--automart-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--automart-white);
}

.faq-one__right .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-one__right .faq-one-accrodion .accrodion-title h4::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  font-size: 17px;
  color: var(--automart-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--automart-base-rgb), 1);
}

.faq-one__right .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--automart-base);
  background-color: var(--automart-white);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one__right .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 5px;
}

.faq-one__right .faq-one-accrodion .accrodion-content p {
  margin: 0;
  font-weight: 500;
}

/*==============================================
    Contact Address
===============================================*/
.contact-address {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  padding: 120px 0px 0px;
  z-index: 3;
}

.contact-address:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--automart-white);
  z-index: 1;
}

.contact-address__map {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.contact-address__map img {
  width: auto;
}

.contact-address__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.contact-address__shape-1 img {
  width: auto;
}

.contact-address .section-title__title {
  color: var(--automart-white);
}

.contact-address__inner {
  position: relative;
  display: block;
  background-color: var(--automart-white);
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  z-index: 5;
}

.contact-address__inner ul li:nth-child(1) .contact-address__single {
  border-right: 1px solid rgba(var(--automart-black-rgb), .10);
}

.contact-address__inner ul li:nth-child(2) .contact-address__single {
  border-right: 1px solid rgba(var(--automart-black-rgb), .10);
}

.contact-address__single {
  position: relative;
  display: block;
  padding: 50px 30px 40px;
}

.contact-address__title-box {
  position: absolute;
  top: -22px;
  left: 30px;
  background-color: var(--automart-base);
  padding: 15px 40px 15px;
}

.contact-address__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  color: var(--automart-white);
}

.contact-address__title-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -13px;
  border-bottom: 22px solid var(--automart-base);
  border-left: 13px solid transparent;
}

.contact-address__phone-email-box {
  position: relative;
  display: block;
}

.contact-address__phone-email-box p {
  font-weight: 500;
}

.contact-address__phone-email-box p span {
  color: var(--automart-black);
}

.contact-address__phone-email-box p a {
  color: var(--automart-gray);
}

.contact-address__phone-email-box p a:hover {
  color: var(--automart-base);
}

.contact-address__workshop {
  position: relative;
  display: block;
  margin-top: 7px;
  margin-bottom: 7px;
}

.contact-address__workshop h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  font-family: var(--automart-font);
  margin-bottom: 7px;
}

.contact-address__workshop p {
  font-weight: 500;
}

.contact-address__hours {
  position: relative;
  display: block;
}

.contact-address__hours h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  font-family: var(--automart-font);
  margin-bottom: 7px;
}

.contact-address__hours p {
  font-weight: 500;
}

/*==============================================
    Project One
===============================================*/
.project-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.project-one__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 51px;
}

.project-one__top-left {
  position: relative;
  display: block;
}

.project-one__top-left .section-title {
  margin-bottom: 0;
}

.project-one__nav {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 10;
}

.project-one__nav-prev,
.project-one__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.project-one__nav-prev:hover,
.project-one__nav-next:hover {
  border-color: var(--automart-base);
}

.project-one__nav-prev::before,
.project-one__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  background-color: var(--automart-base);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.project-one__nav-prev:hover::before,
.project-one__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.project-one__nav-prev span,
.project-one__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.project-one__nav-prev span i,
.project-one__nav-next span i {
  position: relative;
  display: inline-block;
  color: var(--automart-black);
  font-size: 18px;
  line-height: 18px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.project-one__nav-prev:hover span i,
.project-one__nav-next:hover span i {
  color: var(--automart-white);
}

.project-one__nav-prev span i.left {
  transform: rotate(0deg);
}

.project-one__bottom {
  position: relative;
  display: block;
}

.project-one__bottom .container {
  max-width: 1640px;
}

.project-one__carousel {
  position: relative;
  display: block;
}

.project-one__single {
  position: relative;
  display: block;
}

.project-one__img-box {
  position: relative;
  display: block;
}

.project-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--automart-bdr-radius);
  z-index: 1;
}

.project-one__img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--automart-black-rgb), 0.6);
  border-radius: var(--automart-bdr-radius);
  opacity: 0;
  z-index: 1;
  content: "";
}

.project-one__single:hover .project-one__img::before {
  opacity: 1;
}

.project-one__img img {
  width: 100%;
  border-radius: var(--automart-bdr-radius);
  transition: .5s ease;
  transform: scale(1.05);
}

.project-one__single:hover .project-one__img img {
  transform: scale(1);
}

.project-one__content-box {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 2;
}

.project-one__single:hover .project-one__content-box {
  opacity: 1;
  transform: translateY(0px);
}

.project-one__content {
  position: relative;
  display: block;
  background-color: var(--automart-base);
  padding: 27px 30px 22px;
  padding-right: 70px;
  border-bottom-left-radius: var(--automart-bdr-radius);
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0 100%);
}

.project-one__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 10px;
}

.project-one__title a {
  color: var(--automart-white);
}

.project-one__title a:hover {
  color: var(--automart-black);
}

.project-one__sub-title {
  color: var(--automart-white);
}

.project-one__arrow {
  position: absolute;
  top: 15px;
  right: -20px;
  z-index: 2;
}

.project-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: var(--automart-black);
  border-radius: 50%;
  border: 10px solid var(--automart-base);
  color: var(--automart-white);
}

.project-one__arrow a:hover {
  background-color: var(--automart-white);
  color: var(--automart-base);
}

/*==============================================
    Contact One
===============================================*/
.contact-one {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  padding: 120px 0px 120px;
  z-index: 1;
}

.contact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .05;
  z-index: -1;
}

.contact-one .section-title__title {
  color: var(--automart-white);
}

.contact-one__left {
  position: relative;
  display: block;
}

.contact-one__info {
  position: relative;
  display: block;
}

.contact-one__info-list {
  position: relative;
  display: block;
  background-color: rgb(var(--automart-white-rgb), .05);
  padding: 60px 45px 60px;
  border-radius: 10px;
}

.contact-one__info-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: rgb(var(--automart-white-rgb), .03);
  border-left: 2px solid rgba(var(--automart-white-rgb), .30);
  padding: 30px 30px 30px;
  border-radius: 10px;
}

.contact-one__info-list li+li {
  margin-top: 25px;
}

.contact-one__info-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(var(--automart-white-rgb), .10);
  color: var(--automart-white);
  font-size: 22px;
  line-height: 22px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.contact-one__info-list li:hover .contact-one__info-icon {
  background-color: var(--automart-white);
  color: var(--automart-base);
}

.contact-one__info-text {
  position: relative;
  display: block;
  flex: 1;
}

.contact-one__info-text p {
  color: rgba(var(--automart-white-rgb), .80);
  font-weight: 400;
}

.contact-one__info-text h3 {
  color: var(--automart-white);
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
}

.contact-one__info-text h3 a {
  color: var(--automart-white);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.contact-one__info-text h3 a:hover {
  color: var(--automart-base);
}

.contact-one__right {
  position: relative;
  display: block;
  background-color: rgb(var(--automart-white-rgb), .05);
  padding: 65px 60px 65px;
  border-radius: 10px;
  margin-left: 30px;
  overflow: hidden;
}

#contact-one_form {
  position: relative;
  display: block;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.contact-one__input-box label {
  position: relative;
  display: block;
  color: var(--automart-white);
  font-size: 20px;
  line-height: 30px;
  font-family: var(--automart-font);
  font-weight: 600;
  margin-bottom: 13px;
}

.contact-one__input-box label span {
  color: var(--automart-base);
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"],
.contact-one__input-box textarea {
  position: relative;
  display: block;
  height: 65px;
  width: 100%;
  outline: none;
  color: var(--automart-white);
  font-size: 17px;
  font-family: var(--automart-font);
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: capitalize;
  border-radius: 10px;
  background-color: rgb(var(--automart-white-rgb), .10);
  border: none;
  padding: 0px 25px 0px;
  border-left: 2px solid rgb(var(--automart-white-rgb), .30);
  resize: none;
}

.contact-one__input-box textarea {
  height: 130px;
  border-radius: 10px;
  padding: 16px 25px 0px;
  border-left: 2px solid rgb(var(--automart-white-rgb), .30);
}

.contact-one__input-box .select-box {
  width: 100%;
}

.contact-one__input-box .nice-select {
  position: relative;
  display: block;
  height: 65px;
  width: 100%;
  outline: none;
  color: var(--automart-white);
  font-size: 17px;
  line-height: 60px;
  font-family: var(--automart-font);
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: capitalize;
  border-radius: 10px;
  background-color: rgb(var(--automart-white-rgb), .10);
  border: none;
  padding: 0px 25px 0px;
  border-left: 2px solid rgb(var(--automart-white-rgb), .30);
}

.contact-one__input-box .nice-select:after {
  position: absolute;
  top: 27px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--automart-white);
  border-right: 2px solid var(--automart-white);
  margin-top: 0px;
  z-index: 10;
}

.contact-one__input-box .nice-select .option {
  color: var(--automart-white);
}

.contact-one__input-box .nice-select .option.selected {
  font-weight: 500;
}

.contact-one__input-box .nice-select .list {
  background-color: var(--automart-base);
}

.contact-one__input-box .nice-select .option:hover,
.contact-one__input-box .nice-select .option.focus,
.contact-one__input-box .nice-select .option.selected.focus {
  color: var(--automart-white);
}

.contact-one__btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 12px;
}

.contact-one__btn-box .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.contact-one__btn-box .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.contact-one__btn-box .thm-btn:hover span,
.contact-one__btn-box .thm-btn:hover i {
  color: var(--automart-base);
}

/*==============================================
    Blog One
===============================================*/
.blog-one {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.blog-one__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 51px;
}

.blog-one__top .section-title {
  margin-bottom: 0;
}

.blog-one__top-btn {
  position: relative;
  display: block;
}

.blog-one__bottom {
  position: relative;
  display: block;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog-one__img::before {
  background: rgba(255, 255, 255, .3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.blog-one__single:hover .blog-one__img::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 600ms linear;
  transition: all 600ms linear;
}

.blog-one__img img {
  width: 100%;
  transform: scale(1.0);
  transition: all 1500ms ease;
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-one__date-and-author {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--automart-white);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 40px 6px;
  border-left: 1px solid rgba(var(--automart-black-rgb), .10);
  border-top-right-radius: 10px;
}

.blog-one__date {
  position: relative;
  display: block;
  background-color: var(--automart-base);
  padding: 12px 20px 10px;
  border-radius: 18px;
}

.blog-one__date p {
  font-size: 14px;
  line-height: 1em;
  font-weight: 500;
  color: var(--automart-white);
}

.blog-one__author {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.blog-one__author-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-one__author-icon span {
  font-size: 16px;
  color: var(--automart-base);
}

.blog-one__author-text {
  position: relative;
  display: block;
  flex: 1;
}

.blog-one__author-text p a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--automart-black);
}

.blog-one__author-text p a:hover {
  color: var(--automart-base);
}

.blog-one__content {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  border-top: 0;
  padding: 32px 25px 32px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog-one__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 15px;
}

.blog-one__title a {
  color: var(--automart-black);
}

.blog-one__title a:hover {
  color: var(--automart-base);
}

.blog-one__text {
  font-weight: 500;
}

/*==============================================
    CTA Two
===============================================*/
.cta-two {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--automart-black);
  padding: 110px 0px 110px;
  z-index: 1;
}

.cta-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}

.cta-two__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-two__title-box {
  position: relative;
  display: block;
}

.cta-two__sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
  color: var(--automart-white);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-two__title {
  color: var(--automart-white);
  font-size: 48px;
  line-height: 1.1em;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-two__btn {
  position: relative;
  display: block;
}

.cta-two__btn .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.cta-two__btn .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.cta-two__btn .thm-btn:hover span,
.cta-two__btn .thm-btn:hover i {
  color: var(--automart-base);
}


/*==============================================
    Site Footer
===============================================*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  overflow: hidden;
  z-index: 1;
}

.site-footer__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 0.02;
}

.site-footer__shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.site-footer__shape-1 img {
  width: auto;
}

.site-footer__shape-2 {
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: -1;
}

.site-footer__shape-2 img {
  width: auto;
}

.site-footer__top {
  position: relative;
  display: block;
}

.site-footer__top-inner {
  position: relative;
  display: block;
  padding: 111px 0 90px;
}

.footer-widget__about {
  position: relative;
  display: block;
}

.footer-widget__about-logo {
  position: relative;
  display: block;
}

.footer-widget__about-text {
  margin: 0;
  color: rgba(var(--automart-white-rgb), .80);
  font-weight: 500;
  padding-top: 27px;
  padding-bottom: 30px;
}

.footer-widget__newsletter-form-box {
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.footer-widget__newsletter-title {
  font-size: 24px;
  color: var(--automart-white);
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}

.footer-widget__newsletter-form {
  position: relative;
  display: block;
}

.footer-widget__newsletter-form-input-box {
  position: relative;
  display: block;
}

.footer-widget__newsletter-form-input-box input[type="email"] {
  font-size: 16px;
  height: 70px;
  width: 100%;
  background-color: rgba(var(--automart-white-rgb), .10);
  outline: none;
  border: none;
  color: #C4C6CA;
  font-weight: 500;
  border-radius: 10px;
  padding-right: 70px;
  padding-left: 30px;
  text-transform: none;
}

.footer-widget__newsletter-btn {
  border: none;
  position: absolute;
  top: 5px;
  bottom: 0;
  right: 5px;
  height: 60px;
  width: 60px;
  border-radius: 10px;
  font-size: 24px;
  color: var(--automart-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__newsletter-btn:hover {
  color: var(--automart-white);
  background-color: var(--automart-base);
}

.footer-widget__newsletter-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget__social {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: 1px solid rgba(var(--automart-white-rgb), .40);
  border-radius: 10px;
  font-size: 15px;
  color: var(--automart-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.footer-widget__social a:hover {
  color: var(--automart-base);
  border: 1px solid var(--automart-white);
}

.footer-widget__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--automart-white);
  transform: scale(0.5);
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.footer-widget__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.footer-widget__social a+a {
  margin-left: 5px;
}

.footer-widget__title {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--automart-white);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.footer-widget__title:before {
  content: "";
  height: 2px;
  width: 80px;
  background: rgba(var(--automart-white-rgb), .50);
  position: absolute;
  bottom: -14px;
  left: 0;
}

.footer-widget__title::after {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 30px;
  height: 6px;
  content: "";
  background: var(--automart-white);
}

.footer-widget__links {
  position: relative;
  display: block;
  margin-left: 80px;
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li+li {
  margin-top: 16px;
}

.footer-widget__links-list li a {
  color: rgba(var(--automart-white-rgb), .80);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: var(--automart-white);
}

.footer-widget__office {
  position: relative;
  display: block;
}

.footer-widget__office-list {
  position: relative;
  display: block;
}

.footer-widget__office-list li {
  position: relative;
  display: block;
}

.footer-widget__office-list li+li {
  margin-top: 44px;
}

.footer-widget__office-list li p {
  color: rgba(var(--automart-white-rgb), .60);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.footer-widget__office-list li h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}

.footer-widget__office-list li h5 a {
  color: var(--automart-white);
}

.footer-widget__office-list li h5 a:hover {
  color: var(--automart-base);
}

.footer-widget__services {
  position: relative;
  display: block;
  margin-left: 50px;
}

.site-footer__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--automart-white-rgb), .10);
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 28px;
}

.site-footer__copyright {
  position: relative;
  display: block;
}

.site-footer__copyright-text {
  color: rgba(var(--automart-white-rgb), .80);
}

.site-footer__copyright-text a {
  color: var(--automart-white);
  font-weight: 500;
}

.site-footer__copyright-text a:hover {
  color: var(--automart-base);
}

.site-footer__bottom-menu-box {
  position: relative;
  display: block;
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer__bottom-menu li+li {
  margin-left: 25px;
}

.site-footer__bottom-menu li a {
  position: relative;
  display: inline-block;
  color: rgba(var(--automart-white-rgb), .80);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
  color: var(--automart-white);
}

/*--------------------------------------------------------------
# Car Wash Category
--------------------------------------------------------------*/
.car-wash-category {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  z-index: 5;
}

.car-wash-category__wrap {
  position: relative;
  display: block;
  max-width: 1620px;
  width: 100%;
  margin: 0 auto 0;
  background: #F6F7F9;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
}

.car-wash-category__inner {
  position: relative;
  display: block;
  padding: 60px 0px 40px;
}

.car-wash-category__tab-box {
  position: relative;
  display: block;
}

.car-wash-category__tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.car-wash-category__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: block;
  padding: 0px 10px 0px;
  cursor: pointer;
  z-index: 1;
  flex: 0 0 20%;
  max-width: 20%;
  width: 100%;
}

.car-wash-category__tab-box .tab-buttons .tab-btn .tab-btn-content-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--automart-white);
  padding: 20px 20px 20px;
  border-radius: var(--automart-bdr-radius);
  z-index: 1;
}

.car-wash-category__tab-box .tab-buttons .tab-btn .tab-btn-content-box:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background: var(--automart-base);
  border-radius: var(--automart-bdr-radius);
  transition: all 0.3s ease;
  z-index: -1;
}

.car-wash-category__tab-box .tab-buttons .tab-btn.active-btn .tab-btn-content-box:before {
  height: 100%;
}

.car-wash-category__tab-box .tab-buttons .tab-btn .tab-btn-content-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
}

.car-wash-category__tab-box .tab-buttons .tab-btn .tab-btn-content-box .icon-box span {
  font-size: 40px;
  color: var(--automart-base);
  position: relative;
  display: inline-block;
}

.car-wash-category__tab-box .tab-buttons .tab-btn.active-btn .tab-btn-content-box .icon-box span {
  color: var(--automart-white);
}

.car-wash-category__tab-box .tab-buttons .tab-btn .tab-btn-content-box p {
  color: var(--automart-black);
  font-size: 18px;
  line-height: 1em;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--automart-font-two);
  transition: all 0.3s ease;
}

.car-wash-category__tab-box .tab-buttons .tab-btn.active-btn .tab-btn-content-box p {
  color: var(--automart-white);
}

.car-wash-category__tab-box .tabs-content {
  position: relative;
  display: block;
  margin-top: 30px;
  z-index: 1;
}

.car-wash-category__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: all 900ms ease;
  z-index: 10;
}

.car-wash-category__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.car-wash-category__content-box {
  position: relative;
  display: block;
}

.car-wash-category__form {
  position: relative;
  display: block;
}

.car-wash-category__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.car-wash-category__input-label {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: var(--automart-black);
  font-family: var(--automart-font-two);
  margin-bottom: 15px;
}

.car-wash-category__input-box .nice-select {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--automart-base);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--automart-white);
  display: block;
  font-weight: 400;
  border-radius: var(--automart-bdr-radius);
  line-height: 60px;
  float: none;
}

.car-wash-category__input-box .nice-select:after {
  position: absolute;
  top: 24px;
  right: 20px;
  border-bottom: 4px solid var(--automart-white);
  border-right: 4px solid var(--automart-white);
  margin-top: 0px;
  z-index: 10;
  border-left: 4px solid transparent;
  border-top: 4px solid transparent;
}

.car-wash-category__input-box.nice-select .option {
  color: var(--automart-white);
}

.car-wash-category__btn-box {
  position: relative;
  display: block;
  margin-top: 40px;
}


/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 240px 0px 120px;
  margin-top: -120px;
  z-index: 1;
}

.feature-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.feature-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.feature-one__inner {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  text-align: center;
  background-color: var(--automart-white);
  border-radius: 10px;
  padding: 30px 30px 70px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='411' height='336' viewBox='0 0 411 336'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZsAAAFQCAYAAABpt9OPAAAQAElEQVR4AezVPW5lSRUHcKv3QAgiBYkNsAFyIiLYAQnbYLaCREBAjiBBSCAEg2Q+RAMJEuk0Grl7ZHtG/Wy/5/PurY97quo3kj22z71V5/zOm/m/+dnPf/X93/7uLz/1xcBnwGfAZ8BnoMVn4D5n3nzj61/77re/9c2f+GLgM+Az4DPgM9DiM3CfM29u/EOAwOsCqgQIFAsIm2JCBxAgQIBAJCBsIiF1AgQIEIgEwrqwCYk8QIAAAQKlAsKmVND7BAgQIBAKCJuQyAOzC5iPAIH2AsKmvbEbCBAgsLyAsFn+IwCAAAECkUB5XdiUGzqBAAECBAIBYRMAKRMgQIBAuYCwKTd0Qm4B3REgkEBA2CRYghYIECAwu4CwmX3D5iNAgEAk0KEubDogu4IAAQKrCwib1T8B5idAgEAHAWHTAdkVLQWcTYDACALCZoQt6ZEAAQKDCwibwReofQIECEQCGerCJsMW9ECAAIHJBYTN5As2HgECBDIICJsMW9DDZQEVAgSmEBA2U6zREAQIEMgtIGxy70d3BAgQiASGqAubIdakSQIECIwtIGzG3p/uCRAgMISAsBliTfM2aTICBNYQEDZr7NmUBAgQOFRA2BzK73ICBAhEAnPUhc0cezQFAQIEUgsIm9Tr0RwBAgTmEBA2c+wx6xT6IkCAwIOAsHlg8I0AAQIEWgoIm5a6ziZAgEAksEhd2CyyaGMSIEDgSAFhc6S+uwkQILCIgLBZZNFtxnQqAQIErhMQNtc5eYoAAQIECgSETQGeVwkQIBAJqD8KCJtHB98JECBAoKGAsGmI62gCBAgQeBQQNo8Ovp8T8DcCBAhUEhA2lSAdQ4AAAQKXBYTNZRsVAgQIRALqVwoImyuhPEaAAAEC+wWEzX47bxIgQIDAlQLC5kqoGR8zEwECBHoJCJte0u4hQIDAwgLCZuHlG50AgUhAvZaAsKkl6RwCBAgQuCggbC7SKBAgQIBALQFhU0sy3zk6IkCAQBoBYZNmFRohQIDAvALCZt7dmowAgUhAvZuAsOlG7SICBAisKyBs1t29yQkQINBNQNh0o659kfMIECAwjoCwGWdXOiVAgMCwAsJm2NVpnACBSEA9j4CwybMLnRAgQGBaAWEz7WoNRoAAgTwCwibPLp524jcCBAhMJCBsJlqmUQgQIJBVQNhk3Yy+CBCIBNQHEhA2Ay1LqwQIEBhVQNiMujl9EyBAYCABYXPQslxLgACBlQSEzUrbNisBAgQOEhA2B8G7lgCBSEB9JgFhM9M2zUKAAIGkAsIm6WK0RYAAgZkEhE2bbTqVAAECBE4EhM0Jhh8JECBAoI2AsGnj6lQCBCIB9aUEhM1S6zYsAQIEjhEQNse4u5UAAQJLCQibXev2EgECBAhsERA2W7Q8S4AAAQK7BITNLjYvESAQCagTOBUQNqcafiZAgACBJgLCpgmrQwkQIEDgVEDYnGp89bN/EyBAgEBVAWFTldNhBAgQIHBOQNicU/E3AgQiAXUCmwSEzSYuDxMgQIDAHgFhs0fNOwQIECCwSWDJsNkk5GECBAgQKBYQNsWEDiBAgACBSEDYRELqBJYUMDSBugLCpq6n0wgQIEDgjICwOYPiTwQIECBQV2DGsKkr5DQCBAgQKBYQNsWEDiBAgACBSEDYRELqBGYUMBOBzgLCpjO46wgQILCigLBZcetmJkCAQGeBAcOms5DrCBAgQKBYQNgUEzqAAAECBCIBYRMJqRMYUEDLBLIJCJtsG9EPAQIEJhQQNhMu1UgECBDIJpAvbLIJ6YcAAQIEigWETTGhAwgQIEAgEhA2kZA6gXwCOiIwnICwGW5lGiZAgMB4AsJmvJ3pmAABAsMJdA+b4YQ0TIAAAQLFAsKmmNABBAgQIBAJCJtISJ1AdwEXEphPQNjMt1MTESBAIJ2AsEm3Eg0RIEBgPoHaYTOfkIkIECBAoFhA2BQTOoAAAQIEIgFhEwmpE6gt4DwCCwoImwWXbmQCBAj0FhA2vcXdR4AAgQUFNobNgkJGJkCAAIFiAWFTTOgAAgQIEIgEhE0kpE5go4DHCRB4KSBsXpr4CwECBAhUFhA2lUEdR4AAAQIvBZ6Gzcu6vxAgQIAAgWIBYVNM6AACBAgQiASETSSkTuCpgN8IENghIGx2oHmFAAECBLYJCJttXp4mQIAAgUjgTF3YnEHxJwIECBCoKyBs6no6jQABAgTOCAibMyj+tLKA2QkQaCEgbFqoOpMAAQIEnggImyccfiFAgACBSGBPXdjsUfMOAQIECGwSEDabuDxMgAABAnsEhM0eNe+MK6BzAgQOERA2h7C7lAABAmsJCJu19m1aAgQIRAJN6sKmCatDCRAgQOBUQNicaviZAAECBJoICJsmrA49SsC9BAjkFBA2OfeiKwIECEwlIGymWqdhCBAgEAkcUxc2x7i7lQABAksJCJul1m1YAgQIHCMgbI5xd+s+AW8RIDCogLAZdHHaJkCAwEgCwmakbemVAAECkUDSurBJuhhtESBAYCYBYTPTNs1CgACBpALCJuli1mzL1AQIzCogbGbdrLkIECCQSEDYJFqGVggQIBAJjFoXNqNuTt8ECBAYSEDYDLQsrRIgQGBUAWEz6uZG7FvPBAgsKyBsll29wQkQINBPQNj0s3YTAQIEIoFp68Jm2tUajAABAnkEhE2eXeiEAAEC0woIm2lX238wNxIgQOCSgLC5JOPvBAgQIFBNQNhUo3QQAQIEIoF168Jm3d2bnAABAt0EhE03ahcRIEBgXQFhs+7ut07ueQIECOwWEDa76bxIgAABAtcKCJtrpTxHgACBSED9ooCwuUijQIAAAQK1BIRNLUnnECBAgMBFAWFzkWa1gnkJECDQTkDYtLN1MgECBAh8KSBsvoTwLwIECEQC6vsFhM1+O28SIECAwJUCwuZKKI8RIECAwH4BYbPfbqw3dUuAAIEDBYTNgfiuJkCAwCoCwmaVTZuTAIFIQL2hgLBpiOtoAgQIEHgUEDaPDr4TIECAQEMBYdMQt+fR7iJAgEBmAWGTeTt6I0CAwCQCwmaSRRqDAIFIQP1IAWFzpL67CRAgsIiAsFlk0cYkQIDAkQLC5kj96+/2JAECBIYWEDZDr0/zBAgQGENA2IyxJ10SIBAJqKcWEDap16M5AgQIzCEgbObYoykIECCQWkDYpFiPJggQIDC3gLCZe7+mI0CAQAoBYZNiDZogQCASUB9bQNiMvT/dEyBAYAgBYTPEmjRJgACBsQWETY/9uYMAAQKLCwibxT8AxidAgEAPAWHTQ9kdBAhEAuqTCwibyRdsPAIECGQQEDYZtqAHAgQITC4gbCos2BEECBAg8LqAsHndR5UAAQIEKggImwqIjiBAIBJQX11A2Kz+CTA/AQIEOggImw7IriBAgMDqAsIm/gR4ggABAgQKBYRNIaDXCRAgQCAWEDaxkScIEIgE1AkEAsImAFImQIAAgXIBYVNu6AQCBAgQCASEzU0gpEyAAAECxQLCppjQAQQIECAQCQibSEidAIEbBARKBYRNqaD3CRAgQCAUEDYhkQcIECBAoFRg/rApFfI+AQIECBQLCJtiQgcQIECAQCQgbCIhdQLzC5iQQHMBYdOc2AUECBAgIGx8BggQIECgucDwYdNcyAUECBAgUCwgbIoJHUCAAAECkYCwiYTUCQwvYAACxwsIm+N3oAMCBAhMLyBspl+xAQkQIHC8QPawOV5IBwQIECBQLCBsigkdQIAAAQKRgLCJhNQJZBfQH4EBBITNAEvSIgECBEYXEDajb1D/BAgQGEDg4LAZQEiLBAgQIFAsIGyKCR1AgAABApGAsImE1AkcLOB6AjMICJsZtmgGAgQIJBcQNskXpD0CBAjMINA2bGYQMgMBAgQIFAsIm2JCBxAgQIBAJCBsIiF1Am0FnE5gCQFhs8SaDUmAAIFjBYTNsf5uJ0CAwBICRWGzhJAhCRAgQKBYQNgUEzqAAAECBCIBYRMJqRMoEvAyAQL3AsLmXsEXAQIECDQVEDZNeR1OgAABAvcCr4XNfd0XAQIECBAoFhA2xYQOIECAAIFIQNhEQuoEXhNQI0DgKgFhcxWThwgQIECgREDYlOh5lwABAgQigYe6sHlg8I0AAQIEWgoIm5a6ziZAgACBBwFh88DgG4HzAv5KgEAdAWFTx9EpBAgQIPCKgLB5BUeJAAECBCKB6+rC5jonTxEgQIBAgYCwKcDzKgECBAhcJyBsrnPy1JwCpiJAoJOAsOkE7RoCBAisLCBsVt6+2QkQIBAJVKoLm0qQjiFAgACBywLC5rKNCgECBAhUEhA2lSAdk1FATwQIZBEQNlk2oQ8CBAhMLCBsJl6u0QgQIBAJ9KoLm17S7iFAgMDCAsJm4eUbnQABAr0EhE0vaffUF3AiAQLDCAibYValUQIECIwrIGzG3Z3OCRAgEAmkqQubNKvQCAECBOYVEDbz7tZkBAgQSCMgbNKsQiPPBfxOgMA8AsJmnl2ahAABAmkFhE3a1WiMAAECkcA4dWEzzq50SoAAgWEFhM2wq9M4AQIExhEQNuPsarZOzUOAwEICwmahZRuVAAECRwkIm6Pk3UuAAIFIYKK6sJlomUYhQIBAVgFhk3Uz+iJAgMBEAsJmomXmGkU3BAgQ+CggbD5a+IkAAQIEGgkIm0awjiVAgEAksFJd2Ky0bbMSIEDgIAFhcxC8awkQILCSgLBZads1Z3UWAQIENggImw1YHiVAgACBfQLCZp+btwgQIBAJqJ8ICJsTDD8SIECAQBsBYdPG1akECBAgcCIgbE4w/PhRwE8ECBCoKSBsamo6iwABAgTOCgibsyzj/PHu7v3NZ+/+74vBEp+BDx8+JPqPUytbBITNFq2Ez969v7v5/R9uf/SLX/7mO74YzPwZ+PTTtz/+/PO7hP8VaukaAWFzjVLyZ96///C/H/7ge3/0xWDmz8Bn7979Pfl/itp7RUDYvIIzccloBAgQ6CogbLpyu4wAAQJrCgibNfduagIEIgH1qgLCpiqnwwgQIEDgnICwOafibwQIECBQVUDYVOXMcpg+CBAgkEtA2OTah24IECAwpYCwmXKthiJAIBJQ7ysgbPp6u40AAQJLCgibJdduaAIECPQVEDZ9vevc5hQCBAgMJiBsBluYdgkQIDCigLAZcWt6JkAgElBPJiBski1EOwQIEJhRQNjMuFUzESBAIJmAsEm2kPt2fBEgQGA2AWEz20bNQ4AAgYQCwibhUrREgEAkoD6agLAZbWP6JUCAwIACwmbApWmZAAECowkIm/4bcyMBAgSWExA2y63cwAQIEOgvIGz6m7uRAIFIQH06AWEz3UoNRIAAgXwCwibfTnREgACB6QSETfWVOpAAAQIEngsIm+cifidAgACB6gLCpjqpAwkQiATU1xMQNuvt3MQECBDoLiBsupO7kAABAusJCJutO/c8AQIECGwWEDabybxAgAABAlsFhM1WMc8TIBAJqBN4jA6ujgAAAH9JREFUISBsXpD4AwECBAjUFhA2tUWdR4AAAQIvBITNMxK/EiBAgEB9AWFT39SJBAgQIPBMQNg8A/ErAQKRgDqB7QLCZruZNwgQIEBgo8Cbf77976//9Od/fOJrTIPb239/cvu3/7zduHePExhO4P5zfvvXf/l/1YD/v77PmS8AAAD//4aEUbYAAAAGSURBVAMAU9xCrYFh9aQAAAAASUVORK5CYII=' x='0' y='0' width='411' height='336'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='411' height='336' viewBox='0 0 411 336'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='411' height='336'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.feature-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  background-color: var(--automart-base);
  margin: 0 auto 0;
  border-radius: 10px;
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--automart-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-one__single:hover .feature-one__icon span {
  transform: scale(0.9);
}

.feature-one__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-top: 29px;
  margin-bottom: 15px;
}

.feature-one__title a {
  color: var(--automart-black);
}

.feature-one__title a:hover {
  color: var(--automart-base);
}

.feature-one__text {
  font-weight: 500;
}

.feature-one__read-more {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
}

.feature-one__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  gap: 5px;
}

.feature-one__read-more a:hover {
  color: var(--automart-black);
}

.feature-one__bottom {
  position: relative;
  display: block;
  margin-top: 25px;
}

.feature-one__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-one__bottom-shape-1 {
  position: relative;
  display: block;
  width: 220px;
  height: 1px;
  border: 1px dashed var(--automart-black);
}

.feature-one__bottom-shape-1:before {
  content: "";
  position: absolute;
  top: -4px;
  right: -1px;
  height: 8px;
  width: 8px;
  background-color: var(--automart-black);
  border-radius: 50%;
}

.feature-one__bottom-shape-1.two:before {
  right: auto;
  left: -1px;
}

.feature-one__bottom-content-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-one__bottom-img-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.feature-one__bottom-img-list li {
  position: relative;
  display: block;
}

.feature-one__bottom-img-list li+li {
  margin-left: -18px;
}

.feature-one__bottom-img {
  position: relative;
  display: block;
  width: 66px;
  height: 66px;
  overflow: hidden;
  border-radius: 50%;
}

.feature-one__bottom-img img {
  width: 100%;
  border: 3px solid var(--automart-white);
  border-radius: 50%;
}

.feature-one__bottom-plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--automart-base);
  font-size: 30px;
  color: var(--automart-white);
  border: 3px solid var(--automart-white);
}

.feature-one__bottom-text {
  font-size: 24px;
  font-weight: 500;
  color: var(--automart-black);
  line-height: 1em;
}

/*--------------------------------------------------------------
# About Two 
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.about-two__shape-1 {
  position: absolute;
  bottom: 130px;
  right: 0;
  z-index: -1;
}

.about-two__shape-1 img {
  width: auto;
  animation: leftRight 4s ease-in-out infinite;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img img {
  width: 100%;
}

.about-two__img-two {
  position: absolute;
  bottom: 35px;
  right: -80px;
  border: 10px solid var(--automart-white);
}

.about-two__img-two img {
  width: auto;
}

.about-two__img-content {
  position: absolute;
  top: 30px;
  right: -70px;
  background-color: var(--automart-black);
  border: 10px solid var(--automart-white);
  max-width: 175px;
  width: 100%;
  text-align: center;
  padding: 0 0 20px;
}

.about-two__img-content-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  background-color: var(--automart-base);
  margin: 0 auto 0;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  font-size: 40px;
  color: var(--automart-white);
}

.about-two__img-content-text-1 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1em;
  color: var(--automart-base);
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-two__img-content-text-2 {
  font-size: 18px;
  font-weight: 500;
  color: var(--automart-white);
}

.about-two__right {
  position: relative;
  display: block;
}

.about-two__right .section-title {
  margin-bottom: 31px;
}

.about-two__icon-box {
  position: relative;
  display: block;
  margin-top: 31px;
  margin-bottom: 24px;
  padding-bottom: 33px;
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
}

.about-two__icon-box-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.about-two__icon-box-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about-two__icon-box-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__icon-box-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--automart-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-two__icon-box-list li:hover .icon span {
  transform: scale(0.9);
}

.about-two__icon-box-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.about-two__icon-box-list li .text h4 {
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 700;
}

.about-two__point-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.about-two__point-one {
  position: relative;
  display: block;
}

.about-two__point-one li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-two__point-one li+li {
  margin-top: 17px;
}

.about-two__point-one li .icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--automart-base);
}

.about-two__point-one li .text {
  position: relative;
  display: block;
  flex: 1;
}

.about-two__point-one li .text p {
  font-size: 18px;
  color: var(--automart-black);
  font-weight: 500;
}

.about-two__btn-and-call-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 45px;
}

.about-two__btn {
  position: relative;
  display: block;
}

.about-two__call-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-two__call-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  background-color: var(--automart-white);
  border-radius: 50%;
  font-size: 25px;
  color: var(--automart-base);
}

.about-two__call-box .content-box {
  position: relative;
  display: block;
  top: -4px;
  flex: 1;
}

.about-two__call-box .content-box p {
  font-weight: 500;
  margin-bottom: 5px;
}

.about-two__call-box .content-box h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
}

.about-two__call-box .content-box h4 a {
  color: var(--automart-black);
}

.about-two__call-box .content-box h4 a:hover {
  color: var(--automart-base);
}



/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  background: var(--automart-base);
  padding: 57px 0px 33px;
  z-index: 1;
}

.counter-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.counter-one__single-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-one__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(var(--automart-white-rgb), .2);
  border-radius: 50%;
  top: 3px;
  z-index: 1;
}

.counter-one__single-icon:before {
  position: absolute;
  top: 5px;
  left: 5px;
  bottom: 5px;
  right: 5px;
  background: rgba(var(--automart-white-rgb), .15);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.counter-one__single-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 40px;
  line-height: 40px;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__single-icon span:before {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.counter-one__single-content {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.counter-one__single-counter {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-one__single-counter h2 {
  color: var(--automart-white);
  font-size: 55px;
  line-height: 65px !important;
  font-weight: 700;
  font-family: var(--automart-font-two) !important;
}

.counter-one__single-counter .odometer.odometer-auto-theme,
.counter-one__single-counter .odometer.odometer-theme-default {
  font-family: var(--automart-font-two);
  line-height: 65px;
}

.counter-one__single-counter .plus {
  position: relative;
  display: inline-block;
  top: -5px;
  color: var(--automart-white);
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  margin-left: 3px;
}

.counter-one__single-counter .k {
  position: relative;
  display: inline-block;
  top: -4px;
  color: var(--automart-white);
  font-size: 49px;
  line-height: 65px;
  font-weight: 600;
  margin-left: 3px;
}

.counter-one__text {
  color: var(--automart-white);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}



/***
=============================================
  Slogan One
=============================================
***/

.slogan-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 109px 0px 120px;
  overflow: hidden;
  z-index: 1;
}

.slogan-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  z-index: -1;
}

.slogan-one__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(var(--automart-black-rgb), .85);
  z-index: -1;
}

.slogan-one__shape1 {
  position: absolute;
  top: 0;
  right: -225px;
  mix-blend-mode: luminosity;
  opacity: .20;
  z-index: -1;
}

.slogan-one__shape2 {
  position: absolute;
  top: 80px;
  left: 35px;
  mix-blend-mode: luminosity;
  opacity: .6;
  z-index: -1;
}

.slogan-one__content {
  position: relative;
  display: block;
  text-align: center;
}

.slogan-one__content-title {
  position: relative;
  display: block;
}

.slogan-one__content-title h2 {
  color: var(--automart-white);
  font-size: 60px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.slogan-one__content-title p {
  color: rgba(var(--automart-white-rgb), .70);
}

.slogan-one__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 43px;
}

.slogan-one__content-btn {
  position: relative;
  display: block;
  line-height: 0;
}

.slogan-one__content-btn .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.slogan-one__content-btn .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.slogan-one__content-btn .thm-btn:hover span,
.slogan-one__content-btn .thm-btn:hover i {
  color: var(--automart-base);
}

.slogan-one__content-video {
  position: relative;
  display: block;
  line-height: 0;
}

.slogan-one__content-video .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--automart-white);
  font-size: 18px;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--automart-base);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 5;
}

.slogan-one__content-video .video-popup:hover {
  color: var(--automart-base);
  background-color: var(--automart-white);
}

.slogan-one__content-video .video-popup::after,
.slogan-one__content-video .video-popup::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: -1;
}

.slogan-one__content-video .video-popup::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.team-two__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-two__single .section-title {
  margin-bottom: 33px;
}

.team-two__top-btn {
  position: relative;
  display: block;
  margin-top: 32px;
}

.team-two__img-box {
  position: relative;
  display: block;
}

.team-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--automart-bdr-radius);
  z-index: 1;
}

.team-two__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--automart-black-rgb), .40);
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 1;
}

.team-two__single:hover .team-two__img:before {
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.team-two__img img {
  width: 100%;
  border-radius: 15px;
  transition: all 500ms ease;
  transform: scale(1);
}

.team-two__single:hover .team-two__img img {
  transform: scale(1.05);
}

.team-two__social {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(-50px) translateX(0%);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 5;

}

.team-two__single:hover .team-two__social {
  opacity: 1;
  transform: translateY(0px) translateX(0%);
}

.team-two__social li {
  position: relative;
  display: inline-block;
}

.team-two__social li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--automart-base);
  border-radius: 10px;
  font-size: 17px;
  color: var(--automart-white);
}

.team-two__social li a:hover {
  color: var(--automart-base);
  background-color: var(--automart-white);
}

.team-two__content {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 50px;
  background-color: rgba(var(--automart-black-rgb), .9);
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 25px 25px 21px;
  opacity: 0;
  transform: translateY(0px) translateX(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 3;
}

.team-two__single:hover .team-two__content {
  opacity: 1;
  transform: translateY(0px) translateX(0px);
}

.team-two__sub-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: rgba(var(--automart-white-rgb), .10);
  font-size: 14px;
  font-weight: 500;
  color: var(--automart-white);
  line-height: 14px;
  padding: 9px 16px 9px;
  border-radius: 10px;
}

.team-two__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  margin-top: 12px;
}

.team-two__name a {
  color: var(--automart-white);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.team-two__name a:hover {
  color: var(--automart-base);
}

/*==============================================
    Before After
===============================================*/
.before-after-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background-color: var(--automart-black);
  z-index: 2;
}

.before-after-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}

.before-after-one__inner {
  position: relative;
  display: block;
}

.before-after-one__inner .section-title__tagline,
.before-after-one__inner .section-title__title {
  color: var(--automart-white);
}

.before-after-one__inner .section-title__tagline-box:before {
  background-color: var(--automart-white);
}

.before-and-after__img-box {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.before-and-after__img-box .before-after {
  position: relative;
  display: block;
  height: 100%;
  padding: 50px;
  background-color: rgba(var(--automart-white-rgb), .10);
}

.before-and-after__img-box .before-after .twentytwenty-container img {
  width: 100%;
}

.before-and-after__img-box .twentytwenty-container {
  overflow: visible;
}

.before-and-after__img-box .before-after .twentytwenty-horizontal .twentytwenty-before-label:before {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 100px;
  height: 100px;
  line-height: 90px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0px;
  padding: 0px;
  background: transparent;
  z-index: 1;
  transform: rotate(-45deg);
  text-transform: uppercase;
  display: none;
}

.before-and-after__img-box .before-after .twentytwenty-horizontal .twentytwenty-before-label:after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}



.before-and-after__img-box .before-after .twentytwenty-horizontal .twentytwenty-after-label:before {
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100px;
  line-height: 140px;
  text-align: center;
  font-size: 16px;
  background: transparent;
  font-weight: 700;
  color: #fff;
  margin: 0px;
  padding: 0px;
  bottom: 0px;
  transform: rotate(-45deg);
  z-index: 1;
  text-transform: uppercase;
  display: none;
}

.before-and-after__img-box.before-after .twentytwenty-horizontal .twentytwenty-after-label:after {
  position: absolute;
  content: '';
  bottom: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.twentytwenty-after-label,
.twentytwenty-before-label {
  opacity: 1 !important;
}

.before-and-after__img-box .twentytwenty-horizontal .twentytwenty-handle:before {
  height: 290px;
  top: -280px;
}

.before-and-after__img-box .twentytwenty-horizontal .twentytwenty-handle:after {
  height: 275px;
}

.before-and-after__img-box .twentytwenty-overlay {
  border-radius: 10px
}

.before-and-after__tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}

.before-and-after__tag span {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  font-family: var(--automart-font-two);
  color: var(--automart-black);
  background-color: var(--automart-white);
  padding: 8px 20px 8px;
  border-radius: 12px;
}

.before-and-after__tag-2 {
  left: inherit;
  right: 20px;
}

/*--------------------------------------------------------------
# Operate One
--------------------------------------------------------------*/
.operate-one {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  z-index: 1;
}

.operate-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.operate-one__shape-1 img {
  width: auto;
}

.operate-one__shape-2 {
  position: absolute;
  top: 0;
  left: 805px;
  z-index: -1;
}

.operate-one__shape-2 img {
  width: auto;
}

.operate-one__bg-color {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--automart-base);
  width: 38%;
  clip-path: polygon(33% 0%, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.operate-one__shape-3 {
  position: absolute;
  top: 90px;
  right: 0;
  z-index: -1;
  opacity: .30;
  mix-blend-mode: lighten;
}

.operate-one__shape-3 img {
  width: auto;
}

.operate-one__left {
  position: relative;
  display: block;
  margin-right: 24px;
}

.operate-one__tab-box {
  position: relative;
  display: block;
}

.operate-one__tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.operate-one__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: block;
  padding: 16px 25px 16px;
  cursor: pointer;
  background-color: var(--automart-white);
  box-shadow: 0 0 40px 4px rgba(0, 123, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

.operate-one__tab-box .tab-buttons .tab-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background: var(--automart-base);
  border-radius: 10px;
  transition: all 0.3s ease;
  z-index: -1;
}

.operate-one__tab-box .tab-buttons .tab-btn.active-btn:before {
  height: 100%;
}

.operate-one__tab-box .tab-buttons .tab-btn p {
  color: var(--automart-black);
  font-size: 18px;
  line-height: 1em;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--automart-font-two);
  transition: all 0.3s ease;
}

.operate-one__tab-box .tab-buttons .tab-btn.active-btn p {
  color: var(--automart-white);
}

.operate-one__tab-box .tabs-content {
  position: relative;
  display: block;
  margin-top: 30px;
  z-index: 1;
}

.operate-one__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: all 900ms ease;
  z-index: 10;
}

.operate-one__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.operate-one__content-box {
  position: relative;
  display: block;
}

.operate-one__content-text {
  font-weight: 500;
}

.operate-one__point-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 25px;
}

.operate-one__point {
  position: relative;
  display: block;
}

.operate-one__point li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.operate-one__point li+li {
  margin-top: 10px;
}

.operate-one__point li .icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--automart-base);
}

.operate-one__point li .text {
  position: relative;
  display: block;
  flex: 1;
}

.operate-one__point li .text p {
  font-size: 18px;
  color: var(--automart-black);
  font-weight: 500;
}

.operate-one__right {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-right: -136px;
}

.operate-one__img {
  position: relative;
  display: block;
}

.operate-one__img img {
  width: 100%;
}

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.pricing-one__shpae-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 525px;
  opacity: .10;
  z-index: -1;
}

.pricing-one .section-title {
  margin-bottom: 18px;
}

.pricing-one__top-text {
  position: relative;
  display: block;
  text-align: center;
  font-weight: 500;
}

.pricing-one__tab-box {
  position: relative;
  display: block;
  margin-top: 52px;
}

.pricing-one__tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.pricing-one__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: block;
  padding: 0px 15px 0px;
  cursor: pointer;
  z-index: 1;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
}

.pricing-one__tab-box .tab-buttons .tab-btn .tab-btn-content-box {
  position: relative;
  display: block;
  text-align: center;
  background: var(--automart-white);
  padding: 37px 20px 37px;
  border-radius: var(--automart-bdr-radius);
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  overflow: hidden;
  z-index: 1;
}

.pricing-one__tab-box .tab-buttons .tab-btn .tab-btn-content-box:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background: var(--automart-base);
  border-radius: var(--automart-bdr-radius);
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing-one__tab-box .tab-buttons .tab-btn.active-btn .tab-btn-content-box:before {
  height: 100%;
}

.pricing-one__tab-btn-shpae {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .04;
  border-radius: var(--automart-bdr-radius);
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing-one__tab-box .tab-buttons .tab-btn.active-btn .pricing-one__tab-btn-shpae {
  opacity: 0;
}

.pricing-one__tab-btn-shpae-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  border-radius: var(--automart-bdr-radius);
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing-one__tab-box .tab-buttons .tab-btn.active-btn .pricing-one__tab-btn-shpae-2 {
  opacity: .20;
}

.pricing-one__tab-box .tab-buttons .tab-btn .tab-btn-content-box .icon-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.pricing-one__tab-box .tab-buttons .tab-btn .tab-btn-content-box .icon-box span {
  font-size: 70px;
  color: var(--automart-base);
  position: relative;
  display: inline-block;
}

.pricing-one__tab-box .tab-buttons .tab-btn.active-btn .tab-btn-content-box .icon-box span {
  color: var(--automart-white);
}

.pricing-one__tab-box .tab-buttons .tab-btn .tab-btn-content-box p {
  color: var(--automart-black);
  font-size: 22px;
  line-height: 1em;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--automart-font-two);
  transition: all 0.3s ease;
}

.pricing-one__tab-box .tab-buttons .tab-btn.active-btn .tab-btn-content-box p {
  color: var(--automart-white);
}

.pricing-one__tab-box .tabs-content {
  position: relative;
  display: block;
  margin-top: 40px;
  z-index: 1;
}

.pricing-one__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: all 900ms ease;
  z-index: 10;
}

.pricing-one__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.pricing-one__tab-content-box {
  position: relative;
  display: block;
}

.pricing-one__single {
  position: relative;
  display: block;
  border-radius: var(--automart-bdr-radius);
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
}

.pricing-one__single-top {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--automart-base);
  padding: 38px 0px 24px;
  overflow: hidden;
  z-index: 1;
}

.pricing-one__single-top-shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: .30;
  z-index: -1;
}

.pricing-one__single-top h4 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1em;
  color: var(--automart-white);
  margin-bottom: 15px;
}

.pricing-one__single-top h3 {
  font-size: 50px;
  line-height: 1em;
  font-weight: 700;
  color: var(--automart-white);
}

.pricing-one__single-top h3 span.dolar {
  position: relative;
  font-size: 25px;
  top: -12px;
  margin-right: 2px;
}

.pricing-one__single-top h3 span.point-amount {
  position: relative;
  font-size: 25px;
  top: -15px;
  margin-left: 2px;
}

.pricing-one__single-bottom {
  position: relative;
  display: block;
  padding: 32px 25px 40px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  border-top: 0;
  border-bottom-left-radius: var(--automart-bdr-radius);
  border-bottom-right-radius: var(--automart-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.pricing-one__single-bottom-shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .02;
  z-index: -1;
}

.pricing-one__single-bottom-text {
  font-weight: 500;
}

.pricing-one__list {
  position: relative;
  display: block;
  margin-top: 28px;
  margin-bottom: 34px;
}

.pricing-one__list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-one__list li+li {
  margin-top: 10px;
}

.pricing-one__list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--automart-base);
}

.pricing-one__list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.pricing-one__list li .text p {
  font-size: 18px;
  color: var(--automart-black);
  font-weight: 500;
}

.pricing-one__btn {
  position: relative;
  display: block;
  line-height: 0;
}

.pricing-one__btn a {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
  overflow: hidden;
  border-radius: 30px;
  background-color: var(--automart-base);
  padding: 21px 45px 21px;
  transition: all 200ms linear;
  transition-delay: .1s;
  z-index: 1;
  text-transform: capitalize;
}

.pricing-one__btn a::before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: rgba(var(--automart-black-rgb), 1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.pricing-one__btn a:hover::before {
  top: -40%;
}


/*==============================================
    Testimonial Two
===============================================*/
.testimonial-two {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  overflow: hidden;
  padding: 120px 0px 120px;
  z-index: 1;
}

.testimonial-two__shape-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  mix-blend-mode: luminosity;
  opacity: .02;
  z-index: -1;
}

.testimonial-two__shape-bg-two {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  mix-blend-mode: luminosity;
  opacity: .02;
  z-index: -1;
}

.testimonial-two .section-title {
  margin-bottom: 41px;
}

.testimonial-two .section-title__title {
  color: var(--automart-white);
}

.testimonial-two__carousel {
  position: relative;
  display: block;
  padding-top: 10px;
}

.testimonial-two__single {
  position: relative;
  display: block;
  padding-top: 48px;
  z-index: 1;
}

.testimonial-two__single-icon {
  position: absolute;
  right: 45px;
  bottom: 30px;
  z-index: 2;
}

.testimonial-two__single-icon span::before {
  position: relative;
  display: inline-block;
  color: rgba(var(--automart-base-rgb), 1.0);
  font-size: 50px;
  line-height: 50px;
}

.testimonial-two__single-img {
  position: absolute;
  top: 0px;
  left: 45px;
  width: 90px;
  z-index: 5;
}

.testimonial-two__single-img::before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 2px solid rgba(var(--automart-white-rgb), .50);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.testimonial-two__single-img-inner {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-two__single-img-inner img {
  width: 100%;
}

.testimonial-two__single-inner {
  position: relative;
  display: block;
  background: rgba(var(--automart-white-rgb), .15);
  padding: 76px 45px 37px;
  border-radius: 10px;
  z-index: 1;
}

.testimonial-two__single-content {
  position: relative;
  display: block;
}

.testimonial-two__single-content p {
  margin: 0;
  color: var(--automart-white);
  opacity: .80;
}

.testimonial-two__single-content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-two__single-content-bottom .author-box {
  position: relative;
  display: block;
  padding-left: 15px;
}

.testimonial-two__single-content-bottom .author-box::before {
  position: absolute;
  top: 7px;
  left: 0;
  bottom: 8px;
  width: 2px;
  background: var(--automart-white);
  opacity: .20;
  content: "";
}

.testimonial-two__single-content-bottom .author-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--automart-white);
}

.testimonial-two__single-content-bottom .author-box p {
  color: var(--automart-base);
  color: var(--automart-white);
}

.testimonial-two__single-content-bottom .rating {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 33px;
  flex: 1;
}

.testimonial-two__single-content-bottom .rating>li {
  position: relative;
  display: block;
  color: var(--automart-white);
  font-size: 16px;
  margin: 0;
}

.testimonial-two__single-content-bottom .rating>li+li {
  margin-left: 5px;
}

.testimonial-two__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  margin: 40px auto 0px;
  z-index: 10;
}

.testimonial-two__nav-prev,
.testimonial-two__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid rgba(var(--automart-white-rgb), .20);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.testimonial-two__nav-prev:hover,
.testimonial-two__nav-next:hover {
  border: 1px solid rgba(var(--automart-white-rgb), 1);
}

.testimonial-two__nav-prev::before,
.testimonial-two__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  background-color: var(--automart-white);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.testimonial-two__nav-prev:hover::before,
.testimonial-two__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.testimonial-two__nav-prev span,
.testimonial-two__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.testimonial-two__nav-prev span i,
.testimonial-two__nav-next span i {
  position: relative;
  display: inline-block;
  color: rgba(var(--automart-white-rgb), .20);
  font-size: 18px;
  line-height: 18px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.testimonial-two__nav-prev:hover span i,
.testimonial-two__nav-next:hover span i {
  color: var(--automart-base);
}

.testimonial-two__nav-prev span i.left {
  transform: rotate(0deg);
}

/*--------------------------------------------------------------
# Repari Cost
--------------------------------------------------------------*/
.repair-cost {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  background-color: var(--automart-base);
  z-index: 1;
}

.repair-cost__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .30;
  z-index: -1;
}

.repair-cost__shape-1 img {
  width: auto;
}

.repair-cost__bg-box-1 {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 72%;
  background-color: #F6F7F9;
  clip-path: polygon(0 0, 76% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.repair-cost__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .05;
  z-index: -1;
}

.repair-cost__left {
  position: relative;
  display: block;
  margin-left: 5px;
}

.repair-cost__img {
  position: relative;
  display: block;
}

.repair-cost__img img {
  width: 100%;
}

.repair-cost__right {
  position: relative;
  display: block;
}

.repair-cost__form-box {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-black-rgb), .90);
  border-radius: 10px;
  padding: 52px 45px 55px;
  border: 4px solid rgba(var(--automart-white-rgb), .10);
  z-index: 5;
}

.repair-cost__form-title-box {
  position: relative;
  display: block;
  margin-bottom: 37px;
}

.repair-cost__form-title {
  font-size: 34px;
  line-height: 34px;
  color: var(--automart-white);
  font-weight: 600;
}

.repair-cost__form-sub-title {
  color: var(--automart-white);
  font-weight: 500;
  margin-top: 6px;
}

.repair-cost__form {
  position: relative;
  display: block;
}

.repair-cost__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.repair-cost__input-box input[type="text"],
.repair-cost__input-box input[type="email"],
.repair-cost__input-box textarea {
  height: 60px;
  width: 100%;
  line-height: 60px;
  background-color: var(--automart-white);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 15px;
  color: var(--automart-gray);
  display: block;
  font-weight: 400;
  border-radius: 10px;
}

.repair-cost__input-box .select-box .nice-select {
  background-color: var(--automart-white);
  border: none;
  color: var(--automart-gray);
  font-size: 15px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0px;
  float: none;
}

.repair-cost__input-box .select-box .nice-select:after {
  position: absolute;
  top: 48%;
  right: 20px;
  border-bottom: 2px solid var(--automart-gray);
  border-right: 2px solid var(--automart-gray);
}

.repair-cost__form-btn-box {
  position: relative;
  display: block;
}

.repair-cost__form-btn-box button {
  border: none;
}

.repair-cost__form-btn-box .thm-btn span {
  background-color: var(--automart-black);
}

.repair-cost__form-btn-box .thm-btn i {
  background-color: var(--automart-black);
}

.repair-cost__form-btn-box .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.repair-cost__form-btn-box .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.repair-cost__form-btn-box .thm-btn:hover span,
.repair-cost__form-btn-box .thm-btn:hover i {
  color: var(--automart-base);
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  overflow: hidden;
  z-index: 1;
}

.feature-two__shpae-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.feature-two__single {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: var(--automart-bdr-radius);
  z-index: 1;
}

.feature-two__img-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .20;
  z-index: -1;
}

.feature-two__content {
  position: relative;
  display: block;
  text-align: center;
  padding: 156px 20px 155px;
}

.feature-two__content h4 {
  font-size: 25px;
  color: var(--automart-white);
  text-transform: capitalize;
  line-height: 1em;
}

.feature-two__content p {
  color: var(--automart-white);
  opacity: .80;
  margin-top: 10px;
  margin-bottom: 10px;
}

.feature-two__content a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 18px;
  color: var(--automart-white);
  line-height: 1em;
}

.feature-two__content a:hover {
  color: var(--automart-base);
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
  position: relative;
  display: block;
  padding: 120px 0px 140px;
  z-index: 1;
}

.blog-two__shape {
  position: absolute;
  top: 0;
  right: -30px;
  opacity: .10;
  z-index: -1;
}

.blog-two__shape img {
  width: auto;
}

.blog-two__shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .10;
  z-index: -1;
}

.blog-two__shape-2 img {
  width: auto;
}

.blog-two__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 51px;
}

.blog-two__top .section-title {
  margin-bottom: 0;
}

.blog-two__top-btn {
  position: relative;
  display: block;
}

.blog-two__bottom {
  position: relative;
  display: block;
}

.blog-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: var(--automart-bdr-radius);
  border-top-right-radius: var(--automart-bdr-radius);
  z-index: 1;
}

.blog-two__img::before {
  background: rgba(255, 255, 255, .3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.blog-two__single:hover .blog-two__img::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 600ms linear;
  transition: all 600ms linear;
}

.blog-two__img img {
  width: 100%;
  border-top-left-radius: var(--automart-bdr-radius);
  border-top-right-radius: var(--automart-bdr-radius);
  transform: scale(1.0);
  transition: all 1500ms ease;
}

.blog-two__single:hover .blog-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-two__content {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  border-top: 0;
  border-bottom-left-radius: var(--automart-bdr-radius);
  border-bottom-right-radius: var(--automart-bdr-radius);
  padding: 30px 25px 25px;
  background-color: var(--automart-white);
}

.blog-two__author-and-date-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-two__author {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-two__author-img {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}

.blog-two__author-img img {
  width: 100%;
  border-radius: 50%;
}

.blog-two__author-content {
  position: relative;
  display: block;
  flex: 1;
}

.blog-two__author-content h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 5px;
}

.blog-two__date {
  position: relative;
  display: inline-block;
  background-color: var(--automart-base);
  padding: 10px 20px 10px;
  border-radius: 10px;
}

.blog-two__date p {
  font-size: 14px;
  color: var(--automart-white);
  line-height: 1em;
}

.blog-two__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-top: 14px;
  margin-bottom: 13px;
}

.blog-two__title a {
  color: var(--automart-black);
}

.blog-two__title a:hover {
  color: var(--automart-base);
}

.blog-two__text {
  margin-bottom: 15px;
}

.blog-two__read-more {
  position: relative;
  display: block;
}

.blog-two__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--automart-black);
}

.blog-two__read-more a:hover {
  color: var(--automart-base);
}

/*--------------------------------------------------------------
# CTA Three
--------------------------------------------------------------*/
.cta-three {
  position: relative;
  display: block;
  z-index: 1;
}

.cta-three__wrap {
  position: relative;
  display: block;
  background-color: var(--automart-base);
  z-index: 1;
}

.cta-three__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .15;
  z-index: -1;
}

.cta-three__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 97px 0px 97px;
  padding-left: 300px;
  z-index: 1;
}

.cta-three__img {
  position: absolute;
  bottom: 0;
  left: -35px;
  animation: leftRight 4s ease-in-out infinite;
}

.cta-three__img img {
  width: auto;
}

.cta-three__title {
  position: relative;
  display: block;
}

.cta-three__title h2 {
  color: var(--automart-white);
  font-size: 48px;
  line-height: 1.1em;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-three__btn {
  position: relative;
  display: block;
}

.cta-three__btn .thm-btn span {
  background-color: var(--automart-black);
}

.cta-three__btn .thm-btn i {
  background-color: var(--automart-black);
}

.cta-three__btn .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.cta-three__btn .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.cta-three__btn .thm-btn:hover span,
.cta-three__btn .thm-btn:hover i {
  color: var(--automart-base);
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  z-index: 1;
}

.site-footer-two__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .03;
  z-index: -1;
}

.site-footer-two__top {
  position: relative;
  display: block;
}

.site-footer-two__top-inner {
  position: relative;
  display: block;
  padding: 110px 0px 113px;
}

.site-footer-two__about {
  position: relative;
  display: block;
}

.site-footer-two__title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--automart-white);
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.site-footer-two__title:before {
  content: "";
  height: 2px;
  width: 80px;
  background: var(--automart-base);
  position: absolute;
  bottom: -14px;
  left: 0;
}

.site-footer-two__title::after {
  position: absolute;
  left: 37px;
  bottom: -16px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--automart-base);
  border-radius: 50%;
}

.site-footer-two__about-text {
  color: rgba(var(--automart-white-rgb), .90);
  font-weight: 400;
  margin-bottom: 33px;
}

.site-footer-two__social {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: 1px solid rgba(var(--automart-white-rgb), .20);
  border-radius: 8px;
  font-size: 15px;
  color: var(--automart-white);
  background-color: rgba(10, 36, 92, .8);
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.site-footer-two__social a:hover {
  color: var(--automart-base);
  border: 1px solid var(--automart-white);
}

.site-footer-two__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--automart-white);
  transform: scale(0.5);
  border-radius: 8px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.site-footer-two__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.site-footer-two__social a+a {
  margin-left: 5px;
}

.site-footer-two__usefull-links {
  position: relative;
  display: block;
  margin-left: 60px;
}

.site-footer-two__links-list {
  position: relative;
  display: block;
}

.site-footer-two__links-list li {
  position: relative;
  display: block;
}

.site-footer-two__links-list li+li {
  margin-top: 16px;
}

.site-footer-two__links-list a {
  color: rgba(var(--automart-white-rgb), .80);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-two__links-list a:hover {
  color: rgba(var(--automart-white-rgb), 1);
}

.site-footer-two__working-hours {
  position: relative;
  display: block;
}

.site-footer-two__working-hours-list {
  position: relative;
  display: block;
}

.site-footer-two__working-hours-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-footer-two__working-hours-list li+li {
  margin-top: 16px;
}

.site-footer-two__working-day {
  color: rgba(var(--automart-white-rgb), .80);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-two__working-time {
  color: rgba(var(--automart-white-rgb), .80);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-two__bottom {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  z-index: 1;
}

.site-footer-two__logo {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.site-footer-two__bottom-outer {
  position: relative;
  display: block;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1920' height='90' viewBox='0 0 1920 90'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB4AAAABaCAYAAABZoEsBAAAOq0lEQVR4AezZW3LTQBQEUBfbgIXBF0thk7AeCASIk9iy5iFb6nsoktiW5tFHU1SR/vDp84+fvhg4A86AM+AMOAPOgDPgDDgDzsD5Gfj45fvXkz8ECCQJyBIg8PTv9LenL7/H8bssZ8AZcAacAWfAGXAGnAFnwBlYPAMfAv7/I0K3gIEECBAgQIAAAQIECBAgQIBAvoCEBAgQIECAAAECBAhUElAAV3rashI4F/CaAAECBAgQIECAAAECBAgQyBeQkAABAgQIECBAoJyAArjcIxeYAAECpxMDAgQIECBAgAABAgQIECBAIF9AQgIECBAgQKCmgAK45nOXmgABAgTqCkhOgAABAgQIECBAgAABAgQI5AtISIAAAQKFBRTAhR++6AQIECBAgEA1AXkJECBAgAABAgQIECBAgACBfAEJCRCoLqAArn4C5CdAgAABAgQIEKghICUBAgQIECBAgAABAgQIECCQLyAhgScBBfATgr8ECBAgQIAAAQIECBBIFpCNAAECBAgQIECAAAECBAgQyBf4l1AB/E/CTwIECBAgQIAAAQIECBAgkCcgEQECBAgQIECAAAECBAgUE1AAF3vgz3F9J0CAAAECBAgQIECAAAECBPIFJCRAgAABAgQIECBAoKKAArjiU5e5toD0BAgQIECAAAECBAgQIECAQL6AhAQIECBAgAABAmUFFMBlH73gBAhUFJCZAAECBAgQIECAAAECBAgQyBeQkAABAgQIEKgtoACu/fylJ0CAAIE6ApISIECAAAECBAgQIECAAAEC+QISEiBAgACBkwLYISBAgAABAgQIxAsISIAAAQIECBAgQIAAAQIECOQLSEiAAIFnAQXws4PvBAgQIECAAAECBDIFpCJAgAABAgQIECBAgAABAgTyBSQkcCagAD7D8JIAAQIECBAgQIAAAQJJArIQIECAAAECBAgQIECAAAEC+QJvEyqA34p4T4AAAQIECBAgQIAAAQIEji8gAQECBAgQIECAAAECBAgUFVAAl3rwwhIgQIAAAQIECBAgQIAAAQL5AhISIECAAAECBAgQIFBZQAFc+enLXktAWgIECBAgQIAAAQIECBAgQCBfQEICBAgQIECAAIHyAgrg8kcAAAECFQRkJECAAAECBAgQIECAAAECBPIFJCRAgAABAgQI/BZQAP9W8EWAAAECBHIFJCNAgAABAgQIECBAgAABAgTyBSQkQIAAAQL/BRTA/ym8IECAAAECBAikCchDgAABAgQIECBAgAABAgQI5AtISIAAgdcCCuDXHt4RIECAAAECBAgQyBCQggABAgQIECBAgAABAgQIEMgXkJDABQEF8AUUHxEgQIAAAQIECBAgQODIAvZOgAABAgQIECBAgAABAgQI5AtcS6gAvibjcwIECBAgQIAAAQIECBAgcDwBOyZAgAABAgQIECBAgACB4gIK4BIHQEgCBAgQIECAAAECBAgQIEAgX0BCAgQIECBAgAABAgQInE4KYKeAQLqAfAQIECBAgAABAgQIECBAgEC+gIQECBAgQIAAAQIE/googP9C+EGAAIFEAZkIECBAgAABAgQIECBAgACBfAEJCRAgQIAAAQLnAgrgcw2vCRAgQIBAjoAkBAgQIECAAAECBAgQIECAQL6AhAQIECBA4J2AAvgdiQ8IECBAgAABAkcXsH8CBAgQIECAAAECBAgQIEAgX0BCAgQIXBZQAF928SkBAgQIECBAgACBYwrYNQECBAgQIECAAAECBAgQIJAvICGBBQEF8AKOSwQIECBAgAABAgQIEDiSgL0SIECAAAECBAgQIECAAAEC+QK3EiqAbwm5ToAAAQIECBAgQIAAAQIE9i9ghwQIECBAgAABAgQIECBA4I+AAvgPQ+o3uQgQIECAAAECBAgQIECAAIF8AQkJECBAgAABAgQIECDwIqAAfrHwikCWgDQECBAgQIAAAQIECBAgQIBAvoCEBAgQIECAAAECBN4IKIDfgHhLgACBBAEZCBAgQIAAAQIECBAgQIAAgXwBCQkQIECAAAEClwQUwJdUfEaAAAECBI4rYOcECBAgQIAAAQIECBAgQIBAvoCEBAgQIEDgqoAC+CqNCwQIECBAgACBownYLwECBAgQIECAAAECBAgQIJAvICEBAgSWBRTAyz6uEiBAgAABAgQIEDiGgF0SIECAAAECBAgQIECAAAEC+QISElghoABegeQWAgQIECBAgAABAgQI7FnA3ggQIECAAAECBAgQIECAAIF8gbUJFcBrpdxHgAABAgQIECBAgAABAgT2J2BHBAgQIECAAAECBAgQIEDglYAC+BVHyhs5CBAgQIAAAQIECBAgQIAAgXwBCQkQ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' x='0' y='0' width='1920' height='90'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1920' height='90' viewBox='0 0 1920 90'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB4AAAABaCAYAAABZoEsBAAAOq0lEQVR4AezZW3LTQBQEUBfbgIXBF0thk7AeCASIk9iy5iFb6nsoktiW5tFHU1SR/vDp84+fvhg4A86AM+AMOAPOgDPgDDgDzsD5Gfj45fvXkz8ECCQJyBIg8PTv9LenL7/H8bssZ8AZcAacAWfAGXAGnAFnwBlYPAMfAv7/I0K3gIEECBAgQIAAAQIECBAgQIBAvoCEBAgQIECAAAECBAhUElAAV3rashI4F/CaAAECBAgQIECAAAECBAgQyBeQkAABAgQIECBAoJyAArjcIxeYAAECpxMDAgQIECBAgAABAgQIECBAIF9AQgIECBAgQKCmgAK45nOXmgABAgTqCkhOgAABAgQIECBAgAABAgQI5AtISIAAAQKFBRTAhR++6AQIECBAgEA1AXkJECBAgAABAgQIECBAgACBfAEJCRCoLqAArn4C5CdAgAABAgQIEKghICUBAgQIECBAgAABAgQIECCQLyAhgScBBfATgr8ECBAgQIAAAQIECBBIFpCNAAECBAgQIECAAAECBAgQyBf4l1AB/E/CTwIECBAgQIAAAQIECBAgkCcgEQECBAgQIECAAAECBAgUE1AAF3vgz3F9J0CAAAECBAgQIECAAAECBPIFJCRAgAABAgQIECBAoKKAArjiU5e5toD0BAgQIECAAAECBAgQIECAQL6AhAQIECBAgAABAmUFFMBlH73gBAhUFJCZAAECBAgQIECAAAECBAgQyBeQkAABAgQIEKgtoACu/fylJ0CAAIE6ApISIECAAAECBAgQIECAAAEC+QISEiBAgACBkwLYISBAgAABAgQIxAsISIAAAQIECBAgQIAAAQIECOQLSEiAAIFnAQXws4PvBAgQIECAAAECBDIFpCJAgAABAgQIECBAgAABAgTyBSQkcCagAD7D8JIAAQIECBAgQIAAAQJJArIQIECAAAECBAgQIECAAAEC+QJvEyqA34p4T4AAAQIECBAgQIAAAQIEji8gAQECBAgQIECAAAECBAgUFVAAl3rwwhIgQIAAAQIECBAgQIAAAQL5AhISIECAAAECBAgQIFBZQAFc+enLXktAWgIECBAgQIAAAQIECBAgQCBfQEICBAgQIECAAIHyAgrg8kcAAAECFQRkJECAAAECBAgQIECAAAECBPIFJCRAgAABAgQI/BZQAP9W8EWAAAECBHIFJCNAgAABAgQIECBAgAABAgTyBSQkQIAAAQL/BRTA/ym8IECAAAECBAikCchDgAABAgQIECBAgAABAgQI5AtISIAAgdcCCuDXHt4RIECAAAECBAgQyBCQggABAgQIECBAgAABAgQIEMgXkJDABQEF8AUUHxEgQIAAAQIECBAgQODIAvZOgAABAgQIECBAgAABAgQI5AtcS6gAvibjcwIECBAgQIAAAQIECBAgcDwBOyZAgAABAgQIECBAgACB4gIK4BIHQEgCBAgQIECAAAECBAgQIEAgX0BCAgQIECBAgAABAgQInE4KYKeAQLqAfAQIECBAgAABAgQIECBAgEC+gIQECBAgQIAAAQIE/googP9C+EGAAIFEAZkIECBAgAABAgQIECBAgACBfAEJCRAgQIAAAQLnAgrgcw2vCRAgQIBAjoAkBAgQIECAAAECBAgQIECAQL6AhAQIECBA4J2AAvgdiQ8IECBAgAABAkcXsH8CBAgQIECAAAECBAgQIEAgX0BCAgQIXBZQAF928SkBAgQIECBAgACBYwrYNQECBAgQIECAAAECBAgQIJAvICGBBQEF8AKOSwQIECBAgAABAgQIEDiSgL0SIECAAAECBAgQIECAAAEC+QK3EiqAbwm5ToAAAQIECBAgQIAAAQIE9i9ghwQIECBAgAABAgQIECBA4I+AAvgPQ+o3uQgQIECAAAECBAgQIECAAIF8AQkJECBAgAABAgQIECDwIqAAfrHwikCWgDQECBAgQIAAAQIECBAgQIBAvoCEBAgQIECAAAECBN4IKIDfgHhLgACBBAEZCBAgQIAAAQIECBAgQIAAgXwBCQkQIECAAAEClwQUwJdUfEaAAAECBI4rYOcECBAgQIAAAQIECBAgQIBAvoCEBAgQIEDgqoAC+CqNCwQIECBAgACBownYLwECBAgQIECAAAECBAgQIJAvICEBAgSWBRTAyz6uEiBAgAABAgQIEDiGgF0SIECAAAECBAgQIECAAAEC+QISElghoABegeQWAgQIECBAgAABAgQI7FnA3ggQIECAAAECBAgQIECAAIF8gbUJFcBrpdxHgAABAgQIECBAgAABAgT2J2BHBAgQIECAAAECBAgQIEDglYAC+BVHyhs5CBAgQIAAAQIECBAgQIAAgXwBCQkQ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' x='0' y='0' width='1920' height='90'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--automart-base);
}

.site-footer-two__bottom-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 32px 0 32px;
}

.site-footer-two__copyright {
  position: relative;
  display: block;
}

.site-footer-two__copyright-text {
  font-weight: 400;
  color: var(--automart-white);
  position: relative;
  display: inline-block;
}

.site-footer-two__copyright-text a {
  color: var(--automart-white);
  font-weight: 500;
}

.site-footer-two__copyright-text a:hover {
  color: var(--automart-black);
}

.site-footer-two__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer-two__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer-two__bottom-menu li a {
  font-weight: 400;
  color: var(--automart-white);
  position: relative;
  display: inline-block;
}

.site-footer-two__bottom-menu li a:hover {
  color: var(--automart-black);
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
  position: relative;
  display: block;
  padding: 150px 0px 120px;
  z-index: 1;
}

.video-one .container {
  max-width: 1650px;
}

.video-one__inner {
  position: relative;
  display: block;
}

.video-one__bg-box {
  position: relative;
  display: block;
  min-height: 650px;
  height: 100%;
}

.video-one__video-link {
  position: absolute;
  top: -14px;
  right: 372px;
  z-index: 3;
}

.video-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 30px;
  color: var(--automart-white);
  background-color: rgba(var(--automart-base-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.video-one__video-icon:hover {
  background-color: var(--automart-white);
  color: var(--automart-base);
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1620' height='650' viewBox='0 0 1620 650'%3E%3Cimage xlink:href='data:image/png;base64,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Cjg5AQIECBAgQIBAAIHtVHrkd4o8SF+f5MLlttez5+d3wjxIDrkwydd004UAAQIEYgnUm0ahUu/emIwAAQIECBAgQIAAAQIEWhMwLwECBAgQIECAQFgBhUrYrRWMAAEC6ws4ggABAgQIECBAgAABAgQIEIgvICEBAt0EFCrd3BxFgAABAgQIECBAgMA0AlYlQIAAAQIECBAgQIDAJAIKlUnYLTpfAckJECBAgAABAgQIECBAgACB+AISEiBAgEBEAYVKxF2ViQABAgQIECDQR8CxBAgQIECAAAECBAgQIECAwHsC4QqV9xJ6gAABAgQIECBAgAABAgQIEAgnIBABAgQIECBAoLSAQqW0uPUIECBAgMBiwYAAAQIECBAgQIAAAQIECBCILyBhMAGFSrANFYcAAQIECBAgQIAAAQLDCDgLAQIECBAgQIAAAQIXBRQqFzXcJkAgjoAkBAgQIECAAAECBAgQIECAQHwBCQkQIFBQQKFSENtSBAgQIECAAAECBC4KuE2AAAECBAgQIECAAAEC7QgoVNrZq9omNQ8BAgQIECBAgAABAgQIECAQX0BCAgQIECBA4ExAoXIG4QsBAgQIECAQUUAmAgQIECBAgAABAgQIECBAIL5AmYQKlTLOViFAgAABAgQIECBAgAABAtcLeJQAAQIECBAgQKAJAYVKE9tkSAIECNQrYDICBAgQIECAAAECBAgQIEAgvoCEBAgsFgoVrwICBAgQIECAAAECBKILyEeAAAECBAgQIECAAIHeAgqV3oROQGBsAecnQIAAAQIECBAgQIAAAQIE4gtISIAAAQK1CyhUat8h8xEgQIAAAQIEWhAwIwECBAgQIECAAAECBAgQCC6gUFksFsH3WDwCBAgQIECAAAECBAgQIEBgsVhAIECAAAECBAj0EVCo9NFzLAECBAgQKCdgJQIECBAgQIAAAQIECBAgQCC+gIQVCyhUKt4coxEgQIAAAQIECBAgQKAtAdMSIECAAAECBAgQiCugUIm7t5IRILCugOcTIECAAAECBAgQIECAAAEC8QUkJECAQEcBhUpHOIcRIECAAAECBAgQmELAmgQIECBAgAABAgQIECAwjYBCZRr3ua4qNwECBAgQIECAAAECBAgQIBBfQEICBAgQIBBSQKEScluFIkCAAAECBLoLOJIAAQIECBAgQIAAAQIECBCIL7B+QoXK+maOIECAAAECBAgQIECAAAEC0wpYnQABAgQIECBAoLiAQqU4uQUJECBAgAABAgQIECBAgAABAgQIECAQX0BCAtEEFCrRdlQeAgQIECBAgAABAgSGEHAOAgQIECBAgAABAgQIXBJQqFzicIdAFAE5CBAgQIAAAQIECBAgQIAAgfgCEhIgQIBASQGFSklta4vlJRkAABAASURBVBEgQIAAAQIECLwTcIsAAQIECBAgQIAAAQIECDQkoFDpuFkOI0CAAAECBAgQIECAAAECBOILSEiAAAECBAgQOBdQqJxL+EqAAAECBOIJSESAAAECBAgQIECAAAECBAjEF5CwkIBCpRC0ZQgQIECAAAECBAgQIEDgOgGPESBAgAABAgQIEGhDQKHSxj6ZkgCBWgXMRYAAAQIECBAgQIAAAQIECMQXkJAAAQJJQKGSEFwIECBAgAABAgQIRBaQjQABAgQIECBAgAABAgT6CyhU+hs6w7gCzk6AAAECBAgQIECAAAECBAjEF5CQAAECBAhUL6BQqX6LDEiAAAECBAjUL2BCAgQIECBAgAABAgQIECBAILrAxiJ6QvkIECBAgAABAgQIECBAgACBxYIBAQIECBAgQIBALwHvUOnF52ACBAgQKCVgHQIECBAgQIAAAQIECBAgQCC+gIQEahZQqNS8O2YjQIAAAQIECBAgQKAlAbMSIECAAAECBAgQIBBYQKESeHNFI7CegGcTIECAAAECBAgQIECAAAEC8QUkJECAAIGuAgqVrnKOI0CAAAECBAgQKC9gRQIECBAgQIAAAQIECBAgMJGAQqUgvKUIECBAgAABAgQIECBAgACB+AISEiBAgAABAjEFFCox91UqAgQIECDQVcBxBAgQIECAAAECBAgQIECAQHwBCTsIKFQ6oDmEAAECBAgQIECAAAECBKYUsDYBAgQIECBAgACB8gIKlfLmViRAYO4C8hMgQIAAAQIECBAgQIAAAQLxBSQkQCCcgEIl3JYKRIAAAQIECBAgQKC/gDMQIECAAAECBAgQIECAwGUBhcplD/diCEhBgAABAgQIECBAgAABAgQIxBeQkAABAgQIFBVQqBTlthgBAgQIECBA4FzAVwIECBAgQIAAAQIECBAgQKAlgW6FSksJzUqAAAECBAgQIECAAAECBAh0E3AUAQIECBAgQIDAWwGFylsKNwgQIEAgmoA8BAgQIECAAAECBAgQIECAQHwBCQmUElColJK2DgECBAgQIECAAAECBN4X8AgBAgQIECBAgAABAo0IKFQa2ShjEqhTwFQECBAgQIAAAQIECBAgQIBAfAEJCRAgQCALKFSygisBAgQIECBAgEBcAckIECBAgAABAgQIECBAgMAAAgqVARDHPIVzEyBAgAABAgQIECBAgAABAvEFJCRAgAABAgTqF1Co1L9HJiRAgAABArULmI8AAQIECBAgQIAAAQIECBCILzD7hAqV2b8EABAgQIAAAQIECBAgQGAOAjISIECAAAECBAgQ6CegUOnn52gCBAiUEbAKAQIECBAgQIAAAQIECBAgEF9AQgIEqhZQqFS9PYYjQIAAAQIECBAg0I6ASQkQIECAAAECBAgQIBBZQKESeXdlW0fAcwkQIECAAAECBAgQIECAAIH4AhISIECAAIHOAgqVznQOJECAAAECBAiUFrAeAQIECBAgQIAAAQIECBAgMJVAuUJlqoTWJUCAAAECBAgQIECAAAECBMoJWIkAAQIECBAgEFRAoRJ0Y8UiQIAAgW4CjiJAgAABAgQIECBAgAABAgTiC0hIoIuAQqWLmmMIECBAgAABAgQIECAwnYCVCRAgQIAAAQIECBCYQEChMgG6JQnMW0B6AgQIECBAgAABAgQIECBAIL6AhAQIEIgnoFCJt6cSESBAgAABAgQI9BVwPAECBAgQIECAAAECBAgQuCKgULkCEuGuDAQIECBAgAABAgQIECBAgEB8AQkJECBAgACBsgIKlbLeViNAgAABAgTeCPiTAAECBAgQIECAAAECBAgQiC8QKqFCJdR2CkOAAAECBAgQIECAAAECwwk4EwECBAgQIECAAIF3AgqVdxZuESBAIJaANAQIECBAgAABAgQIECBAgEB8AQkJECgmoFApRm0hAgQIECBAgAABAgSuCrhPgAABAgQIECBAgACBVgQUKq3slDlrFDATAQIECBAgQIAAAQIECBAgEF9AQgIECBAgcCqgUDll8AcBAgQIECBAIKqAXAQIECBAgAABAgQIECBAgMAQAnUXKkMkdA4CBAgQIECAAAECBAgQIECgbgHTESBAgAABAgQaEFCoNLBJRiRAgACBugVMR4AAAQIECBAgQIAAAQIECMQXkJCAQsVrgAABAgQIECBAgAABAvEFJCRAgAABAgQIECBAoKeAQqUnoMMJECghYA0CBAgQIECAAAECBAgQIEAgvoCEBAgQqFtAoVL3/piOAAECBAgQIECgFQFzEiBAgAABAgQIECBAgEBoAYVK6O29fTjPJECAAAECBAgQIECAAAECBOILSEiAAAECBAh0F1CodLdzJAECBAgQIFBWwGoECBAgQIAAAQIECBAgQIBAfIFqEypUqt0agxEgQIAAAQIECBAgQIBAewImJkCAAAECBAgQiCqgUIm6s3IRIECgi4BjCBAgQIAAAQIECBAgQIAAgfgCEhIg0ElAodKJzUEECBAgQIAAAQIECEwlYF0CBAgQIECAAAECBAhMIaBQmULdmnMWkJ0AAQIECBAgQIAAAQIECBCILyAhAQIECAQUUKgE3FSRCBAgQIAAAQL9BBxNgAABAgQIECBAgAABAgQIXBWIV6hcTeg+AQIECBAgQIAAAQIECBAgEE9AIgIECBAgQIBAYQGFSmFwyxEgQIAAgSzgSoAAAQIECBAgQIAAAQIECMQXkDCWgEIl1n5KQ4AAAQIECBAgQIAAgaEEnIcAAQIECBAgQIAAgQsCCpULGG4SIBBJQBYCBAgQIECAAAECBAgQIEAgvoCEBAgQKCegUClnbSUCBAgQIECAAAEClwXcI0CAAAECBAgQIECAAIFmBBQqzWxVfYOaiAABAgQIECBAgAABAgQIEIgvICEBAgQIECDwRkCh8sbBnwQIECBAgEBMAakIECBAgAABAgQIECBAgACB+AJFEipUijBbhAABAgQIECBAgAABAgQIfEjA4wQIECBAgAABAi0IKFRa2CUzEiBAoGYBsxEgQIAAAQIECBAgQIAAAQLxBSQkQGChUPEiIECAAAECBAgQIEAgvICABAgQIECAAAECBAgQ6CugUOkr6HgC4wtYgQABAgQIECBAgAABAgQIEIgvICEBAgQIVC6gUKl8g4xHgAABAgQIEGhDwJQECBAgQIAAAQIECBAgQCC2gEIl768rAQIECBAgQIAAAQIECBAgEF9AQgIECBAgQIBADwGFSg88hxIgQIAAgZIC1iJAgAABAgQIECBAgAABAgTiC0hYr4BCpd69MRkBAgQIECBAgAABAgRaEzAvAQIECBAgQIAAgbACCpWwWysYAQLrCziCAAECBAgQIECAAAECBAgQiC8gIQECBLoJKFS6uTmKAAECBAgQIECAwDQCViVAgAABAgQIECBAgACBSQQUKpOwz3dRyQkQIECAAAECBAgQIECAAIH4AhISIECAAIGIAgqViLsqEwECBAgQINBHwLEECBAgQIAAAQIECBAgQIBAfIG1EypU1iZzAAECBAgQIECAAAECBAgQmFrA+gQIECBAgAABAqUFFCqlxa1HgAABAosFAwIECBAgQIAAAQIECBAgQCC+gIQEggkoVIJtqDgECBAgQIAAAQIECAwj4CwECBAgQIAAAQIECBC4KKBQuajhNoE4ApIQIECAAAECBAgQIECAAAEC8QUkJECAAIGCAgqVgtiWIkCAAAECBAgQuCjgNgECBAgQIECAAAECBAgQaEdAodJ1rxxHgAABAgQIECBAgAABAgQIxBeQkAABAgQIECBwJqBQOYPwhQABAgQIRBSQiQABAgQIECBAgAABAgQIEIgvIGEZAYVKGWerECBAgAABAgQIECBAgMD1Ah4lQIAAAQIECBAg0ISAQqWJbTIkAQL1CpiMAAECBAgQIECAAAECBAgQiC8gIQECBBYLhYpXAQECBAgQIECAAIHoAvIRIECAAAECBAgQIECAQG8BhUpvQicYW8D5CRAgQIAAAQIECBAgQIAAgfgCEhIgQIAAgdoFFCq175D5CBAgQIAAgRYEzEiAAAECBAgQIECAAAECBAgEF9hYLIInFI8AAQIECBAgQIAAAQIECBBYLBYQCBAgQIAAAQIE+gh4h0ofPccSIECAQDkBKxEgQIAAAQIECBAgQIAAAQLxBSQkULGAQqXizTEaAQIECBAgQIAAAQJtCZiWAAECBAgQIECAAIG4AgqVuHsrGYF1BTyfAAECBAgQIECAAAECBAgQiC8gIQECBAh0FFCodIRzGAECBAgQIECAwBQC1iRAgAABAgQIECBAgAABAtMIKFRKuluLAAECBAgQIECAAAECBAgQiC8gIQECBAgQIBBSQKEScluFIkCAAAEC3QUcSYAAAQIECBAgQIAAAQIECMQXkHB9AYXK+maOIECAAAECBAgQIECAAIFpBaxOgAABAgQIECBAoLiAQqU4uQUJECBAgAABAgQIECBAgAABAgQIEIgvICEBAtEEcqHyKlooeQgQIECAAAECBAgQ6CngcAIECBAgQIAAAQIECBC4JJALlUsPuEMggoAMBAgQIECAAAECBAgQIECAQHwBCQkQIECAQEkBhUpJbWsRIECAAAECBN4JuEWAAAECBAgQIECAAAECBAg0JNCxUGkooVEJECBAgAABAgQIECBAgACBjgIOI0CAAAECBAgQOBdQqJxL+EqAAAEC8QQkIkCAAAECBAgQIECAAAECBOILSEigkIBCpRC0ZQgQIECAAAECBAgQIHCdgMcIECBAgAABAgQIEGhDQKHSxj6ZkkCtAuYiQIAAAQIECBAgQIAAAQIE4gtISIAAAQJJQKGSEFwIECBAgAABAgQiC8hGgAABAgQIECBAgAABAgT6CyhU+huOewZnJ0CAAAECBAgQIECAAAECBOILSEiAAAECBAhUL6BQqX6LDEiAAAECBOoXMCEBAgQIECBAgAABAgQIECAQX2DuCRUqc38FyE+AAAECBAgQIECAAIF5CEhJgAABAgQIECBAoJeAQqUXn4MJECBQSsA6BAgQIECAAAECBAgQIECAQHwBCQkQqFlAoVLz7piNAAECBAgQIECAQEsCZiVAgAABAgQIECBAgEBgAYVK4M0VbT0BzyZAgAABAgQIECBAgAABAgTiC0hIgAABAgS6CihUuso5jgABAgQIECBQXsCKBAgQIECAAAECBAgQIECAwEQCBQuViRJalgABAgQIECBAgAABAgQIECgoYCkCBAgQIECAQEwBhUrMfZWKAAECBLoKOI4AAQIECBAgQIAAAQIECBCILyAhgQ4CCpUOaA4hQIAAAQIECBAgQIDAlALWJkCAAAECBAgQIECgvIBCpby5FQnMXUB+AgQIECBAgAABAgQIECBAIL6AhAQIEAgnoFAJt6UCESBAgAABAgQI9BdwBgIECBAgQIAAAQIECBAgcFlAoXLZI8Y9KQgQIECAAAHTx82vAAAQAElEQVQCBAgQIECAAIH4AhISIECAAAECRQUUKkW5LUaAAAECBAicC/hKgAABAgQIECBAgAABAgQIxBeIlFChEmk3ZSFAgAABAgQIECBAgACBIQWciwABAgQIECBAgMBbAYXKWwo3CBAgEE1AHgIECBAgQIAAAQIECBAgQCC+gIQECJQSUKiUkrYOAQIECBAgQIAAAQLvC3iEAAECBAgQIECAAAECjQgoVBrZKGPWKWAqAgQIECBAgAABAgQIECBAIL6AhAQIECBAIAsoVLKCKwECBAgQIEAgroBkBAgQIECAAAECBAgQIECAwAAClRcqAyR0CgIECBAgQIAAAQIECBAgQKByAeMRIECAAAECBOoXUKjUv0cmJECAAIHaBcxHgAABAgQIECBAgAABAgQIxBeQcPYCCpXZvwQAECBAgAABAgQIECAwBwEZCRAgQIAAAQIECBDoJ6BQ6efnaAIEyghYhQABAgQIECBAgAABAgQIEIgvICEBAgSqFlCoVL09hiNAgAABAgQIEGhHwKQECBAgQIAAAQIECBAgEFlAoRJ5d9fJ5rkECBAgQIAAAQIECBAgQIBAfAEJCRAgQIAAgc4CCpXOdA4kQIAAAQIESgtYjwABAgQIECBAgAABAgQIEIgvUGtChUqtO2MuAgQIECBAgAABAgQIEGhRwMwECBAgQIAAAQJBBRQqQTdWLAIECHQTcBQBAgQIECBAgAABAgQIECAQX0BCAgS6CChUuqg5hgABAgQIECBAgACB6QSsTIAAAQIECBAgQIAAgQkEFCoToFty3gLSEyBAgAABAgQIECBAgAABAvEFJCRAgACBeAIKlXh7KhEBAgQIECBAoK+A4wkQIECAAAECBAgQIECAAIErAgELlSsJ3SVAgAABAgQIECBAgAABAgQCCohEgAABAgQIECgroFAp6201AgQIECDwRsCfBAgQIECAAAECBAgQIECAQHwBCUMJKFRCbacwBAgQIECAAAECBAgQGE7AmQgQIECAAAECBAgQeCegUHln4RYBArEEpCFAgAABAgQIECBAgAABAgTiC0hIgACBYgIKlWLUFiJAgAABAgQIECBwVcB9AgQIECBAgAABAgQIEGhFQKHSyk7VOKeZCBAgQIAAAQIECBAgQIAAgfgCEhIgQIAAAQKnAgqVUwZ/ECBAgAABAlEF5CJAgAABAgQIECBAgAABAgTiC5RIqFApoWwNAgQIECBAgAABAgQIECDwYQHfIUCAAAECBAgQaEBAodLAJhmRAAECdQuYjgABAgQIECBAgAABAgQIEIgvICEBAgoVrwECBAgQIECAAAECBOILSEiAAAECBAgQIECAAIGeAgqVnoAOJ1BCwBoECBAgQIAAAQIECBAgQIBAfAEJCRAgQKBuAYVK3ftjOgIECBAgQIBAKwLmJECAAAECBAgQIECAAAECoQUUKqfb6w8CBAgQIECAAAECBAgQIEAgvoCEBAgQIECAAIHuAgqV7naOJECAAAECZQWsRoAAAQIECBAgQIAAAQIECMQXkLBaAYVKtVtjMAIECBAgQIAAAQIECLQnYGICBAgQIECAAAECUQUUKlF3Vi4CBLoIOIYAAQIECBAgQIAAAQIECBCILyAhAQIEOgkoVDqxOYgAAQIECBAgQIDAVALWJUCAAAECBAgQIECAAIEpBBQqU6jPeU3ZCRAgQIAAAQIECBAgQIAAgfgCEhIgQIAAgYACCpWAmyoSAQIECBAg0E/A0QQIECBAgAABAgQIECBAgEB8gXUTKlTWFfN8AgQIECBAgAABAgQIECAwvYAJCBAgQIAAAQIECgsoVAqDW44AAQIEsoArAQIECBAgQIAAAQIECBAgEF9AQgKxBBQqsfZTGgIECBAgQIAAAQIEhhJwHgIECBAgQIAAAQIECFwQUKhcwHCTQCQBWQgQIECAAAECBAgQIECAAIH4AhISIECAQDkBhUo5aysRIECAAAECBAhcFnCPAAECBAgQIECAAAECBAg0I6BQ6bxVDiRAgAABAgQIECBAgAABAgTiC0hIgAABAgQIEHgjoFB54+BPAgQIECAQU0AqAgQIECBAgAABAgQIECBAIL6AhEUEFCpFmC1CgAABAgQIECBAgAABAh8S8DgBAgQIECBAgACBFgQUKi3skhkJEKhZwGwECBAgQIAAAQIECBAgQIBAfAEJCRAgsFCoeBEQIECAAAECBAgQCC8gIAECBAgQIECAAAECBAj0FVCo9BV0/PgCViBAgAABAgQIECBAgAABAgTiC0hIgAABAgQqF1CoVL5BxiNAgAABAgTaEDAlAQIECBAgQIAAAQIECBAgEFsgFyqxE0pHgAABAgQIECBAgAABAgQIZAFXAgQIECBAgACBHgIKlR54DiVAgACBkgLWIkCAAAECBAgQIECAAAECBOILSEigXgGFSr17YzICBAgQIECAAAECBFoTMC8BAgQIECBAgAABAmEFFCpht1YwAusLOIIAAQIECBAgQIAAAQIECBCILyAhAQIECHQTUKh0c3MUAQIECBAgQIDANAJWJUCAAAECBAgQIECAAAECkwgoVIqyW4wAAQIECBAgQIAAAQIECBCILyAhAQIECBAgEFFAoRJxV2UiQIAAAQJ9BBxLgAABAgQIECBAgAABAgQIxBeQcG0BhcraZA4gQIAAAQIECBAgQIAAgakFrE+AAAECBAgQIECgtIBCpbS49QgQILBYMCBAgAABAgQIECBAgAABAgTiC0hIgEAwAYVKsA0VhwABAgQIECBAgMAwAs5CgAABAgQIECBAgAABAhcFFCoXNdyOIyAJAQIECBAgQIAAAQIECBAgEF9AQgIECBAgUFBAoVIQ21IECBAgQIAAgYsCbhMgQIAAAQIECBAgQIAAAQLtCHQtVNpJaFICBAgQIECAAAECBAgQIECgq4DjCBAgQIAAAQIEzgQUKmcQvhAgQIBARAGZCBAgQIAAAQIECBAgQIAAgfgCEhIoI6BQKeNsFQIECBAgQIAAAQIECFwv4FECBAgQIECAAAECBJoQUKg0sU2GJFCvgMkIECBAgAABAgQIECBAgACB+AISEiBAgMBioVDxKiBAgAABAgQIEIguIB8BAgQIECBAgAABAgQIEOgtoFDpTTj2CZyfAAECBAgQIECAAAECBAgQiC8gIQECBAgQIFC7gEKl9h0yHwECBAgQaEHAjAQIECBAgAABAgQIECBAgEB8gZknVKjM/AUgPgECBAgQIECAAAECBOYiICcBAgQIECBAgACBPgIKlT56jiVAgEA5ASsRIECAAAECBAgQIECAAAEC8QUkJECgYgGFSsWbYzQCBAgQIECAAAECbQmYlgABAgQIECBAgAABAnEFFCpx91aydQU8nwABAgQIECBAgAABAgQIEIgvICEBAgQIEOgooFDpCOcwAgQIECBAgMAUAtYkQIAAAQIECBAgQIAAAQIEphEoWahMk9CqBAgQIECAAAECBAgQIECAQEkBaxEgQIAAAQIEQgooVEJuq1AECBAg0F3AkQQIECBAgAABAgQIECBAgEB8AQkJrC+gUFnfzBEECBAgQIAAAQIECBCYVsDqBAgQIECAAAECBAgUF1CoFCe3IAECBAgQIECAAAECBAgQIECAAIH4AhISIEAgmoBCJdqOykOAAAECBAgQIDCEgHMQIECAAAECBAgQIECAAIFLAgqVSxxR7shBgAABAgQIECBAgAABAgQIxBeQkAABAgQIECgpoFApqW0tAgQIECBA4J2AWwQIECBAgAABAgQIECBAgEB8gUAJFSqBNlMUAgQIECBAgAABAgQIEBhWwNkIECBAgAABAgQInAsoVM4lfCVAgEA8AYkIECBAgAABAgQIECBAgACB+AISEiBQSEChUgjaMgQIECBAgAABAgQIXCfgMQIECBAgQIAAAQIECLQhoFBpY59MWauAuQgQIECAAAECBAgQIECAAIH4AhISIECAAIEkoFBJCC4ECBAgQIAAgcgCshEgQIAAAQIECBAgQIAAAQL9BWovVPondAYCBAgQIECAAAECBAgQIECgdgHzESBAgAABAgSqF1CoVL9FBiRAgACB+gVMSIAAAQIECBAgQIAAAQIECMQXkHDuAgqVub8C5CdAgAABAgQIECBAYB4CUhIgQIAAAQIECBAg0EtAodKLz8EECJQSsA4BAgQIECBAgAABAgQIECAQX0BCAgQI1CygUKl5d8xGgAABAgQIECDQkoBZCRAgQIAAAQIECBAgQCCwgEIl8OauF82zCRAgQIAAAQIECBAgQIAAgfgCEhIgQIAAAQJdBRQqXeUcR4AAAQIECJQXsCIBAgQIECBAgAABAgQIECAQX6DShAqVSjfGWAQIECBAgAABAgQIECDQpoCpCRAgQIAAAQIEYgooVGLuq1QECBDoKuA4AgQIECBAgAABAgQIECBAIL6AhAQIdBBQqHRAcwgBAgQIECBAgAABAlMKWJsAAQIECBAgQIAAAQLlBRQq5c2tOHcB+QkQIECAAAECBAgQIECAAIH4AhISIECAQDgBhUq4LRWIAAECBAgQINBfwBkIECBAgAABAgQIECBAgACBywIRC5XLCd0jQIAAAQIECBAgQIAAAQIEIgrIRIAAAQIECBAoKqBQKcptMQIECBAgcC7gKwECBAgQIECAAAECBAgQIBBfQMJIAgqVSLspCwECBAgQIECAAAECBIYUcC4CBAgQIECAAAECBN4KKFTeUrhBgEA0AXkIECBAgAABAgQIECBAgACB+AISEiBAoJSAQqWUtHUIECBAgAABAgQIvC/gEQIECBAgQIAAAQIECBBoRECh0shG1TmmqQgQIECAAAECBAgQIECAAIH4AhISIECAAAECWUChkhVcCRAgQIAAgbgCkhEgQIAAAQIECBAgQIAAAQLxBQokVKgUQLYEAQIECBAgQIAAAQIECBC4ScD3CBAgQIAAAQIE6hdQqNS/RyYkQIBA7QLmI0CAAAECBAgQIECAAAECBOILSEhg9gIKldm/BAAQIECAAAECBAgQmIOAjAQIECBAgAABAgQIEOgnoFDp5+doAmUErEKAAAECBAgQIECAAAECBAjEF5CQAAECBKoWUKhUvT2GI0CAAAECBAi0I2BSAgQIECBAgAABAgQIECAQWUCh8mZ3/UmAAAECBAgQIECAAAECBAjEF5CQAAECBAgQINBZQKHSmc6BBAgQIECgtID1CBAgQIAAAQIECBAgQIAAgfgCEtYqoFCpdWfMRYAAAQIECBAgQIAAgRYFzEyAAAECBAgQIEAgqIBCJejGikWAQDcBRxEgQIAAAQIECBAgQIAAAQLxBSQkQIBAFwGFShc1xxAgQIAAAQIECBCYTsDKBAgQIECAAAECBAgQIDCBgEJlAvR5Lyk9AQIECBAgQIAAAQIECBAgEF9AQgIECBAgEE9AoRJvTyUiQIAAAQIE+go4ngABAgQIECBAgAAB8293GQAAEABJREFUAgQIEIgvsGZChcqaYJ5OgAABAgQIECBAgAABAgRqEDADAQIECBAgQIBAWQGFSllvqxEgQIDAGwF/EiBAgAABAgQIECBAgAABAvEFJCQQSkChEmo7hSFAgAABAgQIECBAYDgBZyJAgAABAgQIECBAgMA7AYXKOwu3CMQSkIYAAQIECBAgQIAAAQIECBCILyAhAQIECBQTUKgUo7YQAQIECBAgQIDAVQH3CRAgQIAAAQIECBAgQIBAKwIKle475UgCBAgQIECAAAECBAgQIEAgvoCEBAgQIECAAIFTAYXKKYM/CBAgQIBAVAG5CBAgQIAAAQIECBAgQIAAgfgCEpYQUKiUULYGAQIECBAgQIAAAQIECHxYwHcIECBAgAABAgQINCCgUGlgk4xIgEDdAqYjQIAAAQIECBAgQIAAAQIE4gtISIAAAYWK1wABAgQIECBAgACB+AISEiBAgAABAgQIECBAgEBPAYVKT0CHlxCwBgECBAgQIECAAAECBAgQIBBfQEICBAgQIFC3gEKl7v0xHQECBAgQINCKgDkJECBAgAABAgQIECBAgACB0AKnhUrohMIRIECAAAECBAgQIECAAAECpwL+IECAAAECBAgQ6C6gUOlu50gCBAgQKCtgNQIECBAgQIAAAQIECBAgQCC+gIQEqhVQqFS7NQYjQIAAAQIECBAgQKA9ARMTIECAAAECBAgQIBBVQKESdWflItBFwDEECBAgQIAAAQIECBAgQIBAfAEJCRAgQKCTgEKlE5uDCBAgQIAAAQIEphKwLgECBAgQIECAAAECBAgQmEJAoVJW3WoECBAgQIAAAQIECBAgQIBAfAEJCRAgQIAAgYACCpWAmyoSAQIECBDoJ+BoAgQIECBAgAABAgQIECBAIL6AhOsKKFTWFfN8AgQIECBAgAABAgQIEJhewAQECBAgQIAAAQIECgsoVAqDW44AAQJZwJUAAQIECBAgQIAAAQIECBCILyAhAQKxBBQqsfZTGgIECBAgQIAAAQJDCTgPAQIECBAgQIAAAQIECFwQUKhcwHAzkoAsBAgQIECAAAECBAgQIECAQHwBCQkQIECAQDkBhUo5aysRIECAAAECBC4LuEeAAAECBAgQIECAAAECBAg0I5ALlV+6TOsYAgQIECBAgAABAgQIECBAIL6AhAQIECBAgAABAm8ENpbLpULljYU/CRAgQCCegEQECBAgQIAAAQIECBAgQIBAfAEJCRQRyO9QKbKQRQgQIECAAAECBAgQIEDgOgGPESBAgAABAgQIECDQgoBCpYVdMiOBmgXMRoAAAQIECBAgQIAAAQIECMQXkJAAAQIEFgoVLwICBAgQIECAAIHwAgISIECAAAECBAgQIECAAIG+AgqVvoLjH28FAgQIECBAgAABAgQIECBAIL6AhAQIECBAgEDlAgqVyjfIeAQIECBAoA0BUxIgQIAAAQIECBAgQIAAAQLxBeadUKEy7/2XngABAgQIECBAgAABAvMRkJQAAQIECBAgQIBADwGFSg88hxIgQKCkgLUIECBAgAABAgQIECBAgACB+AISEiBQr4BCpd69MRkBAgQIECBAgACB1gTMS4AAAQIECBAgQIAAgbACCpWwWyvY+gKOIECAAAECBAgQIECAAAECBOILSEiAAAECBLoJKFS6uTmKAAECBAgQIDCNgFUJECBAgAABAgQIECBAgACBSQSKFiqTJLQoAQIECBAgQIAAAQIECBAgUFTAYgQIECBAgACBiAIKlYi7KhMBAgQI9BFwLAECBAgQIECAAAECBAgQIBBfQEICawsoVNYmcwABAgQIECBAgAABAgSmFrA+AQIECBAgQIAAAQKlBRQqpcWtR4DAYsGAAAECBAgQIECAAAECBAgQiC8gIQECBIIJKFSCbag4BAgQIECAAAECwwg4CwECBAgQIECAAAECBAgQuCigULmoEee2JAQIECBAgAABAgQIECBAgEB8AQkJECBAgACBggIKlYLYliJAgAABAgQuCrhNgAABAgQIECBAgAABAgQIxBeIk1ChEmcvJSFAgAABAgQIECBAgACBoQWcjwABAgQIECBAgMCZgELlDMIXAgQIRBSQiQABAgQIECBAgAABAgQIEIgvICEBAmUEFCplnK1CgAABAgQIECBAgMD1Ah4lQIAAAQIECBAgQIBAEwIKlSa2yZD1CpiMAAECBAgQIECAAAECBAgQiC8gIQECBAgQWCwUKl4FBAgQIECAAIHoAvIRIECAAAECBAgQIECAAAECvQWqL1R6J3QCAgQIECBAgAABAgQIECBAoHoBAxIgQIAAAQIEahdQqNS+Q+YjQIAAgRYEzEiAAAECBAgQIECAAAECBAjEF5Bw5gIKlZm/AMQnQIAAAQIECBAgQGAuAnISIECAAAECBAgQINBHQKHSR8+xBAiUE7ASAQIECBAgQIAAAQIECBAgEF9AQgIECFQsoFCpeHOMRoAAAQIECBAg0JaAaQkQIECAAAECBAgQIEAgroBCJe7erpvM8wkQIECAAAECBAgQIECAAIH4AhISIECAAAECHQUUKh3hHEaAAAECBAhMIWBNAgQIECBAgAABAgQIECBAIL5AnQkVKnXui6kIECBAgAABAgQIECBAoFUBcxMgQIAAAQIECIQUUKiE3FahCBAg0F3AkQQIECBAgAABAgQIECBAgEB8AQkJEFhfQKGyvpkjCBAgQIAAAQIECBCYVsDqBAgQIECAAAECBAgQKC6gUClObkECBAgQIECAAAECBAgQIECAAIH4AhISIECAQDQBhUq0HZWHAAECBAgQIDCEgHMQIECAAAECBAgQIECAAAEClwRCFiqXErpDgAABAgQIECBAgAABAgQIhBQQigABAgQIECBQUkChUlLbWgQIECBA4J2AWwQIECBAgAABAgQIECBAgEB8AQkDCShUAm2mKAQIECBAgAABAgQIEBhWwNkIECBAgAABAgQIEDgXUKicS/hKgEA8AYkIECBAgAABAgQIECBAgACB+AISEiBAoJCAQqUQtGUIECBAgAABAgQIXCfgMQIECBAgQIAAAQIECBBoQ0Ch0sY+1TqluQgQIECAAAECBAgQIECAAIH4AhISIECAAAECSUChkhBcCBAgQIAAgcgCshEgQIAAAQIECBAgQIAAAQLxBcZPqFAZ39gKBAgQIECAAAECBAgQIEDgZgHfJUCAAAECBAgQqF5AoVL9FhmQAAEC9QuYkAABAgQIECBAgAABAgQIEIgvICGBuQsoVOb+CpCfAAECBAgQIECAwDwEpCRAgAABAgQIECBAgEAvAYVKLz4HEyglYB0CBAgQIECAAAECBAgQIEAgvoCEBAgQIFCzgEKl5t0xGwECBAgQIECgJQGzEiBAgAABAgQIECBAgACBwAIKlbPN9YUAAQIECBAgQIAAAQIECBCILyAhAQIECBAgQKCrgEKlq5zjCBAgQIBAeQErEiBAgAABAgQIECBAgAABAvEFJKxUQKFS6cYYiwABAgQIECBAgAABAm0KmJoAAQIECBAgQIBATAGFSsx9lYoAga4CjiNAgAABAgQIECBAgAABAgTiC0hIgACBDgIKlQ5oDiFAgAABAgQIECAwpYC1CRAgQIAAAQIECBAgQKC8gEKlvPncV5SfAAECBAgQIECAAAECBAgQiC8gIQECBAgQCCegUAm3pQIRIECAAAEC/QWcgQABAgQIECBAgAABAgQIEIgvsF5Chcp6Xp5NgAABAgQIECBAgAABAgTqEDAFAQIECBAgQIBAUQGFSlFuixEgQIDAuYCvBAgQIECAAAECBAgQIECAQHwBCQlEElCoRNpNWQgQIECAAAECBAgQGFLAuQgQIECAAAECBAgQIPBWQKHylsINAtEE5CFAgAABAgQIECBAgAABAgTiC0hIgAABAqUEFCqlpK1DgAABAgQIECDwvoBHCBAgQIAAAQIECBAgQIBAIwIKlR4b5VACBAgQIECAAAECBAgQIEAgvoCEBAgQIECAAIEsoFDJCq4ECBAgQCCugGQECBAgQIAAAQIECBAgQIBAfAEJCwgoVAogW4IAAQIECBAgQIAAAQIEbhLwPQIECBAgQIAAAQL1CyhU6t8jExIgULuA+QgQIECAAAECBAgQIECAAIH4AhISIDB7AYXK7F8CAAgQIECAAAECBOYgICMBAgQIECBAgAABAgQI9BNQqPTzc3QZAasQIECAAAECBAgQIECAAAEC8QUkJECAAAECVQsoVKreHsMRIECAAAEC7QiYlAABAgQIECBAgAABAgQIEIgs8KZQiZxQNgIECBAgQIAAAQIECBAgQOCNgD8JECBAgAABAgQ6CyhUOtM5kAABAgRKC1iPAAECBAgQIECAAAECBAgQiC8gIYFaBRQqte6MuQgQIECAAAECBAgQaFHAzAQIECBAgAABAgQIBBVQqATd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AgQIEFgsFCpeBQQIECBAgEB0AfkIECBAgAABAgQIECBAgACB+AKjJ1SojE5sAQIECBAgQIAAAQIECBAg8DEB3ydAgAABAgQIEKhdQKFS+w6ZjwABAi0ImJEAAQIECBAgQIAAAQIECBCILyAhgZkLKFRm/gIQnwABAgQIECBAgMBcBOQkQIAAAQIECBAgQIBAHwGFSh89xxIoJ2AlAgQIECBAgAABAgQIECBAIL6AhAQIECBQsYBCpeLNMRoBAgQIECBAoC0B0xIgQIAAAQIECBAgQIAAgbgCCpXzvfWVAAECBAgQIECAAAECBAgQiC8gIQECBAgQIECgo4BCpSOcwwgQIECAwBQC1iRAgAABAgQIECBAgAABAgTiC0hYp4BCpc59MRUBAgQIECBAgAABAgRaFTA3AQIECBAgQIAAgZACCpWQ2yoUAQLdBRxJgAABAgQIECBAgAABAgQIxBeQkAABAusLKFTWN3MEAQIECBAgQIAAgWkFrE6AAAECBAgQIECAAAECxQUUKsXJLUiAAAECBAgQIECAAAECBAgQiC8gIQECBAgQiCagUIm2o/IQIECAAAECQwg4BwECBAgQIECAAAECBAgQIBBfYK2ECpW1uDyZAAECBAgQIECAAAECBAjUImAOAgQIECBAgACBkgIKlZLa1iJAgACBdwJuESBAgAABAgQIECBAgAABAvEFJCQQSEChEmgzRSFAgAABAgQIECBAYFgBZyNAgAABAgQIECBAgMC5gELlXMJXAvEEJCJAgAABAgQIECBAgAABAgTiC0hIgAABAoUEFCqFoC1DgAABAgQIECBwnYDHCBAgQIAAAQIECBAgQIBAGwIKlT775FgCBAgQIECAAAECBAgQIEAgvoCEBAgQIECAAIEkoFBJCC4ECBAgQCCygGwECBAgQIAAAQIECBAgQIBAfAEJxxdQqIxvbAUCBAgQIECAAAECBAgQuFnAdwkQIECAAAECBAhUL6BQqX6LDEiAQP0CJiRAgAABAgQIECBAgAABAgTiC0hIgMDcBRQqc38FyE+AAAECBAgQIDAPASkJECBAgAABAgQIECBAoJeAQqUXn4NLCViHAAECBAgQIECAAAECBAgQiC8gIQECBAgQqFlAoVLz7piNAAECBAgQaEnArAQIECBAgAABAgQIECBAgEBggbNCJXBC0QgQIECAAAECBAgQIECAAIEzAV8IECBAgAABAgS6CihUuso5jgABAgTKC1iRAAECBAgQIECAAAECBAgQiC8gIYFKBRQqlW6MsQgQIECAAAECBAgQaFPA1AQIECBAgAABAgQIxBRQqMTcV6kIdBVwHAECBAgQIECAAAECBAgQIBBfQEICBAgQ6CCgUOmA5hACBAgQIECAAIEpBaxNgAABAgQIECBAgAABAgTKCyhUSptbjwABAgQIECBAgAABAgQIEIgvICEBAgQIECAQTkChEm5LBSJAgAABAv0FnIEAAQIECBAgQIAAAQIECBCILyDhegIKlfW8PJsAAQIECBAgQIAAAQIE6hAwBQECBAgQIECAAIGiAgqVotwWI0CAwLmArwQIECBAgAABAgQIECBAgEB8AQkJEIgkoFCJtJuyECBAgAABAgQIEBhSwLkIECBAgAABAgQIECBA4K2AQuUthRvRBOQhQIAAAQIECBAgQIAAAQIE4gtISIAAAQIESgkoVEpJW4cAAQIECBAg8L6ARwgQIECAAAECBAgQIECAAIFGBHoUKo0kNCYBAgQIECBAgAABAgQIECDQQ8ChBAgQIECAAAECWUChkhVcCRAgQCCugGQECBAgQIAAAQIECBAgQIBAfAEJCRQQUKgUQLYEAQIECBAgQIAAAQIEbhLwPQIECBAgQIAAAQIE6hdQqNS/RyYkULuA+QgQIECAAAECBAgQIECAAIH4AhISIEBg9gK5UPll9goACBAgQIAAAQIEgguIR4AAAQIECBAgQIAAAQIE+gkoVPr5lTnaKgQIECBAgAABAgQIECBAgEB8AQkJECBAgACBqgVyoVL1gIYjQIAAAQIE2hAwJQECBAgQIECAAAECBAgQIBBfYM4JFSpz3n3ZCRAgQIAAAQIECBAgMC8BaQkQIECAAAECBAh0FlCodKZzIAECBEoLWI8AAQIECBAgQIAAAQIECBCILyAhAQK1CihUat0ZcxEgQIAAAQIECBBoUcDMBAgQIECAAAECBAgQCCqgUAm6sWJ1E3AUAQIECBAgQIAAAQIECBAgEF9AQgIECBAg0EVAodJFzTEECBAgQIAAgekErEyAAAECBAgQIECAAAECBAhMIFC4UJkgoSUJECBAgAABAgQIECBAgACBwgKWI0CAAAECBAjEE1CoxNtTiQgQIECgr4DjCRAgQIAAAQIECBAgQIAAgfgCEhJYU0ChsiaYpxMgQIAAAQIECBAgQKAGATMQIECAAAECBAgQIFBWQKFS1ttqBAi8EfAnAQIECBAgQIAAAQIECBAgEF9AQgIECIQSUKiE2k5hCBAgQIAAAQIEhhNwJgIECBAgQIAAAQIECBAg8E5AofLOItYtaQgQIECAAAECBAgQIECAAIH4AhISIECAAAECxQQUKsWoLUSAAAECBAhcFXCfAAECBAgQIECAAAECBAgQiC8QJaFCJcpOykGAAAECBAgQIECAAAECYwg4JwECBAgQIECAAIFTAYXKKYM/CBAgEFVALgIECBAgQIAAAQIECBAgQCC+gIQECJQQUKiUULYGAQIECBAgQIAAAQIfFvAdAgQIECBAgAABAgQINCCgUGlgk4xYt4DpCBAgQIAAAQIECBAgQIAAgfgCEhIgQIAAAYWK1wABAgQIECBAIL6AhAQIECBAgAABAgQIECBAgEBPgQYKlZ4JHU6AAAECBAgQIECAAAECBAg0IGBEAgQIECBAgEDdAgqVuvfHdAQIECDQioA5CRAgQIAAAQIECBAgQIAAgfgCEs5aQKEy6+0XngABAgQIECBAgACBOQnISoAAAQIECBAgQIBAdwGFSnc7RxIgUFbAagQIECBAgAABAgQIECBAgEB8AQkJECBQrYBCpdqtMRgBAgQIECBAgEB7AiYmQIAAAQIECBAgQIAAgagCCpWoO9sll2MIECBAgAABAgQIECBAgACB+AISEiBAgAABAp0EFCqd2BxEgAABAgQITCVgXQIECBAgQIAAAQIECBAgQCC+QI0JFSo17oqZCBAgQIAAAQIECBAgQKBlAbMTIECAAAECBAgEFFCoBNxUkQgQINBPwNEECBAgQIAAAQIECBAgQIBAfAEJCRBYV0Chsq6Y5xMgQIAAAQIECBAgML2ACQgQIECAAAECBAgQIFBYQKFSGNxyBLKAKwECBAgQIECAAAECBAgQIBBfQEICBAgQiCWgUIm1n9IQIECAAAECBIYScB4CBAgQIECAAAECBAgQIEDggkDQQuVCQjcJECBAgAABAgQIECBAgACBoAJiESBAgAABAgTKCShUyllbiQABAgQIXBZwjwABAgQIECBAgAABAgQIEIgvIGEYAYVKmK0UhAABAgQIECBAgAABAsMLOCMBAgQIECBAgAABAm8EFCpvHPxJgEBMAakIECBA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' x='0' y='0' width='1620' height='650'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1620' height='650' viewBox='0 0 1620 650'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABlQAAAKKCAYAAABLdbb0AAAQAElEQVR4AezdTXJcx7km4CpQ0HWECRp34qngFZg7ED12OCxa0pjsFYi9AvKuQLorAD1ChPCnHnhM9grkXoHYK5B6Yg8URHUmCJAACIKo85Mn8zuPo4qoKtQ5+b1PFhUOvKzCxsL/CBAgQIAAAQIECBAgQIAAgegC8hEgQGBUgaOjo88PDw93Dw4OfkrXlesBgwMG/h5U8xr4eX9//8e0H8fpv1NP83+vuv4HUaHSVc5xBAgQIFBQwFIECBAgQIAAAQIECBAgUKPA7u7udv4h5cnJycvVavU4zbiTri4EOgo4jMAoAtvL5fJ+OvMX6b9Tz/J/r9J/t3L5u5sKls/S47e+KFRuTeWJBAgQIECAAAECBAgQuEHAtwgQIECAwMwEcply9+7dFyn2F+nqQoAAgZYEcvn7OBUsr1K5cutipVehkt8akxb7JrU4+e18x+n2C9cDBgcMWvx7YGavW68BrwGvAa8BrwGvAa8BrwGvAa+B6K+B/f39b9PPMNb6l6gt/WTIrARuIzDkc+7du/f07F99D3la5yJAgEBpgVysvEz/P+jRxxZeu1DJJUr6Px+5QPk5vzUmLfBdanHy2/lyE/0g3XddLBgw8BrwGvAa8BrwGvAa8BoY/jXAlKnXgNeA14DXQK/XQPrB75P0M4yX+V/VL/yPAIFeAnt7ezvp79OTXidxMAECBOoR2EmjPM//+CJ9/eDl1oVKOtFfU0PzYy5R0n8sc4Gy/cGz+sY1Ah4iQIAAAQIECBAgQIAAAQIEKhDYuXfv3jfjzeHMBOYh8Omnn/p7NI+tlpLArATyP75IXciPH/rHFx8tVHLbnIqUF+lEPyS5/Itb0hcXAgQIECBAIKSAUAQIECBAgACBeQjkf4U6j6RSEhhJYLVa+TnhSLZOS6CIgEU+KJC6kPtbW1vH1z3hxkLl6Ojo0ebm5o/pwPyW2vTFhQABAgQIECBAgAABAgQITCtgdQIECBAgQIAAAQIjCzzY39//9uoaHyxUDg8Pn56cnDxPB/hor4TgQoAAgYEEnIYAAQIECBAgQIAAAQIECBCILyAhAQKNCyyXyycHBweXPt7w2kIllymr1epZ43mNT4AAAQIECBAgQIBAJwEHESBAgAABAgQIECBAgEASeHbx96m8V6gcHx9/o0xJTC7tCpicAAECBAgQIECAAAECBAgQiC8gIQECBAgQGF9g++7du0/Pl7lUqOzt7e28fv36u/Nv+kqAAAECBAgQIDCOgLMSIECAAAECBAgQIECAAAEC9Qvkj/7a3d09/dUolwqVzc3NF7cY31MIECBAgAABAgQIECBAgACB+AISEiBA4CaBnZu+6XsECBCIJHDv3r3T36XytlA5ODh4lAL6D2FCcCFAgACBCAIyECBAgAABAgQIECBAgMBYAsvl8vRfa491fuclcHsBzyQwvsBqtXqSV3lbqKQ7z9LVhQABAgQIECBAgAABAgRKCViHAIFJBNIPRfwgeBJ5i0YS8Pco0m7KQoDALQS2j46OPj8tVLw75RZcnkKAwHsCHiBAgAABAgQIECBAgECjAj6ho9GNM/Y0AldXPT4+VkpeRXGfAIHwAicnJ/dPC5WU9PTtKumrCwECBAgQIECAAIFIArIQIECAAIHrBBQq16l4jMAtBX799Vd/h25p5WkECIQSeLCxt7eX/wN4P1SsMGEEIUCAAAECBAgQIECAAAECBEYQ2N7d3a3oX9iPkNApCYwo8Mknn/xuxNM7NQECBGoVuL+xubn5ea3TmYsAAQIECBBoQMCIBAgQIECAAIEGBX7/+9/7gXCD+2bkagQUktVshUEIFBSw1Hb+yK8vOBAgQIAAAQIECBAgQIAAgcgCshG4KvCvf/3rD1cfc58AgdsJrFYrn3ZzOyrPIkAglsBpoaJRjrWp0hAgEE9AIgIECBAgQIAAAQIEBhZYLpefDXxKpyMwGwGFymhb7cQECFQukN+hkn+HSuVjGo8AAQIECBAgQIAAgboFTEeAAIG2BFKh4uchbW2ZaesS8A+069oP0xAgUEhAoVII2jKVCxiPAAECBAgQIECAAAECBOYmoFCZ247nvK6DCKRC0kd+DSLpJAQItCaQC5XWZjYvAQIECBAgQGCWAkITIECAAAECwwmsViuFynCczjQjgePj4+3098c7VGa056ISIPBOoFSh8m5FtwgQIECAAAECBAgQIECAAIGoAi3lUqi0tFtmrUYglSl/rGYYgxAgQKCwgEKlMLjlCBAgQKBmAbMRIECAAAECBAjMSGBnd3fXv7Kf0YaLOoyAj/saxtFZphawPoFuAgqVbm6OIkCAAAECBAgQIECAwDQCViVAYDCB3/72t96lMpimE81F4OTkxN+buWy2nAQIvCegUHmPxAMECIwp4NwECBAgQIAAAQIECBCoRWBjY8NHF9WyGeZoRmC1Wt3qF9I3E8igBAgQWENAobIGlqcSIECAAAECBAjMQkBIAgQIEJiJwHK59C/tZ7LXYg4q4KPyBuV0MgIEWhJQqLS0W7ea1ZMIECBAgAABAgQIECBAgACB2wi0/S/tb5PQcwiMIuAdKqOwOikBAi0IKFRa2CUzEiBAgACBaALyECBAgAABAgTqEHhQxximINCGwPfff69MaWOrTEmgHoFgkyhUgm2oOAQIECBAgAABAgQIECAwjICzzEJg++jo6PNZJBWSwAACn3zyyWcDnMYpCBAg0KyAQqXZrTM4AQIEbhTwTQIECBAgQIAAAQIEbiFwcnLiX9zfwslTCGSB1WrlXV0Zoq6raQgQKCigUCmIbSkCBAgQIECAAAECBC4KuE2AAIEqBPyAuIptMEQLAqlQUUC2sFFmJEBgNAGFymi0ThxeQEACBAgQIECAAAECBAgQiCDgB8QRdnHMDM59UUABeVHDbQIEZiegUJndlgtMgAABAgQIzElAVgIECBAgQOCjAju7u7vbH32WJxCYuYDfNzTzF4D4BAicCtRcqJwO6A8CBAgQIECAAAECBAgQIEAgtMDk4X73u999PvkQBiBQucBqtfqi8hGNR4AAgdEFFCqjE1uAAAECBGILSEeAAAECBAgQINC6wOvXr32MUeubaP7RBVKh4u/J6MoWqFvAdAQWC4WKVwEBAgQIECBAgAABAgSiC8hHgMCNAsvl0r+8v1HIN+cusLe3t5MM/L6hhOBCgMC8BRQq895/6Qk0IWBIAgQIECBAgAABAgQIjCzg96iMDOz0bQtsbm4W+Vi8tpVMT4DAHAQUKnPYZRkJECBAgAABAgTGFnB+AgQIEGhcYGtr66+NRzA+gTEFfNzXmLrOTYBAMwIKlWa2asxBnZsAAQIECBAgQIAAAQIECMxbYLlczuAHxvPeY+l7Cfj70YvPwQQIRBFQqETZSTkIECBAgEB0AfkIECBAgAABAiMKrFYrv0dlRF+nblfg+++/z787Jf8OlXZDmJwAgbYEKp5WoVLx5hiNAAECBAgQIECAAAECBNoSMG3TAttHR0d+T0TTW2j4MQTu3Lnj4/DGgHVOAgSaFFCoNLlthiZAgMAoAk5KgAABAgQIECBAYNYCq9XKxxrN+hUg/HUC6e+Fd29dB9P2Y6YnQKCjgEKlI5zDCBAgQIAAAQIECBCYQsCaBAgQGE8g/eD4yXhnd2YC7Qns7e3lj/rKH/nV3vAmJkCAwAgCCpURUJ2SwAcFfIMAAQIECBAgQIAAAQIEahbwsV81705LswWZdXNz08fgBdlLMQgQGEZAoTKMo7MQIECAAAECBMIICEKAAAECBOYscHJy8mzO+WUncEXg8ZX77hIgQGDWAtEKlVlvpvAECBAgQIAAAQIECBAgQGAmAmPGfLC7u7s95gLOTaAFgbOP+/J7hVrYLDMSIFBMQKFSjNpCBAgQIEDgXMBXAgQIECBAgACBmgXu3bv3Tc3zmY1ACYFPP/3U34MS0NYILiBeNAGFSrQdlYcAAQIECBAgQIAAAQJDCDgHgRkLnJycfDHj+KITOBVYrVb+HpxK+IMAAQLvBBQq7yzcIkAgkIAoBAgQIECAAAECBAgQ6CqwXC7vHx0d+WXcXQEd17zAwcHBoxRiJ12rvxiQAAECJQUUKiW1rUWAAAECBAgQIEDgnYBbBAgQIFCxwOvXr/3r/Ir3x2ijCzwefQULECBAoEEBhUqDm1bHyKYgQIAAAQIECBAgQIAAAQJxBZbL5WO/nD7vr+vcBPb29vI7Ux7MLbe8BAgQuI2AQuU2Sp5DgAABAgQItClgagIECBAgQIBAd4Htra2t/LFH3c/gSAINCmxubj5tcGwjEyAwd4FC+RUqhaAtQ4AAAQIECBAgQIAAAQIErhPwWNUCPvar6u0x3EgC3p0yEqzTEiDQvoBCpf09lIAAAQJTClibAAECBAgQIECAQGSBB0dHR59HDigbgYsCBwcH+V1Z+SO/Lj7sNoEs4EqAQBJQqCQEFwIECBAgQIAAAQIEIgvIRoAAge4CJycnz7of7UgCzQk8bm5iAxMgQKCggEKlILalCHQScBABAgQIECBAgAABAgQITCngXSpT6s9p7Ymznr0by8d9TbwPlidAoG4BhUrd+2M6AgQIECBAgEATAoYkQIAAAQKRBbxLJfLuynYukF7n3p1yjuErAQIEPiCgUFksPkDjYQIECBAgQIAAAQIECBAgQCCQQJ8o3qXSR8+x1QucvTtFoVL9ThmQAIGpBRQqU++A9QkQIECAwK0EPIkAAQIECBAgQGBKgRO/S2VKfmuPLJBe389HXsLpCRC4tYAn1iygUKl5d8xGgAABAgQIECBAgACBlgTMSiC2gHepxN7f2aY7ODh4lMLvpKsLAQIECHxEQKHyESDfJkBgPgKSEiBAgAABAgQIECBA4CaBE+9SuYnH99oVeNbu6N0mdxQBAgS6CihUuso5jgABAgQIECBAgEB5ASsSIECAwLQC3qUyrb/VBxbw7pSBQZ2OAIHwAgqV8FtcU0CzECBAgAABAgQIECBAgACBtgW8S+U2++c5LQjs7e3lj/ny7pQWNsuMBAhUI6BQqWYrDEKAAAECBAhUIWAIAgQIECBAgMDNAg/O/lX/zc/yXQKVC2xubj5NI+ZSJX1xIUCAwAwFOkRWqHRAcwgBAgQIECBAgAABAgQIEJhSwNqTC/hX/ZNvgQH6CJy9O+Vxn3M4lgABAnMUUKjMcddlJkCAwLQCVidAgAABAgQIECDQusCOd6m0voXznv/TTz/9dt4C0hcSsAyBcAIKlXBbKhABAgQIECBAgAABAv0FnIEAAQIfFfju8PDws48+yxMIVCaQy8DVavVFZWMZhwABAk0IKFSa2CZDElhTwNMJECBAgAABAgQIECBAYGyB7fRD6edjL+L8BG4U6PZNH1nXzc1RBAgQWChUvAgIECBAgAABAgQmEbAoAQIECBAIIPDg4ODgmwA5RJiJwOHh4dMUdSddXQgQIECgg4BCpQPaYrFwFAECBAgQIECAAAECBAgQIBBf9TtJVgAAEABJREFU4DYJn6UfUvvor9tIec6kAnt7ezur1cq7UybdBYsTINC6gEKl9R00PwECBAgQ+KCAbxAgQIAAAQIECBQQ8NFfBZAt0V9gc3PzuP9ZnIEAgToFTFVKQKFSSto6BAgQIECAAAECBAgQIPC+gEcIxBDw0V8x9jFsiuPj4/zRdPfDBhSMAAEChQQUKoWgLUOAQEwBqQgQIECAAAECBAgQIHAm8Ozo6OiPZ7d9IVCNQP6or9evX/uor5474nACBAhkAYVKVnAlQIAAAQIECBAgEFdAMgIECBAoI7Cdfmj9vMxSViFwe4HNzc0X6dnb6epCgAABAj0FFCo9AR0+toDzEyBAgAABAgQIECBAgACBNgSWy+X9/f39b9uYtrYpzTOGwOHhYX497oxxbuckQIDAHAUUKnPcdZkJECBAgACBYQWcjQABAgQIECBwJpBKlSdHR0efn931hcBkAgcHB49Wq9WTyQawMAECBAIKbATMJBIBAgQIECBAgAABAgQIECBwRcDdcgInJyfPd3d3fcRSOXIrXRHIvzclPeT3piQEFwIECAwp4B0qQ2o6FwECBAiMJeC8BAgQIECAAAECBFoS2Nna2tptaWCzxhHIZd7Z703xUV9xtnVOSWQlULWAQqXq7TEcAQIECBAgQIAAAQLtCJiUAAEClwS+ODw8fHrpEXcIFBC4e/fui7SMMiUhuBAgQGBoAYXK0KLOR6BVAXMTIECAAAECBAgQIECAwKACq9Xq2dHR0aNBT+pkBG4QSCXet8vl8v4NT1ksfJMAAQIEOgsoVDrTOZAAAQIECBAgQKC0gPUIECBAgEBrAicnJ9+lUuWPrc1t3vYEUpnyNJV4T9qb3MQECBBoRyAXKq/aGbfpSQ1PgAABAgQIECBAgAABAgQIxBe4mnA7lSo/pB92f3b1G+4TGErg+Pj4m1SmPBvqfM5DgAABAtcL5ELl+u94lAABAgQIEJihgMgECBAgQIAAAQIjCOzkUmV3d3d7hHM75cwF8jugXr9+/d3MGcQnQGBtAQd0EVCodFFzDAECBAgQIECAAAECBAhMJ2BlAg0K5N9rcffu3RdKlQY3r+KR9/b2Tsu6ikc0GgECBEIJKFRCbacwBAi0IGBGAgQIECBAgAABAgTmKZBLla2trW/nmV7qoQVymbK5ufkinXcnXV0qFDASAQLxBBQq8fZUIgIECBAgQIAAAQJ9BRxPgAABAuMJPN7f31eqjOc7izPndzp98sknxymsMiUhuBAgQKCUgEKllLR1CgpYigABAgQIECBAgAABAgQI1CuwXC6fHB4ePq13wlYmm+ecuUzJHx+XXkf35ykgNQECBKYTUKhMZ29lAgQIECBAYM4CshMgQIAAAQKzFlitVs+UKrN+CXQKnz/mS5nSic5BBAgQGESgU6EyyMpOQoAAAQIECBAgQIAAAQIECFQtYLhxBZQq4/pGO3suU/LvTPHOlGg7Kw8BAi0JKFRa2i2zEiBAgMA6Ap5LgAABAgQIECBAoHqBXKr4nSrVb9PkA56XKWkQvzMlIbgQuCLgLoFiAgqVYtQWIkCAAAECBAgQIECAwFUB9wkQILBYLJfLJwcHB7sL/yNwjYAy5RoUDxEgQGAiAYXKRPCWJRBCQAgCBAgQIECAAAECBAgQGErgcS5V8i8cH+qEztO+wNHR0R83Nzd/TEmmfWdKGsCFAAECBBYLhYpXAQECBAgQIECAQGgB4QgQIECAQEMCj7e2tn48PDz8rKGZjTqSQCpTHp2cnLxMp99OVxcCBAgQqEBAoVLBJtwwgm8RIECAAAECBAgQIECAAAEC8QUuJtxZrVYv9/f3/3rxQbfnJZBKtaepTHmeUitTEoILAQIEahFQqNSyE+YgQIAAAQLNChicAAECBAgQIEBgYIGd5XL5Q/6h+sDndboGBPK+p1LtWQOjGpEAgdkJCKxQ8RogQIAAAQIECBAgQIAAgfgCEhJoUCD/UN3vVWlw4zqOnH9/Ttrv47zvHU/hMAIECBAYWUChMjKw0xMgQGAIAecgQIAAAQIECBAgQGC2An6vygy2fm9vbyf//pwU9Yt0dZmxgOgECNQtoFCpe39MR4AAAQIECBAgQKAVAXMSIECAwHgCp79X5ejo6PPxlnDmqQSOj4+/2dzc/DGtv5OuLgQIECBQsYBCpeLNMVpJAWsRIECAAAECBAgQIECAAIGqBXZOTk5e5t+vUfWU1Q9Xz4C7u7vb+SO+Xr9+/V2aajtdXQgQIECgcgGFSuUbZDwCBAgQIECAwFsBNwgQIECAAIHZC+Tfr5F+CL+bipXPZo/RMEB+t5GP+Gp4A41OgMBsBYoVKrMVFpwAAQIECBAgQIAAAQIECMxIQNQiAo9TsfIyFSuPiqxmkcEE8rtSUhn2bX63UTqpj/hKCC4ECBBoSUCh0tJumZUAAQIExhZwfgIECBAgQIAAAQKtCOQfxj9PpcqL9AN671ZpYNfO35WSyrAnDYxrRALRBeQj0ElAodKJzUEECBAgQIAAAQIECBCYSsC6BAgQuCTwIP2A/p+pVHl66VF3qhHwrpRqtsIgBAgQ6C2gUOlN6AQECKwl4MkECBAgQIAAAQIECBAgMLTAdipVnh0cHPyU3wUx9Mmdr7vA/v7+X7e2tn5K+zO/d6V0Z3MkAQIEqhVQqFS7NQYjQIAAAQIECBCYSsC6BAgQIECgUYGd/Ls5UrGye3h46GPAJtzEvb29nbQPL5bL5Q9pjO10dSFAgACBAAIKlQCbeCWCuwQIECBAgAABAgQIECBAgEB8gZsSPl6tVqcfA5Y/buqmJ/resALZO5VZ325ubv6UzvwgXV0IECBAIJCAQiXQZopCgAABAgTaETApAQIECBAgQIDAyAKnHwO2tbX148HBwaOR15r96c+KlKfJ28d7zf7VAIAAgcsCse4pVGLtpzQECBAgQIAAAQIECBAgMJSA8xCIIbCTYjxPpcpP6eqjwBLGkJcrRcqzdG4f75UQXAgQIBBVQKESdWflIkBg9gIACBAgQIAAAQIECBAgcEEgFyv5o8Be5WLl6Ojo8wvfc3NNgex3eHh4vLW19fNqtVKkrOnn6cMKOBsBAuUEFCrlrK1EgAABAgQIECBAgMBlAfcIECBAYBqBxycnJy9TsfIiXX0c2C33IL8bJXl9k64vsl8qUr645aGeRoAAAQJBBBQqQTZSjCkErEmAAAECBAgQIECAAAECBJoWyL80/fzjwB4dHh5+1nSakYbf3d3dTjanvx8lLfFduma39MWFAAECBOYmoFCZ247LS4AAAQIECMxLQFoCBAgQIECAwMcF8seBPV+tVvnjwI4PDg68ayWZ5Y/12t/f/3Zra+unZONjvZKJCwECBOYuUHWhMvfNkZ8AAQIECBAgQIAAAQIECMxBQMaqBPLHWJ2/a2U3lwpVTTfiMPkjvXLew8PD3VQq/Zw/1mu5XD5JS26nqwsBAgQIEFgoVLwICBAgQIBAPwFHEyBAgAABAgQIEIgokN+1cv67Vn5KBUN+58o3qXD4Y6SwuURJ2U5/L0p+J0ouUVar1eOUUYmSEFwIELgk4A4BhYrXAAECBAgQIECAAAECBOILSEiAAIFeArlcye9c+S4VDv9MBUQuWE7fvZILiV5nnuDgXAqlDOclys9phPPfi6JESRguBAgQIPBhAe9Q+bCN7xAgUIuAOQgQIECAAAECBAgQIECgJoFcsJy+e2Vra+vn/f39H1NBkT8m61EuK2oZNJc9eZ4026M047fpmufMH+X1zzTjeYmSbrpUI2AQAgQIVC6gUKl8g4xHgAABAgQIECDQhoApCRAgQIDAXAWWy+X9lD1/TNbzs3ewrM7Ki+PDw8On6fZfc7GRnjPK5R//+MdneY1UnHyTvn6bvuaPJ/splz15nrTo8zTjk3TNc3oXSgJxIUCAAIFuAgqVbm7RjpKHAAECBAgQIECAAAECBAgQiC9QLOFZefHFarV6lm7/kIuNVHSs0vX8HS0vcvmRC5fbXs+en98J8yKdJ3/sWL6u/v3vf7/Ka6Rw36WvT9LX/PFk+V006aYLAQIECBAYTkChMpylMxEgQIAAAQKjCjg5AQIECBAgQIBAAIHtVHrkd4o8SF+f5MLlttez5+d3wjxIDrkwydd004UAAQIEYgnUm0ahUu/emIwAAQIECBAgQIAAAQIEWhMwLwECBAgQIECAQFgBhUrYrRWMAAEC6ws4ggABAgQIECBAgAABAgQIEIgvICEBAt0EFCrd3BxFgAABAgQIECBAgMA0AlYlQIAAAQIECBAgQIDAJAIKlUnYLTpfAckJECBAgAABAgQIECBAgACB+AISEiBAgEBEAYVKxF2ViQABAgQIECDQR8CxBAgQIECAAAECBAgQIECAwHsC4QqV9xJ6gAABAgQIECBAgAABAgQIEAgnIBABAgQIECBAoLSAQqW0uPUIECBAgMBiwYAAAQIECBAgQIAAAQIECBCILyBhMAGFSrANFYcAAQIECBAgQIAAAQLDCDgLAQIECBAgQIAAAQIXBRQqFzXcJkAgjoAkBAgQIECAAAECBAgQIECAQHwBCQkQIFBQQKFSENtSBAgQIECAAAECBC4KuE2AAAECBAgQIECAAAEC7QgoVNrZq9omNQ8BAgQIECBAgAABAgQIECAQX0BCAgQIECBA4ExAoXIG4QsBAgQIECAQUUAmAgQIECBAgAABAgQIECBAIL5AmYQKlTLOViFAgAABAgQIECBAgAABAtcLeJQAAQIECBAgQKAJAYVKE9tkSAIECNQrYDICBAgQIECAAAECBAgQIEAgvoCEBAgsFgoVrwICBAgQIECAAAECBKILyEeAAAECBAgQIECAAIHeAgqV3oROQGBsAecnQIAAAQIECBAgQIAAAQIE4gtISIAAAQK1CyhUat8h8xEgQIAAAQIEWhAwIwECBAgQIECAAAECBAgQCC6gUFksFsH3WDwCBAgQIECAAAECBAgQIEBgsVhAIECAAAECBAj0EVCo9NFzLAECBAgQKCdgJQIECBAgQIAAAQIECBAgQCC+gIQVCyhUKt4coxEgQIAAAQIECBAgQKAtAdMSIECAAAECBAgQiCugUIm7t5IRILCugOcTIECAAAECBAgQIECAAAEC8QUkJECAQEcBhUpHOIcRIECAAAECBAgQmELAmgQIECBAgAABAgQIECAwjYBCZRr3ua4qNwECBAgQIECAAAECBAgQIBBfQEICBAgQIBBSQKEScluFIkCAAAECBLoLOJIAAQIECBAgQIAAAQIECBCIL7B+QoXK+maOIECAAAECBAgQIECAAAEC0wpYnQABAgQIECBAoLiAQqU4uQUJECBAgAABAgQIECBAgAABAgQIECAQX0BCAtEEFCrRdlQeAgQIECBAgAABAgSGEHAOAgQIECBAgAABAgQIXBJQqFzicIdAFAE5CBAgQIAAAQIECBAgQIAAgfgCEhIgQIBASQGFSklta4vlJRkAABAASURBVBEgQIAAAQIECLwTcIsAAQIECBAgQIAAAQIECDQkoFDpuFkOI0CAAAECBAgQIECAAAECBOILSEiAAAECBAgQOBdQqJxL+EqAAAECBOIJSESAAAECBAgQIECAAAECBAjEF5CwkIBCpRC0ZQgQIECAAAECBAgQIEDgOgGPESBAgAABAgQIEGhDQKHSxj6ZkgCBWgXMRYAAAQIECBAgQIAAAQIECMQXkJAAAQJJQKGSEFwIECBAgAABAgQIRBaQjQABAgQIECBAgAABAgT6CyhU+hs6w7gCzk6AAAECBAgQIECAAAECBAjEF5CQAAECBAhUL6BQqX6LDEiAAAECBAjUL2BCAgQIECBAgAABAgQIECBAILrAxiJ6QvkIECBAgAABAgQIECBAgACBxYIBAQIECBAgQIBALwHvUOnF52ACBAgQKCVgHQIECBAgQIAAAQIECBAgQCC+gIQEahZQqNS8O2YjQIAAAQIECBAgQKAlAbMSIECAAAECBAgQIBBYQKESeHNFI7CegGcTIECAAAECBAgQIECAAAEC8QUkJECAAIGuAgqVrnKOI0CAAAECBAgQKC9gRQIECBAgQIAAAQIECBAgMJGAQqUgvKUIECBAgAABAgQIECBAgACB+AISEiBAgAABAjEFFCox91UqAgQIECDQVcBxBAgQIECAAAECBAgQIECAQHwBCTsIKFQ6oDmEAAECBAgQIECAAAECBKYUsDYBAgQIECBAgACB8gIKlfLmViRAYO4C8hMgQIAAAQIECBAgQIAAAQLxBSQkQCCcgEIl3JYKRIAAAQIECBAgQKC/gDMQIECAAAECBAgQIECAwGUBhcplD/diCEhBgAABAgQIECBAgAABAgQIxBeQkAABAgQIFBVQqBTlthgBAgQIECBA4FzAVwIECBAgQIAAAQIECBAgQKAlgW6FSksJzUqAAAECBAgQIECAAAECBAh0E3AUAQIECBAgQIDAWwGFylsKNwgQIEAgmoA8BAgQIECAAAECBAgQIECAQHwBCQmUElColJK2DgECBAgQIECAAAECBN4X8AgBAgQIECBAgAABAo0IKFQa2ShjEqhTwFQECBAgQIAAAQIECBAgQIBAfAEJCRAgQCALKFSygisBAgQIECBAgEBcAckIECBAgAABAgQIECBAgMAAAgqVARDHPIVzEyBAgAABAgQIECBAgAABAvEFJCRAgAABAgTqF1Co1L9HJiRAgAABArULmI8AAQIECBAgQIAAAQIECBCILzD7hAqV2b8EABAgQIAAAQIECBAgQGAOAjISIECAAAECBAgQ6CegUOnn52gCBAiUEbAKAQIECBAgQIAAAQIECBAgEF9AQgIEqhZQqFS9PYYjQIAAAQIECBAg0I6ASQkQIECAAAECBAgQIBBZQKESeXdlW0fAcwkQIECAAAECBAgQIECAAIH4AhISIECAAIHOAgqVznQOJECAAAECBAiUFrAeAQIECBAgQIAAAQIECBAgMJVAuUJlqoTWJUCAAAECBAgQIECAAAECBMoJWIkAAQIECBAgEFRAoRJ0Y8UiQIAAgW4CjiJAgAABAgQIECBAgAABAgTiC0hIoIuAQqWLmmMIECBAgAABAgQIECAwnYCVCRAgQIAAAQIECBCYQEChMgG6JQnMW0B6AgQIECBAgAABAgQIECBAIL6AhAQIEIgnoFCJt6cSESBAgAABAgQI9BVwPAECBAgQIECAAAECBAgQuCKgULkCEuGuDAQIECBAgAABAgQIECBAgEB8AQkJECBAgACBsgIKlbLeViNAgAABAgTeCPiTAAECBAgQIECAAAECBAgQiC8QKqFCJdR2CkOAAAECBAgQIECAAAECwwk4EwECBAgQIECAAIF3AgqVdxZuESBAIJaANAQIECBAgAABAgQIECBAgEB8AQkJECgmoFApRm0hAgQIECBAgAABAgSuCrhPgAABAgQIECBAgACBVgQUKq3slDlrFDATAQIECBAgQIAAAQIECBAgEF9AQgIECBAgcCqgUDll8AcBAgQIECBAIKqAXAQIECBAgAABAgQIECBAgMAQAnUXKkMkdA4CBAgQIECAAAECBAgQIECgbgHTESBAgAABAgQaEFCoNLBJRiRAgACBugVMR4AAAQIECBAgQIAAAQIECMQXkJCAQsVrgAABAgQIECBAgAABAvEFJCRAgAABAgQIECBAoKeAQqUnoMMJECghYA0CBAgQIECAAAECBAgQIEAgvoCEBAgQqFtAoVL3/piOAAECBAgQIECgFQFzEiBAgAABAgQIECBAgEBoAYVK6O29fTjPJECAAAECBAgQIECAAAECBOILSEiAAAECBAh0F1CodLdzJAECBAgQIFBWwGoECBAgQIAAAQIECBAgQIBAfIFqEypUqt0agxEgQIAAAQIECBAgQIBAewImJkCAAAECBAgQiCqgUIm6s3IRIECgi4BjCBAgQIAAAQIECBAgQIAAgfgCEhIg0ElAodKJzUEECBAgQIAAAQIECEwlYF0CBAgQIECAAAECBAhMIaBQmULdmnMWkJ0AAQIECBAgQIAAAQIECBCILyAhAQIECAQUUKgE3FSRCBAgQIAAAQL9BBxNgAABAgQIECBAgAABAgQIXBWIV6hcTeg+AQIECBAgQIAAAQIECBAgEE9AIgIECBAgQIBAYQGFSmFwyxEgQIAAgSzgSoAAAQIECBAgQIAAAQIECMQXkDCWgEIl1n5KQ4AAAQIECBAgQIAAgaEEnIcAAQIECBAgQIAAgQsCCpULGG4SIBBJQBYCBAgQIECAAAECBAgQIEAgvoCEBAgQKCegUClnbSUCBAgQIECAAAEClwXcI0CAAAECBAgQIECAAIFmBBQqzWxVfYOaiAABAgQIECBAgAABAgQIEIgvICEBAgQIECDwRkCh8sbBnwQIECBAgEBMAakIECBAgAABAgQIECBAgACB+AJFEipUijBbhAABAgQIECBAgAABAgQIfEjA4wQIECBAgAABAi0IKFRa2CUzEiBAoGYBsxEgQIAAAQIECBAgQIAAAQLxBSQkQGChUPEiIECAAAECBAgQIEAgvICABAgQIECAAAECBAgQ6CugUOkr6HgC4wtYgQABAgQIECBAgAABAgQIEIgvICEBAgQIVC6gUKl8g4xHgAABAgQIEGhDwJQECBAgQIAAAQIECBAgQCC2gEIl768rAQIECBAgQIAAAQIECBAgEF9AQgIECBAgQIBADwGFSg88hxIgQIAAgZIC1iJAgAABAgQIECBAgAABAgTiC0hYr4BCpd69MRkBAgQIECBAgAABAgRaEzAvAQIECBAgQIAAgbACCpWwWysYAQLrCziCAAECBAgQIECAAAECBAgQiC8gIQECBLoJKFS6uTmKAAECBAgQIECAwDQCViVAgAABAgQIECBAgACBSQQUKpOwz3dRyQkQIECAAAECBAgQIECAAIH4AhISIECAAIGIAgqViLsqEwECBAgQINBHwLEECBAgQIAAAQIECBAgQIBAfIG1EypU1iZzAAECBAgQIECAAAECBAgQmFrA+gQIECBAgAABAqUFFCqlxa1HgAABAosFAwIECBAgQIAAAQIECBAgQCC+gIQEggkoVIJtqDgECBAgQIAAAQIECAwj4CwECBAgQIAAAQIECBC4KKBQuajhNoE4ApIQIECAAAECBAgQIECAAAEC8QUkJECAAIGCAgqVgtiWIkCAAAECBAgQuCjgNgECBAgQIECAAAECBAgQaEdAodJ1rxxHgAABAgQIECBAgAABAgQIxBeQkAABAgQIECBwJqBQOYPwhQABAgQIRBSQiQABAgQIECBAgAABAgQIEIgvIGEZAYVKGWerECBAgAABAgQIECBAgMD1Ah4lQIAAAQIECBAg0ISAQqWJbTIkAQL1CpiMAAECBAgQIECAAAECBAgQiC8gIQECBBYLhYpXAQECBAgQIECAAIHoAvIRIECAAAECBAgQIECAQG8BhUpvQicYW8D5CRAgQIAAAQIECBAgQIAAgfgCEhIgQIAAgdoFFCq175D5CBAgQIAAgRYEzEiAAAECBAgQIECAAAECBAgEF9hYLIInFI8AAQIECBAgQIAAAQIECBBYLBYQCBAgQIAAAQIE+gh4h0ofPccSIECAQDkBKxEgQIAAAQIECBAgQIAAAQLxBSQkULGAQqXizTEaAQIECBAgQIAAAQJtCZiWAAECBAgQIECAAIG4AgqVuHsrGYF1BTyfAAECBAgQIECAAAECBAgQiC8gIQECBAh0FFCodIRzGAECBAgQIECAwBQC1iRAgAABAgQIECBAgAABAtMIKFRKuluLAAECBAgQIECAAAECBAgQiC8gIQECBAgQIBBSQKEScluFIkCAAAEC3QUcSYAAAQIECBAgQIAAAQIECMQXkHB9AYXK+maOIECAAAECBAgQIECAAIFpBaxOgAABAgQIECBAoLiAQqU4uQUJECBAgAABAgQIECBAgAABAgQIEIgvICEBAtEEcqHyKlooeQgQIECAAAECBAgQ6CngcAIECBAgQIAAAQIECBC4JJALlUsPuEMggoAMBAgQIECAAAECBAgQIECAQHwBCQkQIECAQEkBhUpJbWsRIECAAAECBN4JuEWAAAECBAgQIECAAAECBAg0JNCxUGkooVEJECBAgAABAgQIECBAgACBjgIOI0CAAAECBAgQOBdQqJxL+EqAAAEC8QQkIkCAAAECBAgQIECAAAECBOILSEigkIBCpRC0ZQgQIECAAAECBAgQIHCdgMcIECBAgAABAgQIEGhDQKHSxj6ZkkCtAuYiQIAAAQIECBAgQIAAAQIE4gtISIAAAQJJQKGSEFwIECBAgAABAgQiC8hGgAABAgQIECBAgAABAgT6CyhU+huOewZnJ0CAAAECBAgQIECAAAECBOILSEiAAAECBAhUL6BQqX6LDEiAAAECBOoXMCEBAgQIECBAgAABAgQIECAQX2DuCRUqc38FyE+AAAECBAgQIECAAIF5CEhJgAABAgQIECBAoJeAQqUXn4MJECBQSsA6BAgQIECAAAECBAgQIECAQHwBCQkQqFlAoVLz7piNAAECBAgQIECAQEsCZiVAgAABAgQIECBAgEBgAYVK4M0VbT0BzyZAgAABAgQIECBAgAABAgTiC0hIgAABAgS6CihUuso5jgABAgQIECBQXsCKBAgQIECAAAECBAgQIECAwEQCBQuViRJalgABAgQIECBAgAABAgQIECgoYCkCBAgQIECAQEwBhUrMfZWKAAECBLoKOI4AAQIECBAgQIAAAQIECBCILyAhgQ4CCpUOaA4hQIAAAQIECBAgQIDAlALWJkCAAAECBAgQIECgvIBCpby5FQnMXUB+AgQIECBAgAABAgQIECBAIL6AhAQIEAgnoFAJt6UCESBAgAABAgQI9BdwBgIECBAgQIAAAQIECBAgcFlAoXLZI8Y9KQgQIECAAAHTx82vAAAQAElEQVQCBAgQIECAAIH4AhISIECAAAECRQUUKkW5LUaAAAECBAicC/hKgAABAgQIECBAgAABAgQIxBeIlFChEmk3ZSFAgAABAgQIECBAgACBIQWciwABAgQIECBAgMBbAYXKWwo3CBAgEE1AHgIECBAgQIAAAQIECBAgQCC+gIQECJQSUKiUkrYOAQIECBAgQIAAAQLvC3iEAAECBAgQIECAAAECjQgoVBrZKGPWKWAqAgQIECBAgAABAgQIECBAIL6AhAQIECBAIAsoVLKCKwECBAgQIEAgroBkBAgQIECAAAECBAgQIECAwAAClRcqAyR0CgIECBAgQIAAAQIECBAgQKByAeMRIECAAAECBOoXUKjUv0cmJECAAIHaBcxHgAABAgQIECBAgAABAgQIxBeQcPYCCpXZvwQAECBAgAABAgQIECAwBwEZCRAgQIAAAQIECBDoJ6BQ6efnaAIEyghYhQABAgQIECBAgAABAgQIEIgvICEBAgSqFlCoVL09hiNAgAABAgQIEGhHwKQECBAgQIAAAQIECBAgEFlAoRJ5d9fJ5rkECBAgQIAAAQIECBAgQIBAfAEJCRAgQIAAgc4CCpXOdA4kQIAAAQIESgtYjwABAgQIECBAgAABAgQIEIgvUGtChUqtO2MuAgQIECBAgAABAgQIEGhRwMwECBAgQIAAAQJBBRQqQTdWLAIECHQTcBQBAgQIECBAgAABAgQIECAQX0BCAgS6CChUuqg5hgABAgQIECBAgACB6QSsTIAAAQIECBAgQIAAgQkEFCoToFty3gLSEyBAgAABAgQIECBAgAABAvEFJCRAgACBeAIKlXh7KhEBAgQIECBAoK+A4wkQIECAAAECBAgQIECAAIErAgELlSsJ3SVAgAABAgQIECBAgAABAgQCCohEgAABAgQIECgroFAp6201AgQIECDwRsCfBAgQIECAAAECBAgQIECAQHwBCUMJKFRCbacwBAgQIECAAAECBAgQGE7AmQgQIECAAAECBAgQeCegUHln4RYBArEEpCFAgAABAgQIECBAgAABAgTiC0hIgACBYgIKlWLUFiJAgAABAgQIECBwVcB9AgQIECBAgAABAgQIEGhFQKHSyk7VOKeZCBAgQIAAAQIECBAgQIAAgfgCEhIgQIAAAQKnAgqVUwZ/ECBAgAABAlEF5CJAgAABAgQIECBAgAABAgTiC5RIqFApoWwNAgQIECBAgAABAgQIECDwYQHfIUCAAAECBAgQaEBAodLAJhmRAAECdQuYjgABAgQIECBAgAABAgQIEIgvICEBAgoVrwECBAgQIECAAAECBOILSEiAAAECBAgQIECAAIGeAgqVnoAOJ1BCwBoECBAgQIAAAQIECBAgQIBAfAEJCRAgQKBuAYVK3ftjOgIECBAgQIBAKwLmJECAAAECBAgQIECAAAECoQUUKqfb6w8CBAgQIECAAAECBAgQIEAgvoCEBAgQIECAAIHuAgqV7naOJECAAAECZQWsRoAAAQIECBAgQIAAAQIECMQXkLBaAYVKtVtjMAIECBAgQIAAAQIECLQnYGICBAgQIECAAAECUQUUKlF3Vi4CBLoIOIYAAQIECBAgQIAAAQIECBCILyAhAQIEOgkoVDqxOYgAAQIECBAgQIDAVALWJUCAAAECBAgQIECAAIEpBBQqU6jPeU3ZCRAgQIAAAQIECBAgQIAAgfgCEhIgQIAAgYACCpWAmyoSAQIECBAg0E/A0QQIECBAgAABAgQIECBAgEB8gXUTKlTWFfN8AgQIECBAgAABAgQIECAwvYAJCBAgQIAAAQIECgsoVAqDW44AAQIEsoArAQIECBAgQIAAAQIECBAgEF9AQgKxBBQqsfZTGgIECBAgQIAAAQIEhhJwHgIECBAgQIAAAQIECFwQUKhcwHCTQCQBWQgQIECAAAECBAgQIECAAIH4AhISIECAQDkBhUo5aysRIECAAAECBAhcFnCPAAECBAgQIECAAAECBAg0I6BQ6bxVDiRAgAABAgQIECBAgAABAgTiC0hIgAABAgQIEHgjoFB54+BPAgQIECAQU0AqAgQIECBAgAABAgQIECBAIL6AhEUEFCpFmC1CgAABAgQIECBAgAABAh8S8DgBAgQIECBAgACBFgQUKi3skhkJEKhZwGwECBAgQIAAAQIECBAgQIBAfAEJCRAgsFCoeBEQIECAAAECBAgQCC8gIAECBAgQIECAAAECBAj0FVCo9BV0/PgCViBAgAABAgQIECBAgAABAgTiC0hIgAABAgQqF1CoVL5BxiNAgAABAgTaEDAlAQIECBAgQIAAAQIECBAgEFsgFyqxE0pHgAABAgQIECBAgAABAgQIZAFXAgQIECBAgACBHgIKlR54DiVAgACBkgLWIkCAAAECBAgQIECAAAECBOILSEigXgGFSr17YzICBAgQIECAAAECBFoTMC8BAgQIECBAgAABAmEFFCpht1YwAusLOIIAAQIECBAgQIAAAQIECBCILyAhAQIECHQTUKh0c3MUAQIECBAgQIDANAJWJUCAAAECBAgQIECAAAECkwgoVIqyW4wAAQIECBAgQIAAAQIECBCILyAhAQIECBAgEFFAoRJxV2UiQIAAAQJ9BBxLgAABAgQIECBAgAABAgQIxBeQcG0BhcraZA4gQIAAAQIECBAgQIAAgakFrE+AAAECBAgQIECgtIBCpbS49QgQILBYMCBAgAABAgQIECBAgAABAgTiC0hIgEAwAYVKsA0VhwABAgQIECBAgMAwAs5CgAABAgQIECBAgAABAhcFFCoXNdyOIyAJAQIECBAgQIAAAQIECBAgEF9AQgIECBAgUFBAoVIQ21IECBAgQIAAgYsCbhMgQIAAAQIECBAgQIAAAQLtCHQtVNpJaFICBAgQIECAAAECBAgQIECgq4DjCBAgQIAAAQIEzgQUKmcQvhAgQIBARAGZCBAgQIAAAQIECBAgQIAAgfgCEhIoI6BQKeNsFQIECBAgQIAAAQIECFwv4FECBAgQIECAAAECBJoQUKg0sU2GJFCvgMkIECBAgAABAgQIECBAgACB+AISEiBAgMBioVDxKiBAgAABAgQIEIguIB8BAgQIECBAgAABAgQIEOgtoFDpTTj2CZyfAAECBAgQIECAAAECBAgQiC8gIQECBAgQIFC7gEKl9h0yHwECBAgQaEHAjAQIECBAgAABAgQIECBAgEB8gZknVKjM/AUgPgECBAgQIECAAAECBOYiICcBAgQIECBAgACBPgIKlT56jiVAgEA5ASsRIECAAAECBAgQIECAAAEC8QUkJECgYgGFSsWbYzQCBAgQIECAAAECbQmYlgABAgQIECBAgAABAnEFFCpx91aydQU8nwABAgQIECBAgAABAgQIEIgvICEBAgQIEOgooFDpCOcwAgQIECBAgMAUAtYkQIAAAQIECBAgQIAAAQIEphEoWahMk9CqBAgQIECAAAECBAgQIECAQEkBaxEgQIAAAQIEQgooVEJuq1AECBAg0F3AkQQIECBAgAABAgQIECBAgEB8AQkJrC+gUFnfzBEECBAgQIAAAQIECBCYVsDqBAgQIECAAAECBAgUF1CoFCe3IAECBAgQIECAAAECBAgQIECAAIH4AhISIEAgmoBCJdqOykOAAAECBAgQIDCEgHMQIECAAAECBAgQIECAAIFLAgqVSxxR7shBgAABAgQIECBAgAABAgQIxBeQkAABAgQIECgpoFApqW0tAgQIECBA4J2AWwQIECBAgAABAgQIECBAgEB8gUAJFSqBNlMUAgQIECBAgAABAgQIEBhWwNkIECBAgAABAgQInAsoVM4lfCVAgEA8AYkIECBAgAABAgQIECBAgACB+AISEiBQSEChUgjaMgQIECBAgAABAgQIXCfgMQIECBAgQIAAAQIECLQhoFBpY59MWauAuQgQIECAAAECBAgQIECAAIH4AhISIECAAIEkoFBJCC4ECBAgQIAAgcgCshEgQIAAAQIECBAgQIAAAQL9BWovVPondAYCBAgQIECAAAECBAgQIECgdgHzESBAgAABAgSqF1CoVL9FBiRAgACB+gVMSIAAAQIECBAgQIAAAQIECMQXkHDuAgqVub8C5CdAgAABAgQIECBAYB4CUhIgQIAAAQIECBAg0EtAodKLz8EECJQSsA4BAgQIECBAgAABAgQIECAQX0BCAgQI1CygUKl5d8xGgAABAgQIECDQkoBZCRAgQIAAAQIECBAgQCCwgEIl8OauF82zCRAgQIAAAQIECBAgQIAAgfgCEhIgQIAAAQJdBRQqXeUcR4AAAQIECJQXsCIBAgQIECBAgAABAgQIECAQX6DShAqVSjfGWAQIECBAgAABAgQIECDQpoCpCRAgQIAAAQIEYgooVGLuq1QECBDoKuA4AgQIECBAgAABAgQIECBAIL6AhAQIdBBQqHRAcwgBAgQIECBAgAABAlMKWJsAAQIECBAgQIAAAQLlBRQq5c2tOHcB+QkQIECAAAECBAgQIECAAIH4AhISIECAQDgBhUq4LRWIAAECBAgQINBfwBkIECBAgAABAgQIECBAgACBywIRC5XLCd0jQIAAAQIECBAgQIAAAQIEIgrIRIAAAQIECBAoKqBQKcptMQIECBAgcC7gKwECBAgQIECAAAECBAgQIBBfQMJIAgqVSLspCwECBAgQIECAAAECBIYUcC4CBAgQIECAAAECBN4KKFTeUrhBgEA0AXkIECBAgAABAgQIECBAgACB+AISEiBAoJSAQqWUtHUIECBAgAABAgQIvC/gEQIECBAgQIAAAQIECBBoRECh0shG1TmmqQgQIECAAAECBAgQIECAAIH4AhISIECAAAECWUChkhVcCRAgQIAAgbgCkhEgQIAAAQIECBAgQIAAAQLxBQokVKgUQLYEAQIECBAgQIAAAQIECBC4ScD3CBAgQIAAAQIE6hdQqNS/RyYkQIBA7QLmI0CAAAECBAgQIECAAAECBOILSEhg9gIKldm/BAAQIECAAAECBAgQmIOAjAQIECBAgAABAgQIEOgnoFDp5+doAmUErEKAAAECBAgQIECAAAECBAjEF5CQAAECBKoWUKhUvT2GI0CAAAECBAi0I2BSAgQIECBAgAABAgQIECAQWUCh8mZ3/UmAAAECBAgQIECAAAECBAjEF5CQAAECBAgQINBZQKHSmc6BBAgQIECgtID1CBAgQIAAAQIECBAgQIAAgfgCEtYqoFCpdWfMRYAAAQIECBAgQIAAgRYFzEyAAAECBAgQIEAgqIBCJejGikWAQDcBRxEgQIAAAQIECBAgQIAAAQLxBSQkQIBAFwGFShc1xxAgQIAAAQIECBCYTsDKBAgQIECAAAECBAgQIDCBgEJlAvR5Lyk9AQIECBAgQIAAAQIECBAgEF9AQgIECBAgEE9AoRJvTyUiQIAAAQIE+go4ngABAgQIECBAgAAB8293GQAAEABJREFUAgQIEIgvsGZChcqaYJ5OgAABAgQIECBAgAABAgRqEDADAQIECBAgQIBAWQGFSllvqxEgQIDAGwF/EiBAgAABAgQIECBAgAABAvEFJCQQSkChEmo7hSFAgAABAgQIECBAYDgBZyJAgAABAgQIECBAgMA7AYXKOwu3CMQSkIYAAQIECBAgQIAAAQIECBCILyAhAQIECBQTUKgUo7YQAQIECBAgQIDAVQH3CRAgQIAAAQIECBAgQIBAKwIKle475UgCBAgQIECAAAECBAgQIEAgvoCEBAgQIECAAIFTAYXKKYM/CBAgQIBAVAG5CBAgQIAAAQIECBAgQIAAgfgCEpYQUKiUULYGAQIECBAgQIAAAQIECHxYwHcIECBAgAABAgQINCCgUGlgk4xIgEDdAqYjQIAAAQIECBAgQIAAAQIE4gtISIAAAYWK1wABAgQIECBAgACB+AISEiBAgAABAgQIECBAgEBPAYVKT0CHlxCwBgECBAgQIECAAAECBAgQIBBfQEICBAgQIFC3gEKl7v0xHQECBAgQINCKgDkJECBAgAABAgQIECBAgACB0AKnhUrohMIRIECAAAECBAgQIECAAAECpwL+IECAAAECBAgQ6C6gUOlu50gCBAgQKCtgNQIECBAgQIAAAQIECBAgQCC+gIQEqhVQqFS7NQYjQIAAAQIECBAgQKA9ARMTIECAAAECBAgQIBBVQKESdWflItBFwDEECBAgQIAAAQIECBAgQIBAfAEJCRAgQKCTgEKlE5uDCBAgQIAAAQIEphKwLgECBAgQIECAAAECBAgQmEJAoVJW3WoECBAgQIAAAQIECBAgQIBAfAEJCRAgQIAAgYACCpWAmyoSAQIECBDoJ+BoAgQIECBAgAABAgQIECBAIL6AhOsKKFTWFfN8AgQIECBAgAABAgQIEJhewAQECBAgQIAAAQIECgsoVAqDW44AAQJZwJUAAQIECBAgQIAAAQIECBCILyAhAQKxBBQqsfZTGgIECBAgQIAAAQJDCTgPAQIECBAgQIAAAQIECFwQUKhcwHAzkoAsBAgQIECAAAECBAgQIECAQHwBCQkQIECAQDkBhUo5aysRIECAAAECBC4LuEeAAAECBAgQIECAAAECBAg0I5ALlV+6TOsYAgQIECBAgAABAgQIECBAIL6AhAQIECBAgAABAm8ENpbLpULljYU/CRAgQCCegEQECBAgQIAAAQIECBAgQIBAfAEJCRQRyO9QKbKQRQgQIECAAAECBAgQIEDgOgGPESBAgAABAgQIECDQgoBCpYVdMiOBmgXMRoAAAQIECBAgQIAAAQIECMQXkJAAAQIEFgoVLwICBAgQIECAAIHwAgISIECAAAECBAgQIECAAIG+AgqVvoLjH28FAgQIECBAgAABAgQIECBAIL6AhAQIECBAgEDlAgqVyjfIeAQIECBAoA0BUxIgQIAAAQIECBAgQIAAAQLxBeadUKEy7/2XngABAgQIECBAgAABAvMRkJQAAQIECBAgQIBADwGFSg88hxIgQKCkgLUIECBAgAABAgQIECBAgACB+AISEiBQr4BCpd69MRkBAgQIECBAgACB1gTMS4AAAQIECBAgQIAAgbACCpWwWyvY+gKOIECAAAECBAgQIECAAAECBOILSEiAAAECBLoJKFS6uTmKAAECBAgQIDCNgFUJECBAgAABAgQIECBAgACBSQSKFiqTJLQoAQIECBAgQIAAAQIECBAgUFTAYgQIECBAgACBiAIKlYi7KhMBAgQI9BFwLAECBAgQIECAAAECBAgQIBBfQEICawsoVNYmcwABAgQIECBAgAABAgSmFrA+AQIECBAgQIAAAQKlBRQqpcWtR4DAYsGAAAECBAgQIECAAAECBAgQiC8gIQECBIIJKFSCbag4BAgQIECAAAECwwg4CwECBAgQIECAAAECBAgQuCigULmoEee2JAQIECBAgAABAgQIECBAgEB8AQkJECBAgACBggIKlYLYliJAgAABAgQuCrhNgAABAgQIECBAgAABAgQIxBeIk1ChEmcvJSFAgAABAgQIECBAgACBoQWcjwABAgQIECBAgMCZgELlDMIXAgQIRBSQiQABAgQIECBAgAABAgQIEIgvICEBAmUEFCplnK1CgAABAgQIECBAgMD1Ah4lQIAAAQIECBAgQIBAEwIKlSa2yZD1CpiMAAECBAgQIECAAAECBAgQiC8gIQECBAgQWCwUKl4FBAgQIECAAIHoAvIRIECAAAECBAgQIECAAAECvQWqL1R6J3QCAgQIECBAgAABAgQIECBAoHoBAxIgQIAAAQIEahdQqNS+Q+YjQIAAgRYEzEiAAAECBAgQIECAAAECBAjEF5Bw5gIKlZm/AMQnQIAAAQIECBAgQGAuAnISIECAAAECBAgQINBHQKHSR8+xBAiUE7ASAQIECBAgQIAAAQIECBAgEF9AQgIECFQsoFCpeHOMRoAAAQIECBAg0JaAaQkQIECAAAECBAgQIEAgroBCJe7erpvM8wkQIECAAAECBAgQIECAAIH4AhISIECAAAECHQUUKh3hHEaAAAECBAhMIWBNAgQIECBAgAABAgQIECBAIL5AnQkVKnXui6kIECBAgAABAgQIECBAoFUBcxMgQIAAAQIECIQUUKiE3FahCBAg0F3AkQQIECBAgAABAgQIECBAgEB8AQkJEFhfQKGyvpkjCBAgQIAAAQIECBCYVsDqBAgQIECAAAECBAgQKC6gUClObkECBAgQIECAAAECBAgQIECAAIH4AhISIECAQDQBhUq0HZWHAAECBAgQIDCEgHMQIECAAAECBAgQIECAAAEClwRCFiqXErpDgAABAgQIECBAgAABAgQIhBQQigABAgQIECBQUkChUlLbWgQIECBA4J2AWwQIECBAgAABAgQIECBAgEB8AQkDCShUAm2mKAQIECBAgAABAgQIEBhWwNkIECBAgAABAgQIEDgXUKicS/hKgEA8AYkIECBAgAABAgQIECBAgACB+AISEiBAoJCAQqUQtGUIECBAgAABAgQIXCfgMQIECBAgQIAAAQIECBBoQ0Ch0sY+1TqluQgQIECAAAECBAgQIECAAIH4AhISIECAAAECSUChkhBcCBAgQIAAgcgCshEgQIAAAQIECBAgQIAAAQLxBcZPqFAZ39gKBAgQIECAAAECBAgQIEDgZgHfJUCAAAECBAgQqF5AoVL9FhmQAAEC9QuYkAABAgQIECBAgAABAgQIEIgvICGBuQsoVOb+CpCfAAECBAgQIECAwDwEpCRAgAABAgQIECBAgEAvAYVKLz4HEyglYB0CBAgQIECAAAECBAgQIEAgvoCEBAgQIFCzgEKl5t0xGwECBAgQIECgJQGzEiBAgAABAgQIECBAgACBwAIKlbPN9YUAAQIECBAgQIAAAQIECBCILyAhAQIECBAgQKCrgEKlq5zjCBAgQIBAeQErEiBAgAABAgQIECBAgAABAvEFJKxUQKFS6cYYiwABAgQIECBAgAABAm0KmJoAAQIECBAgQIBATAGFSsx9lYoAga4CjiNAgAABAgQIECBAgAABAgTiC0hIgACBDgIKlQ5oDiFAgAABAgQIECAwpYC1CRAgQIAAAQIECBAgQKC8gEKlvPncV5SfAAECBAgQIECAAAECBAgQiC8gIQECBAgQCCegUAm3pQIRIECAAAEC/QWcgQABAgQIECBAgAABAgQIEIgvsF5Chcp6Xp5NgAABAgQIECBAgAABAgTqEDAFAQIECBAgQIBAUQGFSlFuixEgQIDAuYCvBAgQIECAAAECBAgQIECAQHwBCQlEElCoRNpNWQgQIECAAAECBAgQGFLAuQgQIECAAAECBAgQIPBWQKHylsINAtEE5CFAgAABAgQIECBAgAABAgTiC0hIgAABAqUEFCqlpK1DgAABAgQIECDwvoBHCBAgQIAAAQIECBAgQIBAIwIKlR4b5VACBAgQIECAAAECBAgQIEAgvoCEBAgQIECAAIEsoFDJCq4ECBAgQCCugGQECBAgQIAAAQIECBAgQIBAfAEJCwgoVAogW4IAAQIECBAgQIAAAQIEbhLwPQIECBAgQIAAAQL1CyhU6t8jExIgULuA+QgQIECAAAECBAgQIECAAIH4AhISIDB7AYXK7F8CAAgQIECAAAECBOYgICMBAgQIECBAgAABAgQI9BNQqPTzc3QZAasQIECAAAECBAgQIECAAAEC8QUkJECAAAECVQsoVKreHsMRIECAAAEC7QiYlAABAgQIECBAgAABAgQIEIgs8KZQiZxQNgIECBAgQIAAAQIECBAgQOCNgD8JECBAgAABAgQ6CyhUOtM5kAABAgRKC1iPAAECBAgQIECAAAECBAgQiC8gIYFaBRQqte6MuQgQIECAAAECBAgQaFHAzAQIECBAgAABAgQIBBVQqATd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AgQIEFgsFCpeBQQIECBAgEB0AfkIECBAgAABAgQIECBAgACB+AKjJ1SojE5sAQIECBAgQIAAAQIECBAg8DEB3ydAgAABAgQIEKhdQKFS+w6ZjwABAi0ImJEAAQIECBAgQIAAAQIECBCILyAhgZkLKFRm/gIQnwABAgQIECBAgMBcBOQkQIAAAQIECBAgQIBAHwGFSh89xxIoJ2AlAgQIECBAgAABAgQIECBAIL6AhAQIECBQsYBCpeLNMRoBAgQIECBAoC0B0xIgQIAAAQIECBAgQIAAgbgCCpXzvfWVAAECBAgQIECAAAECBAgQiC8gIQECBAgQIECgo4BCpSOcwwgQIECAwBQC1iRAgAABAgQIECBAgAABAgTiC0hYp4BCpc59MRUBAgQIECBAgAABAgRaFTA3AQIECBAgQIAAgZACCpWQ2yoUAQLdBRxJgAABAgQIECBAgAABAgQIxBeQkAABAusLKFTWN3MEAQIECBAgQIAAgWkFrE6AAAECBAgQIECAAAECxQUUKsXJLUiAAAECBAgQIECAAAECBAgQiC8gIQECBAgQiCagUIm2o/IQIECAAAECQwg4BwECBAgQIECAAAECBAgQIBBfYK2ECpW1uDyZAAECBAgQIECAAAECBAjUImAOAgQIECBAgACBkgIKlZLa1iJAgACBdwJuESBAgAABAgQIECBAgAABAvEFJCQQSEChEmgzRSFAgAABAgQIECBAYFgBZyNAgAABAgQIECBAgMC5gELlXMJXAvEEJCJAgAABAgQIECBAgAABAgTiC0hIgAABAoUEFCqFoC1DgAABAgQIECBwnYDHCBAgQIAAAQIECBAgQIBAGwIKlT775FgCBAgQIECAAAECBAgQIEAgvoCEBAgQIECAAIEkoFBJCC4ECBAgQCCygGwECBAgQIAAAQIECBAgQIBAfAEJxxdQqIxvbAUCBAgQIECAAAECBAgQuFnAdwkQIECAAAECBAhUL6BQqX6LDEiAQP0CJiRAgAABAgQIECBAgAABAgTiC0hIgMDcBRQqc38FyE+AAAECBAgQIDAPASkJECBAgAABAgQIECBAoJeAQqUXn4NLCViHAAECBAgQIECAAAECBAgQiC8gIQECBAgQqFlAoVLz7piNAAECBAgQaEnArAQIECBAgAABAgQIECBAgEBggbNCJXBC0QgQIECAAAECBAgQIECAAIEzAV8IECBAgAABAgS6CihUuso5jgABAgTKC1iRAAECBAgQIECAAAECBAgQiC8gIYFKBRQqlW6MsQgQIECAAAECBAgQaFPA1AQIECBAgAABAgQIxBRQqMTcV6kIdBVwHAECBAgQIECAAAECBAgQIBBfQEICBAgQ6CCgUOmA5hACBAgQIECAAIEpBaxNgAABAgQIECBAgAABAgTKCyhUSptbjwABAgQIECBAgAABAgQIEIgvICEBAgQIECAQTkChEm5LBSJAgAABAv0FnIEAAQIECBAgQIAAAQIECBCILyDhegIKlfW8PJsAAQIECBAgQIAAAQIE6hAwBQECBAgQIECAAIGiAgqVotwWI0CAwLmArwQIECBAgAABAgQIECBAgEB8AQkJEIgkoFCJtJuyECBAgAABAgQIEBhSwLkIECBAgAABAgQIECBA4K2AQuUthRvRBOQhQIAAAQIECBAgQIAAAQIE4gtISIAAAQIESgkoVEpJW4cAAQIECBAg8L6ARwgQIECAAAECBAgQIECAAIFGBHoUKo0kNCYBAgQIECBAgAABAgQIECDQQ8ChBAgQIECAAAECWUChkhVcCRAgQCCugGQECBAgQIAAAQIECBAgQIBAfAEJCRQQUKgUQLYEAQIECBAgQIAAAQIEbhLwPQIECBAgQIAAAQIE6hdQqNS/RyYkULuA+QgQIECAAAECBAgQIECAAIH4AhISIEBg9gK5UPll9goACBAgQIAAAQIEgguIR4AAAQIECBAgQIAAAQIE+gkoVPr5lTnaKgQIECBAgAABAgQIECBAgEB8AQkJECBAgACBqgVyoVL1gIYjQIAAAQIE2hAwJQECBAgQIECAAAECBAgQIBBfYM4JFSpz3n3ZCRAgQIAAAQIECBAgMC8BaQkQIECAAAECBAh0FlCodKZzIAECBEoLWI8AAQIECBAgQIAAAQIECBCILyAhAQK1CihUat0ZcxEgQIAAAQIECBBoUcDMBAgQIECAAAECBAgQCCqgUAm6sWJ1E3AUAQIECBAgQIAAAQIECBAgEF9AQgIECBAg0EVAodJFzTEECBAgQIAAgekErEyAAAECBAgQIECAAAECBAhMIFC4UJkgoSUJECBAgAABAgQIECBAgACBwgKWI0CAAAECBAjEE1CoxNtTiQgQIECgr4DjCRAgQIAAAQIECBAgQIAAgfgCEhJYU0ChsiaYpxMgQIAAAQIECBAgQKAGATMQIECAAAECBAgQIFBWQKFS1ttqBAi8EfAnAQIECBAgQIAAAQIECBAgEF9AQgIECIQSUKiE2k5hCBAgQIAAAQIEhhNwJgIECBAgQIAAAQIECBAg8E5AofLOItYtaQgQIECAAAECBAgQIECAAIH4AhISIECAAAECxQQUKsWoLUSAAAECBAhcFXCfAAECBAgQIECAAAECBAgQiC8QJaFCJcpOykGAAAECBAgQIECAAAECYwg4JwECBAgQIECAAIFTAYXKKYM/CBAgEFVALgIECBAgQIAAAQIECBAgQCC+gIQECJQQUKiUULYGAQIECBAgQIAAAQIfFvAdAgQIECBAgAABAgQINCCgUGlgk4xYt4DpCBAgQIAAAQIECBAgQIAAgfgCEhIgQIAAAYWK1wABAgQIECBAIL6AhAQIECBAgAABAgQIECBAgEBPgQYKlZ4JHU6AAAECBAgQIECAAAECBAg0IGBEAgQIECBAgEDdAgqVuvfHdAQIECDQioA5CRAgQIAAAQIECBAgQIAAgfgCEs5aQKEy6+0XngABAgQIECBAgACBOQnISoAAAQIECBAgQIBAdwGFSnc7RxIgUFbAagQIECBAgAABAgQIECBAgEB8AQkJECBQrYBCpdqtMRgBAgQIECBAgEB7AiYmQIAAAQIECBAgQIAAgagCCpWoO9sll2MIECBAgAABAgQIECBAgACB+AISEiBAgAABAp0EFCqd2BxEgAABAgQITCVgXQIECBAgQIAAAQIECBAgQCC+QI0JFSo17oqZCBAgQIAAAQIECBAgQKBlAbMTIECAAAECBAgEFFCoBNxUkQgQINBPwNEECBAgQIAAAQIECBAgQIBAfAEJCRBYV0Chsq6Y5xMgQIAAAQIECBAgML2ACQgQIECAAAECBAgQIFBYQKFSGNxyBLKAKwECBAgQIECAAAECBAgQIBBfQEICBAgQiCWgUIm1n9IQIECAAAECBIYScB4CBAgQIECAAAECBAgQIEDggkDQQuVCQjcJECBAgAABAgQIECBAgACBoAJiESBAgAABAgTKCShUyllbiQABAgQIXBZwjwABAgQIECBAgAABAgQIEIgvIGEYAYVKmK0UhAABAgQIECBAgAABAsMLOCMBAgQIECBAgAABAm8EFCpvHPxJgEBMAakIECBAgAABAgQIECBAgACB+AISEiBAoIiAQqUIs0UIECBAgAABAgQIfEjA4wQIECBAgAABAgQIECDQgoBCpYVdqnlGsxEgQIAAAQIECBAgQIAAAQLxBSQkQIAAAQIEFgoVLwICBAgQIEAgvICABAgQIECAAAECBAgQIECAQHyBsRMqVMYWdn4CBAgQIECAAAECBAgQIPBxAc8gQIAAAQIECBCoXEChUvkGGY8AAQJtCJiSAAECBAgQIECAAAECBAgQiC8gIYF5CyhU5r3/0hMgQIAAAQIECBCYj4CkBAgQIECAAAECBAgQ6CGgUOmB51ACJQWsRYAAAQIECBAgQIAAAQIECMQXkJAAAQIE6hVQqNS7NyYjQIAAAQIECLQmYF4CBAgQIECAAAECBAgQIBBWQKHydmvdIECAAAECBAgQIECAAAECBOILSEiAAAECBAgQ6CagUOnm5igCBAgQIDCNgFUJECBAgAABAgQIECBAgACB+AISVimgUKlyWwwh97IgAAAGY0lEQVRFgAABAgQIECBAgACBdgVMToAAAQIECBAgQCCigEIl4q7KRIBAHwHHEiBAgAABAgQIECBAgAABAvEFJCRAgMDaAgqVtckcQIAAAQIECBAgQGBqAesTIECAAAECBAgQIECAQGkBhUppcestFgwIECBAgAABAgQIECBAgACB+AISEiBAgACBYAIKlWAbKg4BAgQIECAwjICzECBAgAABAgQIECBAgAABAvEF1kmoUFlHy3MJECBAgAABAgQIECBAgEA9AiYhQIAAAQIECBAoKKBQKYhtKQIECBC4KOA2AQIECBAgQIAAAQIECBAgEF9AQgJxBBQqcfZSEgIECBAgQIAAAQIEhhZwPgIECBAgQIAAAQIECJwJKFTOIHwhEFFAJgIECBAgQIAAAQIECBAgQCC+gIQECBAgUEZAoVLG2SoECBAgQIAAAQLXC3iUAAECBAgQIECAAAECBAg0IaBQ6bVNDiZAgAABAgQIECBAgAABAgTiC0hIgAABAgQIEFgsFCpeBQQIECBAILqAfAQIECBAgAABAgQIECBAgEB8AQlHF1CojE5sAQIECBAgQIAAAQIECBD4mIDvEyBAgAABAgQIEKhdQKFS+w6ZjwCBFgTMSIAAAQIECBAgQIAAAQIECMQXkJAAgZkLKFRm/gIQnwABAgQIECBAYC4CchIgQIAAAQIECBAgQIBAHwGFSh89x5YTsBIBAgQIECBAgAABAgQIECAQX0BCAgQIECBQscBG+t8vFc9nNAIECBAgQIBAMwIGJUCAAAECBAgQIECAAAECBMIK/LLx66+//r/FYhE2oWAECBAgQIAAAQIECBAgQIDAWwE3CBAgQIAAAQIEugm8yh/59c9uxzqKAAECBAiUFrAeAQIECBAgQIAAAQIECBAgEF9AQgJVCrza2NzcfLVcLn3sV5X7YygCBAgQIECAAAECBJoTMDABAgQIECBAgAABAuEEUo/yz42HDx/+slqtvEsl3PYKRKCbgKMIECBAgAABAgQIECBAgACB+AISEiBAgMB6AicnJ/87f+TX4s6dOz+sd6hnEyBAgAABAgQIEJhMwMIECBAgQIAAAQIECBAgQKCYwHK5fPX111+/PC1U0qp/Tw/42K8EMf7FCgQIECBAgAABAgQIECBAgEB8AQkJECBAgACBQAIvc5bTQiV/7Fe6410qCcGFAAECBAgQWCwWEAgQIECAAAECBAgQIECAAIH4AhLeSuA3v/nNs/zE00Ll9MbGxn/lr64ECBAgQIAAAQIECBAgQKAFATMSIECAAAECBAgQGFtguVw+//Of//x/8zpvC5WHDx++St84bVnyN1wJECBAYFQBJydAgAABAgQIECBAgAABAgTiC0hIgEDDAqkzeXX+7pQc422hcnpnY+O/8xPybVcCBAgQIECAAAECBOYuID8BAgQIECBAgAABAgTmK5D6kmfn707JCpcKlYcPH/6ysbHxp/SkX/I3XQk0LWB4AgQIECBAgAABAgQIECBAIL6AhAQIECBAYASB1Wr13d/+9re/Xzz1pUIlfyOVKvmjvx7n264ECBAgQIAAAQLjCjg7AQIECBAgQIAAAQIECBAgUJ3Ay6+//vp/Xp3qvUIlPyG1Lv9rY2PjY6VKfqorAQIECBAgQIAAAQIECBAgEFtAOgIECBAgQIDAnARe3rlz5+F1gTeuezA/lkqVv//Hf/zH/eVy+SrfdyVAgAABAm0KmJoAAQIECBAgQIAAAQIECBCILyAhgf4C+WO+vvrqqz89fPjw2l+L8sFCJS/9l7/85f9svPmdKs/zfVcCBAgQIECAAAECBAgQGEHAKQkQIECAAAECBAgQmExguVzmAuXJdR/zdXGoGwuV/MSHDx+++vLLL/9HKlYep5N6t0pGcSVA4JKAOwQIECBAgAABAgQIECBAgEB8AQkJECAQUSC/KyX1H3/46quv/vtj+T5aqJyfIH8EWCpW/pBOnH+3ysvzx30lQIAAAQIECBAg0ICAEQkQIECAAAECBAgQIECAwKnAcrn8JV2f3blz5z/zu1IePrz+I75On3zhj1sXKufH5GIlNTV/Sgudlitp0e/S93LB4t0rCWKci7MSIECAAAECBAgQIECAAAEC8QUkJECAAAECBIYWSB1G/jivV+nrD6nXeLJarf705Zdf/me6/tdti5Tzmf4/AAAA//+MXH+SAAAABklEQVQDANT19+kucNk9AAAAAElFTkSuQmCC' x='0' y='0' width='1620' height='650'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: -1;
}


/***
=============================================
About Three
=============================================
***/

.about-three {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 0px 0px 120px;
  z-index: 1;
}

.bout-three__left {
  position: relative;
  display: block;
}

.about-three__left-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.about-three__left-img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background-color: var(--automart-base);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.about-three__left-img:hover::before {
  opacity: .5;
}

.about-three__left-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.about-three__left-img:hover img {
  filter: saturate(1.0);
  transform: scale(1.05) rotate(0deg);
}

.about-three__middle {
  position: relative;
  display: block;
  padding-right: 70px;
}

.about-three__middle .section-title {
  margin-bottom: 15px;
}

.about-three__middle-text {
  position: relative;
  display: block;
  border-bottom: 1px solid rgb(var(--automart-black-rgb), .1);
  padding-bottom: 26px;
}

.about-three__middle-text p {
  color: var(--automart-gray);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

.about-three__middle-list {
  position: relative;
  display: block;
  padding-top: 28px;
}

.about-three__middle-list ul {
  position: relative;
  display: block;
}

.about-three__middle-list ul li {
  position: relative;
  display: block;
  padding-left: 25px;
}

.about-three__middle-list ul li+li {
  margin-top: 15px;
}

.about-three__middle-list ul li i {
  position: absolute;
  top: 7px;
  left: 0;
  color: var(--automart-base);
  font-size: 13px;
  line-height: 13px;
}

.about-three__middle-list ul li p {
  color: var(--automart-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.about-three__middle-btn {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 37px;
}

.about-three__right {
  position: relative;
  display: block;
  margin-left: -30px;
}

.about-three__right-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.about-three__right-img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background-color: var(--automart-base);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.about-three__right-img:hover::before {
  opacity: .5;
}

.about-three__right-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.about-three__right-img:hover img {
  transform: scale(1.05) rotate(0deg);
}

.about-three__right-counter {
  position: relative;
  display: block;
  margin-top: 21px;
}

.about-three__right-counter ul {
  position: relative;
  display: block;
}

.about-three__right-counter ul li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(var(--automart-black-rgb), .1);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.about-three__right-counter ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-three__right-counter-icon {
  position: relative;
  display: block;
}

.about-three__right-counter-icon i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--automart-base);
  color: var(--automart-white);
  font-size: 50px;
  line-height: 50px;
}

.about-three__right-counter-text {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.about-three__right-count {
  position: relative;
  display: flex;
  align-items: baseline;
}

.about-three__right-count h3 {
  font-size: 75px;
  line-height: .8em;
  font-weight: 700;
}

.about-three__right-count h3.odometer.odometer-auto-theme,
.about-three__right-count h3.odometer.odometer-theme-default {
  line-height: .8em;
}

.about-three__right-count .k {
  color: var(--automart-black);
  font-size: 75px;
  line-height: .7em;
  font-family: var(--automart-font-two);
  font-weight: 700;
}

.about-three__right-count-title {
  position: relative;
  display: block;
}

.about-three__right-count-title h3 {
  font-size: 18px;
  line-height: 28px;
  font-family: var(--automart-font);
  font-weight: 500;
}



/***
=============================================
Services Three
=============================================
***/
.services-three {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  padding: 120px 0px 85px;
  z-index: 1;
}

.services-three .section-title__tagline,
.services-three .section-title__title {
  color: var(--automart-white);
}

.services-three__single {
  position: relative;
  display: block;
  padding-top: 60px;
  margin-bottom: 35px;
}

.services-three__icon {
  position: absolute;
  top: 0;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--automart-black);
  border: 1px solid rgb(var(--automart-white-rgb), .2);
  z-index: 2;
}

.services-three__icon i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--automart-base);
}

.services-three__icon i::before {
  color: var(--automart-white);
  font-size: 50px;
  line-height: 50px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.services-three__single:hover .services-three__icon i::before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.services-three__content {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background-color: rgb(var(--automart-white-rgb), .1);
  border: 1px solid rgb(var(--automart-white-rgb), .2);
  padding: 62px 30px 32px;
}

.services-three__title {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.services-three__title a {
  color: var(--automart-white);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.services-three__title a:hover {
  color: var(--automart-base);
}

.services-three__text {
  position: relative;
  display: block;
  margin-top: 15px;
  color: var(--automart-white);
}
















/***
=============================================
Services Three
=============================================
***/
.team-three {
  position: relative;
  display: block;
  padding: 120px 0 84px;
  overflow: hidden;
  z-index: 1;
}

.team-three__shape1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .20;
  z-index: -1;
}

.team-three__shape2 {
  position: absolute;
  bottom: 0;
  right: -30px;
  opacity: .20;
  z-index: -1;
}

.team-three__single {
  position: relative;
  display: block;
  margin-left: 26px;
  margin-bottom: 30px;
}

.team-three__img-box {
  position: relative;
  display: block;
}

.team-three__img {
  position: relative;
  display: block;
  border-radius: 27px;
  overflow: hidden;
}

.team-three__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: var(--automart-black);
  transition: opacity 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.team-three__single:hover .team-three__img::before {
  opacity: 0.5;
}

.team-three__img img {
  width: 100%;
  border: 2px solid rgba(var(--automart-black-rgb), .30);
  border-radius: 27px;
}

.team-three__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.team-three__title-box {
  position: relative;
  display: block;
}

.team-three__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 5px;
}

.team-three__title a {
  color: var(--automart-black);
}

.team-three__title a:hover {
  color: var(--automart-base);
}

.team-three__sub-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.team-three__arrow {
  position: relative;
  display: block;
}

.team-three__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: var(--automart-base);
  border: 1px solid var(--automart-base);
  border-radius: 50%;
}

.team-three__arrow a:hover {
  color: var(--automart-white);
  border: 1px solid var(--automart-base);
  background-color: var(--automart-base);
}

.team-three__share-and-social {
  position: absolute;
  left: -26px;
  bottom: 18px;
  cursor: pointer;
  z-index: 2;
}

.team-three__share {
  position: relative;
  display: block;
}

.team-three__share span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 20px;
  color: var(--automart-white);
  background-color: var(--automart-base);
  border: 2px solid var(--automart-white);
  border-radius: 50%;
}

.team-three__social {
  position: absolute;
  left: 26px;
  top: 4px;
  background-color: var(--automart-white);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 6px 6px;
  padding-left: 30px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  background-position: left center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: left;
  transform-style: preserve-3d;
  transform: scalex(0);
  z-index: -1;
}

.team-three__share-and-social:hover .team-three__social {
  transform: scalex(1.0);
}

.team-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  color: var(--automart-black);
  background-color: #F1F1F2;
  border-radius: 50%;
}

.team-three__social a:hover {
  color: var(--automart-white);
  background-color: var(--automart-base);
}


/***
=============================================
Brand One
=============================================
***/

.brand-one {
  position: relative;
  display: block;
  background-color: var(--automart-base);
  padding: 55px 0px 55px;
  z-index: 1;
}

.single-brand-one {
  position: relative;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-brand-one a {
  position: relative;
  display: block;
  z-index: 5;
}

.single-brand-one a img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translateY(50%) scaleY(2);
  transform: translateY(50%) scaleY(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-brand-one:hover a img:first-child {
  -webkit-transform: translateY(0) scaleY(1);
  transform: translateY(0) scaleY(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-brand-one:hover a img:nth-child(2) {
  -webkit-transform: translateY(-50%) scaleY(2);
  transform: translateY(-50%) scaleY(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-brand-one a img {
  position: relative;
  display: block;
  width: auto;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
  opacity: 0.85;
}

.brand-one__carousel.owl-carousel .owl-item img {
  width: auto;
  cursor: pointer;
}


/*--------------------------------------------------------------
# Portject Two
--------------------------------------------------------------*/
.project-two {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.project-two__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.project-two .container {
  max-width: 1275px;
}

.project-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-two__img-box {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--automart-bdr-radius);
  z-index: 1;
}

.project-two__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--automart-black-rgb), .85);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.project-two__single:hover .project-two__img:before {
  opacity: 1;
  transform: translateY(0px);
}

.project-two__img img {
  width: 100%;
  border-radius: var(--automart-bdr-radius);
}

.project-two__content-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 30px 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.project-two__icon-box {
  position: relative;
  display: block;
  opacity: 0;
  transform: translateY(-50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-two__single:hover .project-two__icon-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.project-two__icon-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--automart-white);
  width: 45px;
  height: 45px;
  background-color: var(--automart-base);
  border-radius: 50%;
  margin-left: auto;
  font-size: 18px;
}

.project-two__icon-box a:hover {
  background-color: var(--automart-white);
  color: var(--automart-base);
}

.project-two__title-box {
  position: relative;
  display: block;
}

.project-two__content-box h3 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateX(-60px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-two__single:hover .project-two__content-box h3 {
  opacity: 1;
  transform: translateX(0%);
  transition-delay: 700ms;
}

.project-two__content-box h3 a {
  color: var(--automart-white);
}

.project-two__content-box h3 a:hover {
  color: var(--automart-base);
}

.project-two__content-box p {
  position: relative;
  display: block;
  font-size: 18px;
  color: var(--automart-base);
  font-weight: 500;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-two__single:hover .project-two__content-box p {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}


/*--------------------------------------------------------------
# CTA Four
--------------------------------------------------------------*/
.cta-four {
  position: relative;
  display: block;
  padding: 210px 0px 120px;
  z-index: 1;
}

.cta-four .container {
  max-width: 1650px;
}

.cta-four__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.cta-four__img {
  position: absolute;
  bottom: 0;
  left: 50px;
  animation: leftRight 4s ease-in-out infinite;
  z-index: 2;
}

.cta-four__img img {
  width: auto;
}

.cta-four__inner-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  background-color: var(--automart-base);
  border-radius: 15px;
  padding: 104px 400px 104px;
  padding-right: 60px;
  z-index: 1;
}

.cta-four__shpae-1 {
  position: absolute;
  top: -175px;
  right: -75px;
  opacity: .10;
  z-index: -1;
}

.cta-four__shpae-1 img {
  width: auto;
}

.cta-four__content {
  position: relative;
  display: block;
}

.cta-four__title {
  color: var(--automart-white);
  font-size: 48px;
  line-height: 1.1em;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 15px;
}

.cta-four__text {
  color: rgba(var(--automart-white-rgb), .80);
}

.cta-four__btn {
  position: relative;
  display: block;
}

.cta-four__btn .thm-btn span {
  background-color: var(--automart-black);
}

.cta-four__btn .thm-btn i {
  background-color: var(--automart-black);
}

.cta-four__btn .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.cta-four__btn .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.cta-four__btn .thm-btn:hover span,
.cta-four__btn .thm-btn:hover i {
  color: var(--automart-base);
}

/***
=============================================
     Process Two
=============================================
***/
.process-two {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 0px 0px 120px;
  z-index: 1;
}

.process-two__single {
  position: relative;
  display: block;
}

.process-two__single-inner {
  position: relative;
  display: block;
  text-align: center;
  background: var(--automart-white);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 30px 20px 31px;
}

.process-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  margin: 0 auto 20px;
  background-color: var(--automart-black);
  border-radius: 50%;
  border: 1px solid var(--automart-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.process-two__single:hover .process-two__icon {
  background-color: var(--automart-base);
}

.process-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 44px;
  color: var(--automart-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.process-two__single:hover .process-two__icon span {
  transform: scale(0.9);
}

.process-two__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 4px;
}

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

.process-two__count-box {
  position: absolute;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  background: var(--automart-white);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
  padding: 11px 20px 11px;
  border-radius: 20px;
  bottom: -20px;
  left: 0;
  right: 0;
  max-width: 140px;
  margin: 0 auto 0;
}

.process-two__count-box p {
  font-size: 18px;
  font-weight: 600;
  color: var(--automart-black);
  line-height: 1em;
}

.process-two__count {
  position: relative;
  display: block;
}

.process-two__count:before {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1em;
  font-weight: 600;
  color: var(--automart-black);
  border-radius: 50%;
  counter-increment: count;
  content: "0"counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

/*--------------------------------------------------------------
# Mobile Car 
--------------------------------------------------------------*/
.mobile-car {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  padding: 120px 0px 0px;
  overflow: hidden;
  z-index: 1;
}

.mobile-car__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.mobile-car__shape-1 img {
  width: auto;
}

.mobile-car__shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.mobile-car__shape-2 img {
  width: auto;
}

.mobile-car__left {
  position: relative;
  display: block;
  margin-top: 50px;
  margin-right: 25px;
}

.mobile-car__left .section-title {
  margin-bottom: 24px;
}

.mobile-car__left .section-title__title {
  color: var(--automart-white);
}

.mobile-car__text {
  color: var(--automart-white);
}

.mobile-car__content-box {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-white-rgb), .10);
  padding: 25px 30px 25px;
  border-radius: 10px;
  margin-top: 32px;
}

.mobile-car__content-box ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -40px;
}

.mobile-car__content-box ul li {
  position: relative;
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
  padding: 0 40px;
}

.mobile-car__content-single {
  position: relative;
  display: block;
}

.mobile-car__content-single:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;
  width: 1px;
  background-color: rgba(var(--automart-white-rgb), .10);
}

.mobile-car__content-box ul li:first-child .mobile-car__content-single:before {
  display: none;
}

.mobile-car__content-single h3 {
  font-size: 22px;
  color: var(--automart-white);
  text-transform: capitalize;
  line-height: 1em;
  margin-bottom: 10px;
}

.mobile-car__content-single p {
  color: var(--automart-white);
}

.mobile-car__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.mobile-car__btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--automart-base);
  color: var(--automart-white);
  padding: 10px 25px 11px;
  border-radius: 5px;
}

.mobile-car__btn-box a.last-child {
  background-color: rgba(var(--automart-white-rgb), .10);
}

.mobile-car__btn-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-car__btn-icon i {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--automart-white);
}

.mobile-car__btn-content {
  position: relative;
  display: block;
  margin-left: 10px;
}

.mobile-car__btn-content p {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 12px;
}

.mobile-car__btn-content h3 {
  color: var(--automart-white);
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  margin-top: 5px;
}

.mobile-car__right {
  position: relative;
  display: block;
  margin-left: 140px;
  margin-right: -100px;
}

.mobile-car__img-box {
  position: relative;
  display: block;
}

.mobile-car__img {
  position: relative;
  display: block;
}

.mobile-car__img img {
  width: 100%;
  animation: leftRight 4s ease-in-out infinite;
}

.mobile-car__call {
  position: absolute;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  bottom: 60px;
  left: -100px;
  background-color: rgba(var(--automart-white-rgb), .10);
  padding: 10px 20px 10px;
  border-radius: 20px;
}

.mobile-car__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: rgba(var(--automart-white-rgb), .10);
  border-radius: var(--automart-bdr-radius);
}

.mobile-car__call-icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--automart-white);
}

.mobile-car__call-content {
  position: relative;
  display: block;
  flex: 1;
}

.mobile-car__call-content p {
  font-size: 17px;
  color: var(--automart-white);
  font-weight: 500;
}

.mobile-car__call-content h4 {
  font-size: 22px;
  line-height: 1em;
  font-weight: 600;
  margin-top: 10px;
}

.mobile-car__call-content h4 a {
  color: var(--automart-white);
}

.mobile-car__call-content h4 a:hover {
  color: var(--automart-base);
}


/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0 120px;
  z-index: 1;
}

.why-choose-one__bg {
  position: absolute;
  top: 120px;
  right: 0;
  bottom: 120px;
  width: calc((100% - 132px) / 2);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  border-bottom-left-radius: var(--automart-bdr-radius);
  border-top-left-radius: var(--automart-bdr-radius);
  z-index: -1;
}

.why-choose-one__shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotateY(180deg);
  z-index: -1;
}

.why-choose-one__shape-1 img {
  width: auto;
}

.why-choose-one__inner {
  position: relative;
  display: block;
}

.why-choose-one__left {
  position: relative;
  display: block;
}

.why-choose-one__left .section-title {
  margin-bottom: 31px;
}

.why-choose-one__text {
  margin-bottom: 36px;
}

.why-choose-one__points-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.why-choose-one__points {
  position: relative;
  display: block;
}

.why-choose-one__points li {
  position: relative;
  display: flex;
  gap: 15px;
}

.why-choose-one__points li+li {
  margin-top: 29px;
}

.why-choose-one__points li .icon {
  position: relative;
  display: block;
  top: 3px;
}

.why-choose-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--automart-base);
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.why-choose-one__points li:hover .icon span {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.why-choose-one__points li .content {
  position: relative;
  display: block;
  flex: 1;
}

.why-choose-one__points li .content h3 {
  font-size: 20px;
  line-height: 25px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-choose-one__points li .content h3 a {
  color: var(--automart-black);
}

.why-choose-one__points li .content h3 a:hover {
  color: var(--automart-base);
}

.why-choose-one__btn-box {
  position: relative;
  display: block;
  margin-top: 40px;
}

.why-choose-one__img {
  position: absolute;
  bottom: 0;
  right: 274px;
}

.why-choose-one__img img {
  width: auto;
  border-radius: 20px;
  border: 5px solid var(--automart-white);
  border-bottom: 0;
  border-left: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
}

.why-choose-one__video-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.why-choose-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 25px;
  color: var(--automart-white);
  background-color: rgba(var(--automart-base-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.why-choose-one__video-icon:hover {
  background-color: var(--automart-white);
  color: var(--automart-base);
}

.why-choose-one__video-link .ripple,
.why-choose-one__video-icon .ripple:before,
.why-choose-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--automart-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.why-choose-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.why-choose-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*--------------------------------------------------------------
# Faq Two
--------------------------------------------------------------*/
.faq-two {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .04);
  padding: 120px 0px 120px;
  z-index: 1;
}

.faq-two__bg {
  position: absolute;
  top: 120px;
  right: 0;
  bottom: 120px;
  width: calc((100% - 40px) / 2);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  border-bottom-left-radius: var(--automart-bdr-radius);
  border-top-left-radius: var(--automart-bdr-radius);
  z-index: -1;
}

.faq-two__left {
  position: relative;
  display: block;
}

.faq-two__left .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background: var(--automart-white);
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-two__left .faq-one-accrodion .accrodion.active {
  border: 1px solid rgba(var(--automart-black-rgb), .15);
  background: var(--automart-white);
}

.faq-two__left .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 15px 22px 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-two__left .faq-one-accrodion .accrodion.active .accrodion-title {
  background-color: var(--automart-base);
}

.faq-two__left .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--automart-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-two__left .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--automart-white);
}

.faq-two__left .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-two__left .faq-one-accrodion .accrodion-title h4::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  font-size: 17px;
  color: var(--automart-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--automart-base-rgb), 1);
}

.faq-two__left .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--automart-base);
  background-color: var(--automart-white);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-two__left .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 5px;
}

.faq-two__left .faq-one-accrodion .accrodion-content p {
  margin: 0;
  font-weight: 500;
}

.faq-two__info-box {
  position: absolute;
  bottom: 120px;
  right: 582px;
  max-width: 350px;
  width: 100%;
  background-color: var(--automart-black);
  padding: 0 30px 30px;
  border-bottom-left-radius: var(--automart-bdr-radius);
  border-top-right-radius: var(--automart-bdr-radius);
  text-align: center;
}

.faq-two__info-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  background-color: var(--automart-white);
  border-bottom-left-radius: var(--automart-bdr-radius);
  border-bottom-right-radius: var(--automart-bdr-radius);
  margin: 0 auto 0;
}

.faq-two__info-icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--automart-black);
}

.faq-two__info-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--automart-white);
  margin-top: 22px;
  margin-bottom: 20px;
}

.faq-two__info-text {
  color: var(--automart-white);
}

.faq-two__btn-box {
  position: relative;
  display: block;
  margin-top: 22px;
}

.faq-two__btn-box .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.faq-two__btn-box .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.faq-two__btn-box .thm-btn:hover span,
.faq-two__btn-box .thm-btn:hover i {
  color: var(--automart-base);
}

/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/
.contact-two {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
}

.contact-two__left {
  position: relative;
  display: block;
}

.contact-two__left .section-title {
  margin-bottom: 21px;
}

.contact-two__left .section-title__title {}

.contact-two__info {
  position: relative;
  display: block;
  margin-top: 32px;
  margin-right: 100px;
}

.contact-two__info-list {
  position: relative;
  display: block;
}

.contact-two__info-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: rgb(var(--automart-gray-rgb), .05);
  padding: 30px 30px 30px;
  border-radius: 10px;
}

.contact-two__info-list li+li {
  margin-top: 25px;
}

.contact-two__info-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(var(--automart-black-rgb), 1);
  color: var(--automart-white);
  font-size: 22px;
  line-height: 22px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.contact-two__info-list li:hover .contact-two__info-icon {
  background-color: var(--automart-base);
  color: var(--automart-white);
}

.contact-two__info-text {
  position: relative;
  display: block;
  flex: 1;
}

.contact-two__info-text p {
  color: rgba(var(--automart-gray-rgb), 1);
  font-weight: 400;
}

.contact-two__info-text h3 {
  color: var(--automart-black);
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
}

.contact-two__info-text h3 a {
  color: var(--automart-black);
  transition: all 200ms linear;
  transition-delay: .1s;
}

.contact-two__info-text h3 a:hover {
  color: var(--automart-base);
}

.contact-two__right {
  position: relative;
  display: block;
  background-color: rgb(var(--automart-gray-rgb), .05);
  padding: 58px 60px 58px;
  border-radius: 10px;
  margin-left: 30px;
  overflow: hidden;
}

#contact-two_form {
  position: relative;
  display: block;
}

.contact-two__input-box {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.contact-two__input-box label {
  position: relative;
  display: block;
  color: var(--automart-white);
  font-size: 20px;
  line-height: 30px;
  font-family: var(--automart-font);
  font-weight: 600;
  margin-bottom: 13px;
}

.contact-two__input-box label span {
  color: var(--automart-base);
}

.contact-two__input-box input[type="text"],
.contact-two__input-box input[type="email"],
.contact-two__input-box textarea {
  position: relative;
  display: block;
  height: 65px;
  width: 100%;
  outline: none;
  color: var(--automart-black);
  font-size: 17px;
  font-family: var(--automart-font);
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: capitalize;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  padding: 0px 25px 0px;
  resize: none;
}

.contact-two__input-box textarea {
  height: 130px;
  border-radius: 10px;
  padding: 16px 25px 0px;
}

.contact-two__input-box .select-box {
  width: 100%;
}

.contact-two__input-box .nice-select {
  position: relative;
  display: block;
  height: 65px;
  width: 100%;
  outline: none;
  color: var(--automart-black);
  font-size: 17px;
  line-height: 60px;
  font-family: var(--automart-font);
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: capitalize;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  padding: 0px 25px 0px;
}

.contact-two__input-box .nice-select:after {
  position: absolute;
  top: 27px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--automart-black);
  border-right: 2px solid var(--automart-black);
  margin-top: 0px;
  z-index: 10;
}

.contact-two__input-box .nice-select .option {
  color: var(--automart-white);
}

.contact-two__input-box .nice-select .option.selected {
  font-weight: 500;
}

.contact-two__input-box .nice-select .list {
  background-color: var(--automart-base);
}

.contact-two__input-box .nice-select .option:hover,
.contact-two__input-box .nice-select .option.focus,
.contact-two__input-box .nice-select .option.selected.focus {
  color: var(--automart-white);
}

.contact-two__btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 12px;
}

#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--automart-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--automart-base) none repeat scroll 0 0;
  border: 2px solid var(--automart-base);
  border-radius: 0;
  color: var(--automart-white);
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: var(--automart-black) !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid var(--automart-black) !important;
  background: var(--automart-black) !important;
  color: var(--automart-white) !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: var(--automart-white);
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: var(--automart-black);
  color: var(--automart-white);
  border-color: var(--automart-black);
}

#ui-datepicker-div.ui-widget {
  font-family: var(--automart-font);
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.blog-three__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 51px;
}

.blog-three__top .section-title {
  margin-bottom: 0;
}

.blog-three__top-btn {
  position: relative;
  display: block;
}

.blog-three__bottom {
  position: relative;
  display: block;
}

.blog-three__list {
  position: relative;
  display: block;
}

.blog-three__list>li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.blog-three__list>li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-three__img {
  position: relative;
  display: block;
  max-width: 345px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.blog-three__img::before {
  background: rgba(255, 255, 255, .3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.blog-three__list>li:hover .blog-three__img::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 600ms linear;
  transition: all 600ms linear;
}

.blog-three__img img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1.0);
  transition: all 1500ms ease;
}

.blog-three__list>li:hover .blog-three__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-three__content-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  flex: 1;
}

.blog-three__content {
  position: relative;
  display: block;
}

.blog-three__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-three__meta>li {
  position: relative;
  display: block;
}

.blog-three__meta>li>a {
  font-size: 16px;
  color: var(--automart-gray);
  position: relative;
  display: block;
}

.blog-three__meta>li>a:hover {
  color: var(--automart-base);
}

.blog-three__meta>li>a>i {
  position: relative;
  display: inline-block;
  color: var(--automart-base);
  padding-right: 7px;
}

.blog-three__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-top: 28px;
  margin-bottom: 14px;
}

.blog-three__title a {
  color: var(--automart-black);
}

.blog-three__title a:hover {
  color: var(--automart-base);
}

.blog-three__more-post {
  position: relative;
  display: block;
}

.blog-three__more-post a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: var(--automart-black);
  border-radius: 10px;
  font-size: 30px;
  color: var(--automart-white);
}

.blog-three__more-post a:hover {
  background-color: var(--automart-base);
}

/*--------------------------------------------------------------
# Newsletter One
--------------------------------------------------------------*/
.newsletter-one {
  position: relative;
  display: block;
  background-color: var(--automart-base);
  z-index: 2;
}

.newsletter-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .05;
  z-index: -1;
}

.newsletter-one__big-text {
  position: absolute;
  right: 0px;
  bottom: 20px;
  font-weight: 700;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.11) 0%, rgba(0, 0, 0, 0.06) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: -1;
}

.newsletter-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 80px 0 80px;
}

.newsletter-one__left {
  position: relative;
  display: block;
}

.newsletter-one__title-box {
  position: relative;
  display: block;
}

.newsletter-one__title {
  font-size: 40px;
  font-weight: 600;
  color: var(--automart-white);
  line-height: 45px;
  letter-spacing: -0.03em;
}

.newsletter-one__title span {
  font-weight: 300;
}

.newsletter-one__text {
  font-size: 14px;
  color: var(--automart-white);
}

.newsletter-one__text a {
  color: var(--automart-white);
  text-decoration: underline;
}

.newsletter-one__text a:hover {
  color: var(--automart-extra);
  text-decoration: underline;
}

.newsletter-one__form-box {
  position: relative;
  display: block;
  max-width: 775px;
  width: 100%;
}

.newsletter-one__form {
  position: relative;
  display: block;
}

.newsletter-one__input {
  position: relative;
  display: block;
}

.newsletter-one__input input[type="email"] {
  font-size: 16px;
  color: var(--automart-white);
  font-weight: 400;
  height: 60px;
  width: 100%;
  background: rgba(var(--automart-white-rgb), .30);
  border: none;
  border-radius: 6px;
  outline: none;
  padding: 0 25px 0;
  padding-right: 160px;
}

.newsletter-one__btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--automart-black);
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: var(--automart-white);
  padding: 21px 20px 21px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  gap: 10px;
  overflow: hidden;
  font-family: var(--automart-font-two);
  border: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
}

.newsletter-one__btn:hover {
  color: var(--automart-base);
}

.newsletter-one__btn::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 10%;
  height: 10%;
  background-color: rgba(var(--automart-white-rgb), 1);
  background-position: left center;
  transition-timing-function: ease-in-out;
  transition-property: all;
  transform-origin: left;
  transform-style: preserve-3d;
  transform: scaleX(1);
  opacity: 0;
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.newsletter-one__btn:hover::before {
  opacity: 1;
  width: 120%;
  height: 200%;
  transform: scaleX(1.0);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 2s;
}

/*==============================================
    Site Footer Three
===============================================*/
.site-footer-three {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  overflow: hidden;
  z-index: 1;
}

.site-footer-three__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 0.02;
}

.site-footer-three__shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.site-footer-three__shape-1 img {
  width: auto;
}

.site-footer-three__top {
  position: relative;
  display: block;
}

.site-footer-three__top-inner {
  position: relative;
  display: block;
  padding: 111px 0 90px;
}

.footer-widget-three__about {
  position: relative;
  display: block;
}

.footer-widget-three__about-logo {
  position: relative;
  display: block;
}

.footer-widget-three__about-text {
  margin: 0;
  color: rgba(var(--automart-white-rgb), .80);
  font-weight: 500;
  padding-top: 27px;
  padding-bottom: 30px;
}

.footer-widget-three__social {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: 1px solid rgba(var(--automart-white-rgb), .40);
  border-radius: 10px;
  font-size: 15px;
  color: var(--automart-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.footer-widget-three__social a:hover {
  color: var(--automart-base);
  border: 1px solid var(--automart-white);
}

.footer-widget-three__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--automart-white);
  transform: scale(0.5);
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.footer-widget-three__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.footer-widget-three__social a+a {
  margin-left: 5px;
}

.footer-widget-three__title {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--automart-white);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.footer-widget-three__title:before {
  content: "";
  height: 2px;
  width: 80px;
  background: rgba(var(--automart-white-rgb), .50);
  position: absolute;
  bottom: -14px;
  left: 0;
}

.footer-widget-three__title::after {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 30px;
  height: 6px;
  content: "";
  background: var(--automart-white);
}

.footer-widget-three__links {
  position: relative;
  display: block;
  margin-left: 40px;
}

.footer-widget-three__links-list {
  position: relative;
  display: block;
}

.footer-widget-three__links-list li+li {
  margin-top: 16px;
}

.footer-widget-three__links-list li a {
  color: rgba(var(--automart-white-rgb), .80);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-three__links-list li a:hover {
  color: var(--automart-white);
}

.footer-widget-three__news-update {
  position: relative;
  display: block;
  margin-left: -100px;
}

.footer-widget-three__news-update-list {
  position: relative;
  display: block;
}

.footer-widget-three__news-update-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-widget-three__news-update-list li+li {
  margin-top: 20px;
}

.footer-widget-three__news-update-img {
  position: relative;
  display: block;
  width: 80px;
}

.footer-widget-three__news-update-img img {
  width: 100%;
  border-radius: 5px;
}

.footer-widget-three__news-update-content {
  position: relative;
  display: block;
  flex: 1;
}

.footer-widget-three__news-update-content p {
  font-size: 16px;
  color: var(--automart-white);
  margin-bottom: 5px;
}

.footer-widget-three__news-update-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--automart-white);
  line-height: 28px;
}

.footer-widget-three__news-update-content h4 a {
  color: var(--automart-white);
}

.footer-widget-three__news-update-content h4 a:hover {
  color: var(--automart-base);
}

.footer-widget-three__services {
  position: relative;
  display: block;
  margin-left: -25px;
}

.site-footer-three__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--automart-white-rgb), .10);
}

.site-footer-three__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 28px;
}

.site-footer-three__copyright {
  position: relative;
  display: block;
}

.site-footer-three__copyright-text {
  color: rgba(var(--automart-white-rgb), .80);
}

.site-footer-three__copyright-text a {
  color: var(--automart-white);
  font-weight: 500;
}

.site-footer-three__copyright-text a:hover {
  color: var(--automart-base);
}

.site-footer-three__bottom-menu-box {
  position: relative;
  display: block;
}

.site-footer-three__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer-three__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer-three__bottom-menu li+li {
  margin-left: 25px;
}

.site-footer-three__bottom-menu li a {
  position: relative;
  display: inline-block;
  color: rgba(var(--automart-white-rgb), .80);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-three__bottom-menu li a:hover {
  color: var(--automart-white);
}

/*==============================================
    Testimonial Three
===============================================*/
.testimonial-three {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-three__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .03;
  z-index: 1;
}

.testimonial-three__shape-1 img {
  width: auto;
}

.testimonial-three__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .03;
  z-index: 1;
}

.testimonial-three__shape-2 img {
  width: auto;
}

.testimonial-three__top-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 51px;
}

.testimonial-three__top-content .section-title {
  margin-bottom: 0;
}

.testimonial-three__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
}

.testimonial-three__nav-prev,
.testimonial-three__nav-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.testimonial-three__nav-prev:hover,
.testimonial-three__nav-next:hover {
  border-color: var(--automart-base);
}

.testimonial-three__nav-prev::before,
.testimonial-three__nav-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.7);
  background-color: var(--automart-base);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.testimonial-three__nav-prev:hover::before,
.testimonial-three__nav-next:hover::before {
  opacity: 1;
  transform: scale(1);
}

.testimonial-three__nav-prev span,
.testimonial-three__nav-next span {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.testimonial-three__nav-prev span i,
.testimonial-three__nav-next span i {
  position: relative;
  display: inline-block;
  color: var(--automart-black);
  font-size: 18px;
  line-height: 18px;
  transition: all 200ms linear;
  transition-delay: .1s;
}

.testimonial-three__nav-prev:hover span i,
.testimonial-three__nav-next:hover span i {
  color: var(--automart-white);
}

.testimonial-three__nav-prev span i.left {
  transform: rotate(0deg);
}

.testimonial-three__carousel {
  position: relative;
  display: block;
}

.testimonial-three__single {
  position: relative;
  display: block;
  background-color: var(--automart-white);
  border: 1px solid rgba(var(--automart-gray-rgb), .20);
  border-radius: 24px;
  padding: 20px 20px 15px;
  z-index: 1;
}

.testimonial-three__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 21px;
}

.testimonial-three__top-title {
  position: relative;
  display: block;
}

.testimonial-three__top-title h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.testimonial-three__top-quote {
  position: relative;
  display: block;
}

.testimonial-three__top-quote span {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--automart-base);
  text-transform: uppercase;
}

.testimonial-three__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(var(--automart-gray-rgb), .20);
  padding-top: 15px;
  margin-top: 19px;
}

.testimonial-three__star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.testimonial-three__star span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--automart-base);
}

.testimonial-three__client-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.testimonial-three__client-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border: 1px solid var(--automart-base);
  border-radius: 50%;
}

.testimonial-three__client-img {
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-three__client-img img {
  width: 100%;
}

.testimonial-three__client-content {
  position: relative;
  display: block;
  flex: 1;
}

.testimonial-three__client-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}

.testimonial-three__client-name a {
  color: var(--automart-black);
}

.testimonial-three__client-name a:hover {
  color: var(--automart-base);
}

.testimonial-three__client-sub-title {
  font-size: 14px;
  line-height: 21px;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--automart-black);
  border-top: 1px solid rgba(var(--automart-white-rgb), .1);
  z-index: 1;
}

.page-header__img {
  position: absolute;
  right: 350px;
  bottom: 0px;
  z-index: 1;
}

.page-header .shape1 {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1;
}

.page-header .shape2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: -1;
}

.page-header .shape3 {
  position: absolute;
  left: 420px;
  bottom: 0px;
  z-index: -1;
}

.page-header .shape4 {
  position: absolute;
  right: 260px;
  bottom: 0px;
  z-index: -1;
}

.page-header .shape5 {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
  padding: 171px 0 177px;
  z-index: 1;
}

.page-header__inner h2 {
  color: var(--automart-white);
  font-size: 75px;
  line-height: 85px;
  font-weight: 700;
  margin-bottom: 15px;
}

.thm-breadcrumb__inner {
  position: relative;
  display: block;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: var(--automart-white);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 5px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--automart-white);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--automart-base);
  opacity: 1;
}

.thm-breadcrumb li span {
  font-size: 12px;
  color: var(--automart-white);
}

/*--------------------------------------------------------------
# Team One About
--------------------------------------------------------------*/
.team-one--about {
  position: relative;
  display: block;
  padding-top: 120px;
}

/*--------------------------------------------------------------
# Testimonial One About
--------------------------------------------------------------*/
.testimonial-one--about {
  position: relative;
  display: block;
  margin-top: -100px;
  padding-top: 220px;
}

/*--------------------------------------------------------------
# Services Page Two
--------------------------------------------------------------*/
.services-page-two {
  padding: 120px 0px 90px;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.service-details__left {
  position: relative;
  display: block;
}

.service-details__img {
  position: relative;
  display: block;
}

.service-details__img img {
  width: 100%;
  border-radius: var(--automart-bdr-radius);
}

.service-details__title-1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-top: 41px;
  margin-bottom: 30px;
}

.service-details__text-1 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--automart-black);
}

.service-details__text-2 {
  margin-top: 20px;
  margin-bottom: 41px;
}

.service-details__points-list {
  position: relative;
  display: block;
}

.service-details__points-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-details__points-list li+li {
  margin-top: 16px;
}

.service-details__points-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--automart-base);
}

.service-details__points-list li p {
  color: var(--automart-black);
}

.service-details__img-box {
  position: relative;
  display: block;
  margin-top: 60px;
  margin-bottom: 31px;
}

.service-details__img-box-single {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.service-details__img-box-img {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: var(--automart-bdr-radius);
  z-index: 1;
}

.service-details__img-box-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: rgb(0, 0, 0);
  border-radius: var(--automart-bdr-radius);
  ;
  transition: all 0.5s ease;
  z-index: 1;
}

.service-details__img-box-img:hover:before {
  opacity: 0.2;
}

.service-details__img-box-img img {
  width: 100%;
  border-radius: var(--automart-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.service-details__img-box-img:hover img {
  transform: scale(1.06) rotate(0deg);
}

.service-details__img-box-content-single {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.service-details__img-box-content-icon-and-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details__img-box-content-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__img-box-content-icon span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: var(--automart-base);
}

.service-details__img-box-content-title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.service-details__img-box-content-text {
  margin-top: 17px;
}

.service-details__faq-box {
  position: relative;
  display: block;
  margin-top: 30px;
}

.service-details__sidebar {
  position: relative;
  display: block;
}

.service-details__services-box {
  position: relative;
  display: block;
  padding: 31px 35px 40px;
  background-color: rgba(var(--automart-gray-rgb), .08);
  border-radius: var(--automart-bdr-radius);
}

.service-details__services-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 28px;
}

.service-details__services-list {
  position: relative;
  display: block;
}

.service-details__services-list li {
  position: relative;
  display: block;
}

.service-details__services-list li+li {
  margin-top: 12px;
}

.service-details__services-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--automart-white);
  border-radius: var(--automart-bdr-radius);
  padding: 13px 20px 14px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--automart-font-two);
  color: var(--automart-black);
  overflow: hidden;
  z-index: 1;
}

.service-details__services-list li:hover a {
  color: var(--automart-white);
}

.service-details__services-list li.active a {
  color: var(--automart-white);
}

.service-details__services-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--automart-base);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.service-details__services-list li:hover a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.service-details__services-list li.active a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.service-details__services-list li a span {
  color: var(--automart-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 16px;
  font-weight: 700;
}

.service-details__services-list li:hover a span {
  color: var(--automart-white);
}

.service-details__services-list li.active a span {
  color: var(--automart-white);
}

.service-details__sidebar-contact {
  position: relative;
  display: block;
  padding-top: 18px;
  padding-bottom: 47px;
  background: rgba(var(--automart-gray-rgb), .05);
  text-align: center;
  border-radius: var(--automart-bdr-radius);
  margin: 30px 0 30px;
  overflow: hidden;
  z-index: 1;
}

.service-details__sidebar-contact::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--automart-base);
  height: 305px;
  clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
  content: "";
  z-index: -2;
}

.service-details__sidebar-contact::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--automart-black);
  height: 295px;
  clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
  content: "";
  z-index: -1;
}

.service-details__sidebar-contact-img {
  position: relative;
  display: block;
  clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
  z-index: 1;
}

.service-details__sidebar-contact-img .inner {
  position: relative;
  display: block;
}

.service-details__sidebar-contact-img .inner img {
  width: auto;
}

.service-details__sidebar-contact-content {
  position: relative;
  display: block;
  margin-top: -65px;
  z-index: 2;
}

.service-details__sidebar-contact-content .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: var(--automart-black);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-details__sidebar-contact-content .icon span {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 20px;
  line-height: 20px;
}

.service-details__sidebar-contact-content h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 13px;
}

.service-details__sidebar-contact-content h2 a {
  color: var(--automart-black);
}

.service-details__sidebar-contact-content h2 a:hover {
  color: var(--automart-base);
}

.service-details__sidebar-contact-content p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--automart-black);
}

.service-details__sidebar-download-box {
  position: relative;
  display: block;
  padding: 31px 35px 40px;
  background-color: rgba(var(--automart-gray-rgb), .08);
  border-radius: var(--automart-bdr-radius);
}

.service-details__sidebar-single-download {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
  padding: 14px 0px 14px;
  line-height: 0;
}

.service-details__sidebar-single-download ul li:first-child {
  padding-top: 0px;
}

.service-details__sidebar-single-download ul li:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.service-details__sidebar-single-download ul li .content-box {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__sidebar-single-download ul li .content-box .icon {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul li .content-box .icon span {
  position: relative;
  display: inline-block;
  color: var(--automart-black);
  font-size: 45px;
  line-height: 45px;
}

.service-details__sidebar-single-download ul li .content-box .text-box {
  position: relative;
  display: block;
  margin-left: 17px;
  flex: 1;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a {
  color: var(--automart-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a:hover {
  color: var(--automart-base);
}

.service-details__sidebar-single-download ul li .content-box .text-box p {
  color: var(--automart-black);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box p a {
  color: var(--automart-black);
}

.service-details__sidebar-single-download ul li .content-box .text-box p a:hover {
  color: var(--automart-base);
}

.service-details__sidebar-single-download ul li .btn-box {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul li .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--automart-base);
  border-radius: 2px;
  overflow: hidden;
}

.service-details__sidebar-single-download ul li .btn-box a:hover {
  background: var(--automart-black);
}

.service-details__sidebar-single-download ul li .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--automart-white);
  font-size: 20px;
  line-height: 20px;
}


.faq-page__single {
  position: relative;
  display: block;
}

.faq-page__single .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--automart-black-rgb), .15);
  background: var(--automart-white);
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-page__single .faq-one-accrodion .accrodion.active {
  border: 1px solid rgba(var(--automart-black-rgb), .15);
  background: var(--automart-white);
}

.faq-page__single .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 23px 25px 23px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-page__single .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--automart-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-page__single .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-page__single .faq-one-accrodion .accrodion-title h4::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  font-size: 17px;
  color: var(--automart-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--automart-base-rgb), 1);
}

.faq-page__single .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--automart-white);
  background-color: var(--automart-black);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-page__single .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 28px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 20px;
}

.faq-page__single .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Project Page
--------------------------------------------------------------*/
.project-page {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.project-page .project-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.project-details__left {
  position: relative;
  display: block;
}

.project-details__img {
  position: relative;
  display: block;
}

.project-details__img img {
  width: 100%;
  border-radius: 20px;
}

.project-details__title-1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 31px;
  margin-bottom: 19px;
}

.project-details__title-2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 52px;
  margin-bottom: 19px;
}

.project-details__text-and-img {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 31px;
  margin-bottom: 61px;
}

.project-details__text-img {
  position: relative;
  display: block;
}

.project-details__text-img img {
  width: auto;
  border-radius: 20px;
}

.project-details__title-3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
}

.project-details__text-4 {
  margin-top: 29px;
  margin-bottom: 31px;
}

.project-details__img-and-points {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.project-details__points-img {
  position: relative;
  display: block;
  max-width: 400px;
  width: 100%;
}

.project-details__points-img img {
  width: 100%;
  border-radius: 20px;
}

.project-details__points {
  position: relative;
  display: block;
}

.project-details__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-details__points li+li {
  margin-top: 16px;
}

.project-details__points li .icon {
  position: relative;
  display: inline-block;
}

.project-details__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--automart-base);
}

.project-details__points li p {
  color: var(--automart-black);
}

.project-details__sidebar {
  position: relative;
  display: block;
}

.project-details__information {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .08);
  border-radius: var(--automart-bdr-radius);
  padding: 40px 40px 40px;
  margin-bottom: 30px;
}

.project-details__information-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 30px;
}

.project-details__information-list {
  position: relative;
  display: block;
}

.project-details__information-list li {
  position: relative;
  display: block;
  background-color: var(--automart-white);
  border: 1px solid var(--automart-bdr-color);
  border-radius: 20px;
  padding: 18px 30px 19px;
}

.project-details__information-list li+li {
  margin-top: 12px;
}

.project-details__information-list li h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--automart-black);
  margin-bottom: 4px;
}


.project-details__get-started {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .08);
  border-radius: var(--automart-bdr-radius);
  padding: 40px 40px 40px;
}

.project-details__get-started-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.project-details__get-started-text {
  margin-top: 18px;
  margin-bottom: 29px;
}

.project-details__get-started-points {
  position: relative;
  display: block;
}

.project-details__get-started-points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-details__get-started-points li+li {
  margin-top: 11px;
}

.project-details__get-started-points li .icon {
  position: relative;
  display: inline-block;
  top: 5px;
}

.project-details__get-started-points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--automart-black);
}

.project-details__get-started-points li p {
  color: var(--automart-black);
}

.project-details__get-started-points li p a {
  color: var(--automart-black);
}

.project-details__get-started-points li p a:hover {
  color: var(--automart-base);
}

.project-details__get-started-btn-box {
  position: relative;
  display: block;
  margin-top: 30px;
}

.project-details__previous-next {
  position: relative;
  display: block;
  margin-top: 60px;
}

.project-details__previous-next ul {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  padding: 15px 20px 15px;
  border-radius: var(--automart-bdr-radius);
}

.project-details__previous-next ul li {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
}

.project-details__previous-next ul li::before {
  position: absolute;
  top: -16px;
  right: 0;
  bottom: -16px;
  width: 1px;
  background: rgba(var(--automart-black-rgb), .10);
  content: "";
}

.project-details__previous-next ul li:last-child:before {
  display: none;
}

.project-details__previous-next ul li:nth-child(2) {
  float: right;
  text-align: right;
}

.project-details__previous-next ul li:nth-child(2) .text-box {
  margin-left: 0px;
  margin-right: 20px;
}

.project-details__previous-next ul li:nth-child(2) .icon a {
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon {
  position: relative;
  display: block;
}

.project-details__previous-next ul li .icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  background: var(--automart-base);
  color: var(--automart-white);
  clip-path: polygon(0 0, 79% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon a:hover {
  background: var(--automart-black);
}

.project-details__previous-next ul li .icon a span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
}

.project-details__previous-next ul li:nth-child(1) .icon a span {
  transform: rotate(-180deg);
}

.project-details__previous-next ul li .text-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.project-details__previous-next ul li .text-box a {
  color: var(--automart-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: capitalize;
}

.project-details__previous-next ul li .text-box a:hover {
  color: var(--automart-base);
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.team-page .team-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
  padding: 120px 0 108px;
  z-index: 1;
}

.team-details__top {
  position: relative;
  display: block;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
  margin-bottom: 37px;
}

.team-details__top-left {
  position: relative;
  display: block;
}

.team-details__img-1 {
  position: relative;
  display: block;
}

.team-details__img-1 img {
  width: 100%;
  border-radius: 20px;
}

.team-details__top-right {
  position: relative;
  display: block;
  margin-left: 30px;
}

.team-details__client-box {
  position: relative;
  display: block;
}

.team-details__client-name {
  font-size: 33px;
  font-weight: 600;
  line-height: 43px;
  text-transform: capitalize;
}

.team-details__client-sub-title {
  position: relative;
  display: block;
  margin-top: 3px;
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 19px;
  margin-bottom: 30px;
}

.team-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--automart-base);
  font-size: 18px;
  border-radius: var(--automart-bdr-radius);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid var(--automart-base);
  z-index: 1;
}

.team-details__social a:hover {
  color: var(--automart-white);
  border: 1px solid var(--automart-base);
}

.team-details__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--automart-base);
  border-radius: 0%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-details__social a:hover:before {
  transform: scaleX(1);
}

.team-details__social a+a {
  margin-left: 10px;
}

.team-details__client-address {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--automart-black-rgb), .10);
  margin-top: 19px;
  padding-top: 20px;
}

.team-details__client-address li {
  position: relative;
  display: block;
}

.team-details__client-address li+li {
  margin-top: 21px;
}

.team-details__client-address li p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--automart-black);
  font-size: 18px;
  font-weight: 500;
}

.team-details__client-address li p span {
  color: var(--automart-black);
  font-size: 16px;
}

.team-details__client-address li h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 10px;
  font-family: var(--automart-font);
}

.team-details__client-address li h5 a {
  color: var(--automart-black);
}

.team-details__client-address li h5 a:hover {
  color: var(--automart-base);
}

.team-details__bottom {
  position: relative;
  display: block;
}

.team-details__bottom-left {
  position: relative;
  display: block;
}

.team-details__bottom-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 13px;
}

.team-details__practice-area {
  position: relative;
  display: block;
  margin-top: 15px;
}

.team-details__practice-area-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.team-details__practice-area-list-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.team-details__practice-area-list {
  position: relative;
  display: block;
}

.team-details__practice-area-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.team-details__practice-area-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6px;
  width: 6px;
  background-color: var(--automart-base);
}

.team-details__practice-area-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.team-details__practice-area-list li .text p {
  font-weight: 500;
  color: var(--automart-base);
}


.team-details__bottom-right {
  position: relative;
  display: block;
}

.team-details__progress-title-1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 23px;
}

.team-details__progress-list {
  position: relative;
  display: block;
}

.team-details__progress-list li {
  position: relative;
  display: block;
}

.team-details__progress-list li+li {
  margin-top: 20px;
}

.team-details__progress {
  position: relative;
  display: block;
}

.team-details__progress-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--automart-black);
  margin-bottom: 11px;
}

.team-details__progress .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: rgba(var(--automart-base-rgb), .10);
  border-radius: 6px;
}

.team-details__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--automart-base);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.team-details__progress .count-text {
  position: absolute;
  right: -18px;
  bottom: 22px;
  color: var(--automart-black);
  line-height: 26px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  font-family: var(--automart-font);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.team-details__progress .bar.marb-0 {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Details Contact Page
--------------------------------------------------------------*/
.team-details-contact {
  position: relative;
  display: block;
  padding: 0px 0 120px;
  z-index: 1;
}

.team-details-contact .container {
  max-width: 830px;
}

.team-details-contact__inner {
  position: relative;
  display: block;
  text-align: center;
}

.team-details-contact__form {
  position: relative;
  display: block;
}

.team-details-contact__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-details-contact__input-box input[type="text"],
.team-details-contact__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--automart-gray);
  display: block;
  border-radius: var(--automart-bdr-radius);
}

.team-details-contact__input-box .select-box {
  width: 100%;
}

.team-details-contact__input-box .nice-select {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--automart-gray);
  font-weight: 400;
  border-radius: var(--automart-bdr-radius);
  line-height: 60px;
  display: block;
  float: none;
}

.team-details-contact__input-box .nice-select:after {
  position: absolute;
  top: 22px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--automart-gray);
  border-right: 2px solid var(--automart-gray);
  margin-top: 0px;
  z-index: 10;
}

.team-details-contact__input-box textarea {
  height: 200px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  padding: 15px 30px 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--automart-gray);
  position: relative;
  display: block;
  border-radius: var(--automart-bdr-radius);
}

.team-details-contact__input-box.text-message-box {
  height: 200px;
}

.team-details-contact__btn-box {
  position: relative;
  display: block;
}

.team-details-contact__btn-box .thm-btn {
  border: none;
}

.team-details-contact__btn-box .thm-btn:hover {
  border: none;
}

/*--------------------------------------------------------------
# Blog Page 
--------------------------------------------------------------*/
.blog-page {
  padding: 120px 0px 120px;
}

.blog-page .blog-list__pagination {
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Blog Standard Css
--------------------------------------------------------------*/
.blog-standard {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.blog-standard__left {
  position: relative;
  display: block;
  margin-right: 2px;
}

.blog-standard__single {
  position: relative;
  display: block;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border-radius: var(--automart-bdr-radius);
  margin-bottom: 50px;
}

.blog-standard__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--automart-bdr-radius);
  z-index: 1;
}

.blog-standard__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: rgb(0, 0, 0);
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-standard__single:hover .blog-standard__img:before {
  opacity: 0.2;
}

.blog-standard__img img {
  width: 100%;
  border-radius: var(--automart-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-standard__single:hover .blog-standard__img img {
  transform: scale(1.06) rotate(0deg);
}

.blog-standard__content {
  position: relative;
  display: block;
  padding: 34px 40px 40px;
  background-color: var(--automart-white);
}

.blog-standard__content-inner {
  position: relative;
  display: block;
}

.blog-standard__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-standard__meta li {
  position: relative;
  display: block;
}

.blog-standard__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--automart-gray);
  font-weight: 500;
}

.blog-standard__meta li a span {
  color: var(--automart-base);
}

.blog-standard__meta li a:hover {
  color: var(--automart-base);
}

.blog-standard__title {
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 27px;
}

.blog-standard__title a {
  color: var(--automart-black);
}

.blog-standard__title a:hover {
  color: var(--automart-base);
}

.blog-standard__text {
  margin-bottom: 20px;
}

.blog-standard__btn {
  position: relative;
  display: block;
}



/*--------------------------------------------------------------
# Pagination 
--------------------------------------------------------------*/
.blog-list__pagination {
  position: relative;
  display: block;
  text-align: center;
}

.blog-list__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 10px;
}

.blog-list__pagination .pg-pagination li a {
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  display: inline-block;
  color: var(--automart-black);
  font-weight: 500;
  font-size: 18px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  font-family: var(--automart-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__pagination .pg-pagination li:hover a,
.blog-list__pagination .pg-pagination li.active a {
  border: 1px solid var(--automart-base);
  color: var(--automart-black);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-details__left {
  position: relative;
  display: block;
  margin-right: 2px;
}

.blog-details__img {
  position: relative;
  display: block;
}

.blog-details__img img {
  width: 100%;
  border-radius: var(--automart-bdr-radius);
}

.blog-details__date {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--automart-base);
  text-align: center;
  width: 80px;
  height: 74px;
  background-color: var(--automart-base);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='80' height='74' viewBox='0 0 80 74'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='80' height='74'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='80' height='74' viewBox='0 0 80 74'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='80' height='74'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.blog-details__date p {
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  color: var(--automart-white);
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-details__user-and-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details__user {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 31px;
  background-color: var(--automart-base);
  border-radius: 16px;
}

.blog-details__user p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--automart-white);
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details__meta li {
  position: relative;
  display: block;
}

.blog-details__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--automart-gray);
}

.blog-details__meta li a span {
  color: var(--automart-base);
}

.blog-details__meta li a:hover {
  color: var(--automart-base);
}

.blog-details__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
  margin-top: 30px;
  margin-bottom: 19px;
}

.blog-details__text-2 {
  margin-top: 21px;
  margin-bottom: 40px;
}

.blog-details__author-box {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .10);
  border-radius: var(--automart-bdr-radius);
  padding: 40px 40px 37px;
}

.blog-details__author-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--automart-black);
  margin-bottom: 30px;
}

.blog-details__author-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: right;
  color: var(--automart-black);
  font-family: var(--automart-font-two);
}

.blog-details__author-name span {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--automart-font);
}

.blog-details__title-2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  margin-top: 41px;
  margin-bottom: 19px;
}

.blog-details__img-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.blog-details__img-box-img {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-details__img-box-img img {
  width: 100%;
  border-radius: var(--automart-bdr-radius);
}

.blog-details__tag-and-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--automart-gray-rgb), .10);
  border-radius: var(--automart-bdr-radius);
  padding: 30px 30px 30px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.blog-details__tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__tag-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.blog-details__tag-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-details__tag-list li {
  position: relative;
  display: block;
}

.blog-details__tag-list li a {
  position: relative;
  display: inline-block;
  background-color: var(--automart-white);
  color: var(--automart-gray);
  padding: 10px 15px 10px;
  border-radius: var(--automart-bdr-radius);
}

.blog-details__tag-list li a:hover {
  background-color: var(--automart-base);
  color: var(--automart-white);
}

.blog-details__share-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__share-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.72px;
}

.blog-details__share {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-details__share a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 15px;
  color: var(--automart-black);
  background-color: var(--automart-white);
  border-radius: 50%;
}

.blog-details__share a:hover {
  background-color: var(--automart-base);
  color: var(--automart-white);
}

.comment-one {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .10);
  border-radius: var(--automart-bdr-radius);
  padding: 40px 40px 40px;
}

.comment-one__single {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--automart-white);
  border: 1px solid rgba(var(--automart-black-rgb), 0.10);
  border-radius: var(--automart-bdr-radius);
  padding: 29px 29px 30px;
}

.comment-one__single+.comment-one__single {
  margin-top: 30px;
}

.comment-one__image {
  position: relative;
  display: block;
  max-width: 70px;
  width: 100%;
}

.comment-one__image img {
  width: 100%;
  border-radius: 50%;
}

.comment-one__content {
  position: relative;
  display: block;
}

.comment-one__content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--automart-black);
  margin-bottom: 3px;
}

.comment-one__content p {
  margin-top: 14px;
}

.comment-one__btn-box {
  position: absolute;
  top: 0;
  right: 0px;
}

.comment-one__btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  color: var(--automart-black);
}

.comment-one__btn-box a:hover {
  color: var(--automart-base);
}

.comment-form {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding: 40px 40px 40px;
  border-radius: var(--automart-bdr-radius);
  margin-top: 60px;
}

.comment-form__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.comment-form__text {
  margin-top: 23px;
  margin-bottom: 38px;
}

.comment-one__form {
  position: relative;
  display: block;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border-radius: var(--automart-bdr-radius);
  background-color: var(--automart-white);
  border: 1px solid rgba(var(--automart-black-rgb), 0.10);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--automart-gray);
  display: block;
}

.comment-form__input-box textarea {
  font-size: 16px;
  color: var(--automart-gray);
  height: 140px;
  width: 100%;
  border-radius: var(--automart-bdr-radius);
  background-color: var(--automart-white);
  border: 1px solid rgba(var(--automart-black-rgb), 0.10);
  padding: 20px 20px 30px;
  outline: none;
  font-weight: 400;
}

.comment-form__input-box.text-message-box {
  height: 140px;
}

.comment-form__btn-box {
  position: relative;
  display: block;
}

.comment-form__btn-box .thm-btn {
  border: none;
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-left: 40px;
}

.sidebar__title::before {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 2px;
  width: 30px;
  background: var(--automart-base);
  content: "";
}

.sidebar__search {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding: 50px 30px 50px;
  border-radius: var(--automart-bdr-radius);
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--automart-white);
  color: var(--automart-gray);
  font-size: 14px;
  font-weight: 600;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 3px;
  border: 1px solid #dcdfe2;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--automart-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--automart-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--automart-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--automart-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--automart-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--automart-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--automart-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--automart-base);
  color: var(--automart-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: var(--automart-black);
  color: var(--automart-white);
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .10);
  border-radius: var(--automart-bdr-radius);
  padding: 42px 30px 50px;
}

.sidebar__category-list {
  position: relative;
  display: block;
  margin: 0;
}

.sidebar__category-list li+li {
  position: relative;
  margin-top: 15px;
}

.sidebar__category-list li a {
  position: relative;
  display: block;
  color: var(--automart-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 16px 20px 15px;
  background-color: var(--automart-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--automart-font-two);
  border-radius: var(--automart-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--automart-base);
  z-index: -1;
  transform: scaleY(0.0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
  transform: scaleY(1.0);
}

.sidebar__category-list li a:hover {
  color: var(--automart-white);
}

.sidebar__category-list li.active a {
  background-color: var(--automart-base);
  color: var(--automart-white);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  right: 0;
  color: var(--automart-black);
  font-size: 15px;
  font-weight: 600;
  background-color: rgba(var(--automart-black-rgb), .15);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--automart-font);
  border-top-right-radius: var(--automart-bdr-radius);
  border-bottom-right-radius: var(--automart-bdr-radius);
  z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--automart-white);
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: rgba(var(--automart-gray-rgb), .10);
  border-radius: var(--automart-bdr-radius);
}

.sidebar__post-list {
  position: relative;
  display: block;
}

.sidebar__post-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sidebar__post-list li+li {
  margin-top: 24px;
}

.sidebar__post-image {
  position: relative;
  display: block;
  max-width: 80px;
  width: 100%;
  border-radius: 12px;
}

.sidebar__post-image img {
  width: 100%;
  border-radius: 12px;
}

.sidebar__post-content {
  position: relative;
  display: block;
  flex: 1;
}

.sidebar__post-date {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--automart-gray);
}

.sidebar__post-date span {
  position: relative;
  font-size: 14px;
  color: var(--automart-base);
}

.sidebar__post-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 4px;
}

.sidebar__post-title a {
  color: var(--automart-black);
}

.sidebar__post-title a:hover {
  color: var(--automart-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .10);
  border-radius: var(--automart-bdr-radius);
  padding: 41px 30px 40px;
  overflow: hidden;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
}

.sidebar__tags-list li {
  position: relative;
  display: inline-block;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.sidebar__tags-list li a {
  position: relative;
  display: block;
  color: var(--automart-gray);
  background: var(--automart-white);
  padding: 6px 20px;
  border-radius: var(--automart-bdr-radius);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: var(--automart-white);
  background: var(--automart-base);
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.contact-info__single {
  position: relative;
  display: block;
  border-radius: var(--automart-bdr-radius);
  background-color: rgba(var(--automart-gray-rgb), .10);
  text-align: center;
  padding: 40px 40px 41px;
  margin-bottom: 30px;
}

.contact-info__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--automart-white);
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.contact-info__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--automart-black);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.contact-info__single:hover .contact-info__icon:before {
  transform: scaleX(1);
}

.contact-info__icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--automart-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.contact-info__single:hover .contact-info__icon span {
  transform: scale(0.9);
  color: var(--automart-white);
}


.contact-info__single p {
  margin-top: 20px;
  margin-bottom: 5px;
}

.contact-info__single h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--automart-black);
  font-family: var(--automart-font);
}

.contact-info__single h5 a {
  color: var(--automart-black);
}

.contact-info__single h5 a:hover {
  color: var(--automart-base)
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.contact-page__inner {
  position: relative;
  display: block;
  background-color: var(--automart-black);
  border-radius: 20px;
  padding: 60px 0 60px;
}

.contact-page__left {
  position: relative;
  display: block;
  margin-left: 60px;
  margin-right: 10px;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 523px;
  width: 100%;
  border-radius: 20px;
}

.contact-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 40px;
}

.contact-page__form-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--automart-white);
  margin-bottom: 26px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"],
.contact-page__input-box input[type="number"] {
  height: 60px;
  width: 100%;
  background-color: rgba(var(--automart-white-rgb), 0.03);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--automart-white-rgb), .70);
  display: block;
  border-radius: var(--automart-bdr-radius);
}

.contact-page__input-box textarea {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--automart-white-rgb), .70);
  height: 175px;
  width: 100%;
  background-color: rgba(var(--automart-white-rgb), 0.03);
  border: none;
  padding: 15px 20px 30px;
  border-radius: var(--automart-bdr-radius);
  outline: none;
  position: relative;
  display: block;
}

.contact-page__input-box.text-message-box {
  height: 175px;
}


.contact-page__btn-box {
  position: relative;
  display: block;
}

.contact-page__btn-box .thm-btn {
  border: none;
}

.contact-page__btn-box .thm-btn span::before {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.contact-page__btn-box .thm-btn i::after {
  background-color: rgba(var(--automart-white-rgb), 1);
}

.contact-page__btn-box .thm-btn:hover span,
.contact-page__btn-box .thm-btn:hover i {
  color: var(--automart-base);
}

/***
=============================================
Error Page
=============================================
***/
.error-page {
  position: relative;
  display: block;
  background: var(--automart-white);
  padding: 120px 0px 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
}

.error-page__img {
  position: relative;
  display: block;
  mix-blend-mode: difference;
}

.error-page__img img {
  width: auto;
}

.error-page__content {
  position: relative;
  display: block;
  margin-top: 62px;
}

.error-page__content h2 {
  color: var(--automart-base);
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.error-page__content p {
  color: var(--automart-black);
  margin: 0;
}

.error-page__content .btn-box {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 21px;
}


/*--------------------------------------------------------------
# Testimonial Page
--------------------------------------------------------------*/
.testimonial-page {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
}

.testimonial-page .testimonial-one__single {
  margin-bottom: 30px;
}


/***
=============================================
Product
=============================================
***/
.product {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.product__sidebar {
  position: relative;
  display: block;
}

.product__sidebar-single+.product__sidebar-single {
  margin-top: 30px;
}

.product__sidebar-title {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  margin: 0;
  margin-bottom: 22px;
  padding-left: 27px;
}

.product__sidebar-title::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: var(--automart-base);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-search {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding: 30px 30px 30px;
  border-radius: var(--automart-bdr-radius);
}

.shop-search form {
  position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
  width: 100%;
  height: 60px;
  background-color: var(--automart-white);
  padding-left: 30px;
  padding-right: 60px;
  font-size: 16px;
  color: var(--automart-gray);
  font-family: var(--automart-font);
  border: none;
  outline: none;
  font-weight: 500;
}

.shop-search form ::placeholder {
  color: inherit;
  opacity: 1;
}

.shop-search form button[type="submit"] {
  background-color: var(--automart-base);
  color: var(--automart-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.shop-search form button:hover[type="submit"] {
  background-color: var(--automart-black);
  color: var(--automart-white);
}

.product__price-ranger {
  position: relative;
  padding: 27px 30px 30px;
  margin: 0;
  background-color: rgba(var(--automart-gray-rgb), .10);
  border-radius: var(--automart-bdr-radius);
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: var(--automart-white);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--automart-base);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
  background: var(--automart-base);
}

.product__price-ranger .price-ranger #slider-range {
  margin-left: 3px;
  margin-right: 0;
  margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
  display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
  position: relative;
  display: block;
  background: var(--automart-black);
  float: right;
  text-align: center;
  border: none;
  color: var(--automart-white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
  position: relative;
  display: inline-block;
  color: var(--automart-gray);
  font-size: 14px;
  font-weight: 400;
  width: 40px;
  line-height: 30px;
  border: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--automart-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  left: -2px;
}


.shop-category {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding: 29px 30px 30px;
  border-radius: var(--automart-bdr-radius);
}

.shop-category ul {
  position: relative;
  display: block;
}

.shop-category ul li {
  position: relative;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--automart-gray);
  margin-bottom: 15px;
}

.shop-category ul li:last-child {
  margin-bottom: 0;
}

.shop-category ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--automart-gray);
  font-weight: 500;
  border-radius: 10px;
  background-color: var(--automart-white);
  padding: 13px 15px 13px;
  transition: all 0.3s ease;
  z-index: 1;
}

.shop-category ul li:hover a {
  color: var(--automart-base);
}

.shop-category ul li a:after {
  position: absolute;
  right: 5px;
  top: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  background-color: var(--automart-base);
  font-family: 'icomoon' !important;
  content: "\e92f";
  opacity: 1;
  font-size: 12px;
  color: var(--automart-white);
  line-height: 30px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.shop-product-tags {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding: 25px 30px 30px;
  border-radius: var(--automart-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.shop-product__tags-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-product__tags-list a {
  font-size: 12px;
  color: var(--automart-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--automart-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px 5px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-product__tags-list a:hover {
  color: var(--automart-white);
  background: var(--automart-base);
}


.sidebar-rating-box {
  position: relative;
  display: block;
}

.sidebar-rating-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar-rating-box ul li {
  position: relative;
  display: block;
}

.sidebar-rating-box ul li+li {
  margin-top: 30px;
}

.sidebar-rating-box ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.sidebar-rating-box ul li label {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #ffc009;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label span.gray {
  color: #dddbdb;
}

.sidebar-rating-box ul li input[type=radio]+label i {
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--automart-gray);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--automart-base);
  border-radius: 0%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li input[type=radio]:checked+label i {
  border-color: var(--automart-base);
}

.sidebar-rating-box ul li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
}

.shop-product-recent-products {
  position: relative;
  display: block;
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding: 29px 30px 27px;
  border-radius: var(--automart-bdr-radius);
}

.shop-product-recent-products ul {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dddbdb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.shop-product-recent-products ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.shop-product-recent-products ul li .img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.shop-product-recent-products ul li .img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--automart-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.shop-product-recent-products ul li:hover .img::before {
  opacity: 1;
}

.shop-product-recent-products ul li .img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.shop-product-recent-products ul li:hover .img img {
  transform: scale(1);
}

.shop-product-recent-products ul li .img a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--automart-white);
  font-size: 16px;
  line-height: 0;
  transform: translateY(10px) scale(0);
  z-index: 5;
}

.shop-product-recent-products ul li:hover .img a {
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .img a:hover {
  color: var(--automart-base);
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.shop-product-recent-products ul li .content .title {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li .content .title h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-product-recent-products ul li .content .title h5 a {
  color: var(--automart-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
  color: var(--automart-base);
}

.shop-product-recent-products ul li .content .price {
  position: relative;
  display: block;
  padding: 5px 0px 5px;
}

.shop-product-recent-products ul li .content .price p {
  color: var(--automart-base);
}

.shop-product-recent-products ul li .content .review {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-product-recent-products ul li .content .review i {
  color: #ffc009;
  font-size: 12px;
}

.shop-product-recent-products ul li .content .review i.color {
  color: #dddbdb;
}

.shop-product-recent-products ul li .content .review i+i {
  margin-left: 5px;
}

.product__items {
  position: relative;
  display: block;
}

.product__showing-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-right: 130px;
}

.product__showing-text-box {
  position: relative;
  display: block;
}

.product__showing-text {
  font-size: 16px;
  font-weight: 400;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
}

.product__showing-sort .select-box .nice-select {
  background-color: rgba(var(--automart-gray-rgb), .10);
  color: var(--automart-gray);
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  border-radius: var(--automart-bdr-radius);
  margin-bottom: 0px;
}

.product__showing-sort .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.product__all {
  position: relative;
  display: block;
}

.product__all-tab {
  position: relative;
  display: block;
}

.product__all-tab-button {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 5;
}

.product__all-tab-button ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding: 15px 15px 15px;
  border-radius: var(--automart-bdr-radius);
}

.product__all-tab-button ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 3px;
  background-color: var(--automart-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button ul li:hover,
.product__all-tab-button ul li.active-btn-item {
  background-color: var(--automart-base);
}

.product__all-tab-button ul li+li {
  margin-left: 10px;
}

.product__all-tab-button-icon {
  position: relative;
  display: block;
  color: var(--automart-base);
  font-size: 18px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button-icon.one {
  transform: rotate(90deg);
}

.product__all-tab-button ul li:hover .product__all-tab-button-icon,
.product__all-tab-button ul li.active-btn-item .product__all-tab-button-icon {
  color: var(--automart-white);
}

.product__all-tab .tabs-content-box {
  position: relative;
  display: block;
}

.product__all-tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.product__all-tab .tab-content-box-item .product__all-tab-content-box-item {
  transition: all 0.7s ease;
  opacity: 0;
  transform: translateY(5px);
  transform-origin: top bottom;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active .product__all-tab-content-box-item {
  opacity: 1.0;
  transform: translateY(0px);
  transform-origin: bottom top;
}

.product__all-tab-single {
  position: relative;
  display: block;
}

.single-product-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background-color: var(--automart-white);
  padding: 0 0 30px;
  border-radius: var(--automart-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style1:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style1__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--automart-bdr-radius);
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.single-product-style1__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1:hover .single-product-style1__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style1:hover .single-product-style1__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}

.single-product-style1__overlay li {
  position: relative;
  display: block;
}

.single-product-style1__overlay li+li {
  margin-top: 8px;
}

.single-product-style1__overlay li p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  background-color: var(--automart-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--automart-base);
  line-height: 35px;
  font-weight: 600;
}

.single-product-style1__info {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s linear 0s;
  z-index: 5;
}

.single-product-style1:hover .single-product-style1__info {
  opacity: 1;
  transform: translateY(0);
}

.single-product-style1__info li {
  position: relative;
  display: block;
}

.single-product-style1__info li+li {
  margin-left: 8px;
}

.single-product-style1__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--automart-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--automart-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style1__info li a:hover {
  color: var(--automart-white);
  background-color: var(--automart-base);
}

.single-product-style1__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 23px 15px 0px;
}

.single-product-style1__content-left {
  position: relative;
  display: block;
}

.single-product-style1__content-left h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 12px;
}

.single-product-style1__content-left h4 a {
  color: var(--automart-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__content-left h4 a:hover {
  color: var(--automart-base);
}

.single-product-style1__content-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--automart-gray);
  margin-top: 4px;
}

.single-product-style1__content-left p del {
  color: var(--automart-base);
  margin-right: 5px;
}

.single-product-style1__content-right {
  position: relative;
  display: block;
}

.single-product-style1__review {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding: 3.5px 5px 3.5px;
  top: -9px;
}

.single-product-style1__review i {
  color: var(--automart-base);
  font-size: 14px;
  margin-right: 5px;
}

.single-product-style1__review p {
  color: var(--automart-black);
  font-weight: 500;
}


.single-product-style2 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background-color: var(--automart-white);
  border-radius: var(--automart-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style2:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style2 .row {
  --bs-gutter-x: 0px;
  align-items: center;
}

.single-product-style2__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--automart-bdr-radius);
  border-right: 1px solid rgba(var(--automart-black-rgb), .10);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.single-product-style2__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2:hover .single-product-style2__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style2:hover .single-product-style2__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__content {
  position: relative;
  display: block;
  padding: 0px 15px 0px;
}

.single-product-style2__review {
  position: relative;
  display: flex;
  align-items: center;
}

.single-product-style2__review i {
  color: var(--automart-base);
  font-size: 16px;
}

.single-product-style2__review i+i {
  margin-left: 5px;
}

.single-product-style2__text {
  position: relative;
  display: block;
  padding-top: 17px;
}

.single-product-style2__text h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 1px;
}

.single-product-style2__text h4 a {
  color: var(--automart-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__text h4 a:hover {
  color: var(--automart-base);
}

.single-product-style2__text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--automart-gray);
  margin-top: 4px;
}

.single-product-style2__text p del {
  color: var(--automart-base);
  margin-right: 5px;
}

.single-product-style2__info {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-left: 0;
}

.single-product-style2__info li {
  position: relative;
  display: block;
}

.single-product-style2__info li+li {
  margin-left: 8px;
}

.single-product-style2__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--automart-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--automart-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style2__info li a:hover {
  color: var(--automart-white);
  background-color: var(--automart-base);
}



/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 30px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  color: rgba(var(--automart-gray-rgb), .50);
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  border: 1px solid rgba(var(--automart-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--automart-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--automart-white);
  background: var(--automart-base);
  border-color: var(--automart-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 50%;
  color: rgba(var(--automart-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--automart-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--automart-gray-rgb), .50);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--automart-white);
}




/***
=============================================
Product Details
=============================================
***/
.product-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}


.product-details__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.product-details__left-inner {
  position: relative;
  display: block;
}

.product-details__thumb-box {
  position: relative;
  display: block;
  max-width: 400px;
  margin-top: 20px;
}

#shop-details-one__thumb {
  z-index: 10;
}

.product-details__thumb-img {
  position: relative;
  display: block;
  width: 125px !important;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
}

.product-details__thumb-img img {
  width: 100%;
  border-radius: 10px;
}

.product-details__thumb-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--automart-base);
  opacity: 0;
  transition: all 500ms ease;
}


#shop-details-one__thumb .swiper-slide-thumb-active .product-details__thumb-img:before {
  opacity: 1;
}

.product-details__content-box {
  position: relative;
  display: block;
}

.product-details__img {
  position: relative;
  display: block;
}

.product-details__img img {
  width: 100%;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  border-radius: 15px;
}


.product-details__nav {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 100;
}

.product-details__nav .swiper-button-next,
.product-details__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: var(--automart-black);
  background-color: rgba(var(--automart-gray-rgb), .10);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}


.product-details__nav .swiper-button-next:hover,
.product-details__nav .swiper-button-prev:hover {
  color: var(--automart-white);
  background-color: var(--automart-base);
}

.product-details__nav .swiper-button-next {
  margin-top: 0px;
}

.product-details__nav .swiper-button-next i,
.product-details__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__nav .swiper-button-next::after,
.product-details__nav .swiper-button-prev::after {
  display: none;
}


.product-details__right {
  position: relative;
  display: block;
  margin-top: -9px;
}

.product-details__top {
  position: relative;
  display: block;
}

.product-details__title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin: 0;
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--automart-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-left: 25px;
  letter-spacing: 0;
}

.product-details__reveiw {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-bottom: 37px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--automart-base);
}

.product-details__reveiw i+i {
  margin-left: 4px;
}

.product-details__reveiw span {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--automart-gray);
  margin-left: 18px;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 31px;
}

.product-details__content-text2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.product-details__select {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-details__select-size {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__select-size h3 {
  font-size: 20px;
  line-height: 30px;
  margin-right: 15px;
  font-weight: 600;
}

.product-details__select-size ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.product-details__select-size ul li {
  position: relative;
  display: block;
  width: 45px;
  height: 35px;
}

.product-details__select-size ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-details__select-size ul li label {
  position: relative;
  width: 45px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--automart-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label {
  color: var(--automart-white);
  font-weight: 500;
}

.product-details__select-size ul li input[type=radio]+label i {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 35px;
  overflow: hidden;
  border: 1px solid var(--automart-gray);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.product-details__select-size ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0.3);
  opacity: 0;
  background-color: var(--automart-base);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label i {
  border-color: var(--automart-base);
}

.product-details__select-size ul li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
  opacity: 1;
}


.product-details__inner {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 25px;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__quantity-title {
  margin: 0;
  color: var(--automart-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin-right: 20px;
}

.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.product-details__quantity .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--automart-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--automart-gray);
}

.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--automart-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid rgba(var(--automart-black-rgb), .10);
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--automart-black-rgb), .10);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.product-details__buttons-boxes {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.product-details__buttons-1 {
  position: relative;
  display: block;
}

.product-details__buttons-2 {
  position: relative;
  display: block;
}

.product-details__social {
  position: relative;
  display: block;
}

.product-details__social .title {
  position: relative;
  display: block;
}

.product-details__social .title h3 {
  color: var(--automart-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.product-details__social-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.product-details__social-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--automart-white);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--automart-black);
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.product-details__social-link a+a {
  margin-left: 10px;
}

.product-details__social-link a:hover {
  color: var(--automart-white);
  background-color: var(--automart-base);
}

/***
=============================================
Product Description
=====***/
.product-description {
  position: relative;
  display: block;
  padding: 0 0 110px;
  z-index: 1;
}

.product-details__description {
  position: relative;
  display: block;
}

.product-details__main-tab-box {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 0;
}

.product-details__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
}

.product-details__main-tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 18px;
  line-height: 18px;
  color: var(--automart-black);
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding: 16px 25px 16px;
  text-transform: capitalize;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--automart-white);
}

.product-details__main-tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--automart-base);
  transition: all 0.3s ease;
  z-index: -1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.product-details__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.product-details__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.product-details__tab-content-inner {
  position: relative;
  display: block;
  padding: 40px 40px 50px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
}

.product-details__description-content {
  position: relative;
  display: block;
}

.product-description__list {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-description__list ul {
  position: relative;
  display: block;
}

.product-description__list ul li {
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.product-description__list ul li:last-child {
  margin-bottom: 0px;
}

.product-description__list ul li p {
  color: var(--automart-black);
  margin: 0;
  font-weight: 500;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--automart-base);
  font-size: 17px;
  line-height: 17px;
  margin-right: 11px;
  top: 2px;
  font-weight: 700;
}

.product-details__additional-information-content {
  position: relative;
  display: block;
}

.product-details__additional-information-text-1 {
  padding-bottom: 24px;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
  position: relative;
  display: block;
}

.comments-area {
  position: relative;
  display: block;
}

.review-one__title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.review-one__title h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}


.comments-area .comment-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
}

.comments-area .comment {
  position: relative;
  display: flex;
  align-items: center;
}

.comments-area .comment-box .author-thumb {
  position: relative;
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
  width: 100%;
}

.comments-area .comment-box .author-thumb figure {
  margin: 0;
}

.review-one__content {
  position: relative;
  display: block;
  padding-left: 45px;
  flex: 1;
}

.review-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review-one__content-top .info {
  position: relative;
  display: block;
}

.review-one__content-top .info h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.review-one__content-top .info h2 span {
  color: var(--automart-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
  font-family: var(--automart-font);
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--automart-base);
  font-size: 15px;
}

.review-one__content-bottom {
  position: relative;
  display: block;
}

.review-one__content-bottom p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
  position: relative;
  display: block;
  padding: 16px 0px 0px;
}

.review-form-one__inner {
  position: relative;
  display: block;
}

.review-form-one__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.review-form-one__rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 37px;
}

.review-form-one__rate-text {
  font-size: 18px;
  font-weight: 400;
}

.review-form-one__rate {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 17px;
}

.review-form-one__rate i {
  font-size: 16px;
  color: var(--automart-base);
}

.review-form-one__rate i+i {
  margin-left: 5px;
}

.review-form-one__form {
  position: relative;
  display: block;
}

.review-form-one__form .row {
  --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
  font-size: 14px;
  color: var(--automart-gray);
  height: 160px;
  width: 100%;
  background-color: var(--automart-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  border-radius: var(--automart-bdr-radius);
}

.review-form-one__input-box.text-message-box {
  height: 160px;
}

.review-form-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background-color: var(--automart-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--automart-gray);
  display: block;
  font-weight: 500;
  border-radius: var(--automart-bdr-radius);
}

.review-form-one__form .thm-btn {
  border: none;
}


/*--------------------------------------------------------------
  # Related Products
  --------------------------------------------------------------*/
.related-products {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
}

.related-products__title {
  position: relative;
  display: block;
  padding-bottom: 52px;
}

.related-products__title h3 {
  font-size: 40px;
  line-height: 1.0em;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: capitalize;
}

.related-products__title p {
  margin: 0;
}

.single-product-style1.instyle--2 {
  margin-bottom: 0px;
}


/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.cart-page {
  position: relative;
  display: block;
  background: var(--automart-white);
  padding: 112px 0px 112px;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .cart-table {
    min-width: 1170px;
  }
}

.cart-table {
  margin-bottom: 0px;
}

.cart-table thead th {
  color: var(--automart-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  padding-bottom: 22px;
  font-family: var(--automart-font-two);
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody tr {
  vertical-align: middle;
}

.cart-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
}

.cart-table tbody td {
  font-size: 18px;
  color: var(--automart-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--automart-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.cart-table tbody td:last-child {
  text-align: right;
}

.cart-table .product-box {
  display: flex;
  align-items: center;
}

.cart-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-right: 35px;
}

.cart-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  border-radius: 10px;
}

.cart-table h3 {
  color: var(--automart-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.cart-table h3 a {
  color: var(--automart-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--automart-base);
}

.cart-table .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.cart-table .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--automart-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  color: var(--automart-gray);
  font-weight: 500;
}

.cart-table .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--thm-black);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-left: 1px solid rgba(var(--automart-black-rgb), .10);
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--automart-black-rgb), .10);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.cart-table .cross-icon {
  position: relative;
  display: block;
}

.cart-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--automart-black);
  font-size: 16px;
}

.cart-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
}

.cart-page__sidebar {
  position: relative;
  display: block;
  padding: 28px 20px 30px;
  background-color: var(--automart-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: var(--automart-bdr-radius);
}

.cart-page__shipping {
  position: relative;
  display: block;
}

.cart-page__shipping-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 20px;
}

.cart-page__shipping-form {
  position: relative;
  display: block;
}

.cart-page__shipping-form .row {
  --bs-gutter-x: 20px;
}

.cart-page__shipping-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-page__shipping-input-box .select-box .nice-select {
  background-color: rgba(var(--automart-gray-rgb), .10);
  color: var(--automart-gray);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0px;
}

.cart-page__shipping-input-box .select-box .nice-select:after {
  position: absolute;
  right: 20px;
}

.cart-page__shipping-input-box input[type=email],
.cart-page__shipping-input-box input[type=text] {
  width: 100%;
  height: 50px;
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--automart-gray);
  font-family: var(--automart-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__btn-box {
  position: relative;
  display: block;
}

.cart-page__btn-box .thm-btn {
  border: none;
}

.cart-page__coupon-code {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--automart-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
  margin-top: 30px;
  margin-bottom: 20px;
  padding-top: 23px;
  padding-bottom: 30px;
}

.cart-page__coupon-code-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 20px;
}

.cart-page__coupon-code-text {
  margin-bottom: 16px;
}

.cart-page__coupon-code-form {
  position: relative;
  display: block;
}

.cart-page__coupon-code-form input[type=email],
.cart-page__coupon-code-form input[type=text] {
  width: 100%;
  height: 50px;
  background-color: rgba(var(--automart-gray-rgb), .10);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--automart-gray);
  font-family: var(--automart-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__coupon-code-form .thm-btn {
  border: none;
  margin-top: 20px;
}

.cart-total {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-total li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--automart-gray);
  font-size: 18px;
  font-weight: 500;
}

.cart-total li+li {
  margin-top: 15px;
}

.cart-total li span:first-child {
  display: block;
  color: var(--automart-black);
  font-size: 18px;
  margin-right: 60px;
  font-weight: 500;
  width: 140px;
  text-align: right;
}

.cart-total-amount {
  color: var(--automart-base);
}

.cart-page__buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-page__buttons-1 {
  position: relative;
  display: block;
}

.cart-page__buttons-1 .thm-btn span {
  padding: 16px 25px 16px;
}

.cart-page__buttons-2 {
  position: relative;
  display: block;
}

.cart-page__buttons-2 .thm-btn span {
  padding: 16px 25px 16px;
}


/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/
.checkout-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.checkout-page .billing_details {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  padding: 53px 50px 60px;
}

.billing_title {
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.billing_title p {
  font-size: 16px;
  margin: 0;
}

.billing_title a {
  color: var(--automart-base);
}

.billing_title h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  font-weight: 700;
  margin-top: 16px;
}

.billing_details_form {
  position: relative;
  display: block;
}

.billing_details_form .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}

.billing_details_form .btn-light {
  border: none;
}

.billing_details_form .btn-light:hover {
  border: none;
}

.billing_input_box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background-color: var(--automart-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--automart-gray);
  display: block;
  font-weight: 400;
}

.billing_input_box textarea {
  display: block;
  color: var(--automart-gray);
  font-size: 16px;
  font-weight: 400;
  height: 140px;
  width: 100%;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background-color: var(--automart-white);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  border-radius: 10px;
  outline: none;
  resize: none;
}

.billing_input_box textarea:focus {
  border: 1px solid rgba(var(--automart-black-rgb), .10);
}

.billing_details .checked-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.billing_details .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--automart-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--automart-font);
}

.billing_details .checked-box input[type="checkbox"] {
  display: none;
}

.billing_details .checked-box input[type="checkbox"]+label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--automart-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.billing_details .checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--automart-white);
  border-right: 2px solid var(--automart-white);
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.billing_details.checked-box input[type="checkbox"]:checked+label span {
  border-color: var(--automart-white);
}

.billing_details .checked-box input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.billing_details_form .select-box .nice-select {
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background-color: var(--automart-white);
  border-radius: 10px;
  color: var(--automart-gray);
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.billing_details_form-btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.billing_details_form-btn-1 {
  position: relative;
  display: block;
}

.billing_details_form-btn-1 .thm-btn {
  border: none;
}

.billing_details_form-btn-2 {
  position: relative;
  display: block;
}

.billing_details_form-btn-2 .thm-btn {
  border: none;
}


.sidebar-order-summary {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  padding: 37px 30px 45px;
  z-index: 1;
}

.sidebar-order-summary .title-box {
  position: relative;
  display: block;
  padding-bottom: 3px;
  margin-bottom: 35px;
}

.sidebar-order-summary .title-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--automart-base);
  content: "";
}

.sidebar-order-summary .title-box::after {
  position: absolute;
  left: 37px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--automart-white);
  content: "";
}

.sidebar-order-summary .title-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}


.sidebar-order-summary__list {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--automart-black-rgb), .10);
  padding: 13px 0px 12px;
}

.sidebar-order-summary__list>li:last-child {
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
}

.sidebar-order-summary__list>li>.left-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.left-text p {
  font-size: 18px;
  margin: 0px;
}

.sidebar-order-summary__list>li>.right-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text p {
  font-size: 18px;
  margin: 0px;
}


.sidebar-order-summary__list>li>.right-text>ul {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li+li {
  margin-top: 5px;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio] {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.sidebar-order-summary__list>li>.right-text>ul>li label {
  position: relative;
  display: block;
  padding-right: 24px;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]+label i {
  position: absolute;
  top: 6px;
  right: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--automart-gray);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--automart-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i {
  border-color: var(--automart-base);
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
}


.sidebar-order-summary__Payment {
  position: relative;
  display: block;
  margin-top: 37px;
}

.checkout__payment {
  position: relative;
  margin-bottom: 30px;
}

.checkout__payment__item+.checkout__payment__item {
  margin-top: 23px;
}

.checkout__payment__title {
  display: flex;
  color: var(--automart-black);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  align-items: center;
  cursor: pointer;
}

.checkout__payment__title::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: var(--automart-white);
  border: 2px solid rgba(var(--automart-black-rgb), .10);
  border-radius: 50%;
  margin-right: 10px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  font-size: 10px;
  color: var(--automart-white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: var(--automart-base);
  border-color: var(--automart-base);
  content: '\f00c';
}

.checkout__payment__content {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: var(--automart-gray);
  font-weight: 400;
  margin-top: 15px;
}

.sidebar-order-summary__bottom {
  position: relative;
  display: block;
}

.sidebar-order-summary__bottom .text1 {
  margin-bottom: 0;
}

.sidebar-order-summary__bottom .text1 a {
  color: var(--automart-base);
  text-decoration: underline;
}







.sidebar-order-summary__checked {
  position: relative;
  display: block;
  margin-top: 20px;
  ;
}

.sidebar-order-summary__checked label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--automart-gray);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--automart-font);
}

.sidebar-order-summary__checked label a {
  color: var(--automart-base);
}

.sidebar-order-summary__checked input[type="checkbox"] {
  display: none;
}

.sidebar-order-summary__checked input[type="checkbox"]+label span {
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--automart-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.sidebar-order-summary__checked label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--automart-white);
  border-right: 2px solid var(--automart-white);
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span {
  border-color: var(--automart-white);
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.sidebar-order-summary__btn {
  position: relative;
  display: block;
  margin-top: 27px;
  line-height: 0px;
}



/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.wishlist-page {
  position: relative;
  display: block;
  background: var(--automart-white);
  padding: 120px 0px 120px;
}

.wishlist-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .wishlist-table {
    min-width: 1170px;
  }
}

.wishlist-table {
  margin-bottom: 0px;
}

.wishlist-table thead th {
  color: var(--automart-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  border-top: 1px solid rgba(var(--automart-black-rgb), .10);
  padding-top: 22px;
  padding-bottom: 22px;
  font-family: var(--automart-font-two);
  text-align: center;
}

.wishlist-table tbody tr {
  vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
}

.wishlist-table tbody td {
  font-size: 18px;
  color: var(--automart-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--automart-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--automart-black-rgb), .10);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.wishlist-table .product-box {
  display: flex;
  align-items: center;
}

.wishlist-table .cross-icon {
  position: relative;
  display: block;
}

.wishlist-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--automart-black);
  font-size: 16px;
}

.wishlist-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-left: 35px;
  margin-right: 35px;
}

.wishlist-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  border-radius: 10px;
}

.wishlist-table h3 {
  color: var(--automart-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.wishlist-table h3 a {
  color: var(--automart-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.wishlist-table h3 a:hover {
  color: var(--automart-base);
}


.product-details__social.two {
  margin-top: 42px;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
  position: relative;
  display: block;
  background-color: var(--automart-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.sign-up-one .container {
  max-width: 620px;
}

.sign-up-one__form {
  position: relative;
  display: block;
}

.sign-up-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.sign-up-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.sign-up-one__form form {
  position: relative;
  display: block;
  background-color: var(--automart-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
}

.sign-up-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
  position: relative;
  display: block;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"],
.sign-up-one__form form input[type="password"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background-color: rgba(var(--automart-gray-rgb), .10);
  width: 100%;
  height: 60px;
  color: var(--automart-gray);
  font-size: 16px;
  font-family: var(--automart-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus,
.sign-up-one__form form input[type="password"]:focus {
  border-color: var(--automart-base);
  background-color: var(--automart-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--automart-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
  color: var(--automart-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
  color: var(--automart-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--automart-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--automart-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
  color: var(--automart-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
  color: var(--automart-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--automart-gray);
}

.sign-up-one__form form .thm-btn {
  width: 100%;
  justify-content: center;
  border: none;
}

.sign-up-one__form form .google-facebook {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sign-up-one__form form .google-facebook a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--automart-gray);
  background-color: var(--automart-white);
  color: var(--automart-black);
  font-size: 16px;
  line-height: 28px;
  font-family: var(--automart-font);
  font-weight: 500;
  padding: 10px 10px 10px;
  border-radius: 5px;
  letter-spacing: -0.01em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sign-up-one__form form .google-facebook a:hover {
  border: 1px solid var(--automart-base);
  background-color: var(--automart-white);
}

.sign-up-one__form form .google-facebook a+a {
  margin-left: 14px;
}

.sign-up-one__form form .google-facebook a .icon {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 10px;
}

.sign-up-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 22px;
}

.sign-up-one__form form .create-account p {
  margin: 0;
}

.sign-up-one__form form .create-account p a {
  font-weight: 500;
}

.sign-up-one__form form .create-account p a:hover {
  color: var(--automart-base);
}



/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
  position: relative;
  display: block;
  background-color: var(--automart-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.login-one .container {
  max-width: 620px;
}

.login-one__form {
  position: relative;
  display: block;
}

.login-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.login-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.login-one__form form {
  position: relative;
  display: block;
  background-color: var(--automart-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
}

.login-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.login-one__form form .input-box {
  position: relative;
  display: block;
}

.login-one__form form input[type="text"],
.login-one__form form input[type="email"],
.login-one__form form input[type="password"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--automart-black-rgb), .10);
  background-color: rgba(var(--automart-gray-rgb), .10);
  width: 100%;
  height: 60px;
  color: var(--automart-gray);
  font-size: 16px;
  font-family: var(--automart-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.login-one__form form input[type="text"]:focus,
.login-one__form form input[type="email"]:focus,
.login-one__form form input[type="password"]:focus {
  border-color: var(--automart-base);
  background-color: var(--automart-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--automart-gray);
}

.login-one__form form input[type="text"]:-moz-placeholder {
  color: var(--automart-gray);
}

.login-one__form form input[type="text"]::-moz-placeholder {
  color: var(--automart-gray);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--automart-gray);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--automart-gray);
}

.login-one__form form input[type="email"]:-moz-placeholder {
  color: var(--automart-gray);
}

.login-one__form form input[type="email"]::-moz-placeholder {
  color: var(--automart-gray);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--automart-gray);
}

.login-one__form form .thm-btn {
  width: 100%;
  justify-content: center;
  border: none;
}

.login-one__form form .remember-forget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}


.login-one__form form .checked-box1 {
  position: relative;
  display: block;
  min-height: 26px;
}

.login-one__form form .checked-box1 input[type="checkbox"] {
  display: none;
}

.login-one__form form .checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--automart-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--automart-font);
}

.login-one__form form .checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #e3e4ea;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--automart-base);
  border-radius: 2px;
  margin: 3px auto 0px;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span {
  border-color: var(--automart-base);
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span:before {
  transform: scale(1.0);
}


.login-one__form form .forget {
  position: relative;
  display: block;
}

.login-one__form form .forget a {
  color: var(--automart-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--automart-font);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
  color: var(--automart-base);
}

.login-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 25px;
}

.login-one__form form .create-account p {
  color: var(--automart-black);
}

.login-one__form form .create-account p a {
  color: var(--automart-base);
  font-weight: 500;
}


/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.faq-page__single {
  position: relative;
  display: block;
}

.faq-page__single .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--automart-black-rgb), .15);
  background: var(--automart-white);
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-page__single .faq-one-accrodion .accrodion.active {
  border: 1px solid rgba(var(--automart-black-rgb), .15);
  background: var(--automart-white);
}

.faq-page__single .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 23px 25px 23px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-page__single .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--automart-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-page__single .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-page__single .faq-one-accrodion .accrodion-title h4::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  font-size: 17px;
  color: var(--automart-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--automart-base-rgb), 1);
}

.faq-page__single .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--automart-white);
  background-color: var(--automart-black);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-page__single .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 28px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 20px;
}

.faq-page__single .faq-one-accrodion .accrodion-content p {
  margin: 0;
}





/*--------------------------------------------------------------
# End All Css
--------------------------------------------------------------*/