@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-primary-900: #0966d6;
  --color-primary-800: #308df4;
  --color-primary-700: #4698f3;
  --color-primary-600: #509ef3;
  --color-primary-500: #67aaf4;
  --color-primary-400: #87baf3;
  --color-primary-300: #9dc7f4;
  --color-primary-200: #b4d3f5;
  --color-primary-100: #c9def5;
  --color-primary-50: #e0eaf5;
  --color-secondary-900: #ffbd00;
  --color-secondary-800: #fdc831;
  --color-secondary-700: #fcce4a;
  --color-secondary-600: #fbd362;
  --color-secondary-500: #fad87a;
  --color-secondary-400: #f9df93;
  --color-secondary-300: #f8e5ac;
  --color-secondary-200: #f7eac4;
  --color-secondary-100: #f6f0dd;
  --color-secondary-50: #f6f2e9;
  --color-gry-900: #000000;
  --color-gry-800: #1a1a1a;
  --color-gry-700: #333333;
  --color-gry-600: #4d4d4d;
  --color-gry-500: #666666;
  --color-gry-400: #808080;
  --color-gry-300: #999999;
  --color-gry-200: #b3b3b3;
  --color-gry-100: #cccccc;
  --color-gry-50: #e6e6e6;
  --color-status-success-900: #008a20;
  --color-status-success-800: #1a9636;
  --color-status-success-700: #33a14d;
  --color-status-success-600: #4dad63;
  --color-status-success-500: #66b979;
  --color-status-success-400: #80c590;
  --color-status-success-300: #99d0a6;
  --color-status-success-200: #b3dcbc;
  --color-status-success-100: #cce8d2;
  --color-status-success-50: #e6f3e9;
  --color-status-info-900: #000dff;
  --color-status-info-800: #1a25ff;
  --color-status-info-700: #333dff;
  --color-status-info-600: #4d56ff;
  --color-status-info-500: #666eff;
  --color-status-info-400: #8086ff;
  --color-status-info-300: #999eff;
  --color-status-info-200: #b3b6ff;
  --color-status-info-100: #cccfff;
  --color-status-info-50: #e6e7ff;
  --color-status-warning-900: #ffaa00;
  --color-status-warning-800: #ffb31a;
  --color-status-warning-700: #ffbb33;
  --color-status-warning-600: #ffc44d;
  --color-status-warning-500: #ffcc66;
  --color-status-warning-400: #ffd580;
  --color-status-warning-300: #ffdd99;
  --color-status-warning-200: #ffe6b3;
  --color-status-warning-100: #ffeecc;
  --color-status-warning-50: #fff7e6;
  --color-status-error-900: #ef233c;
  --color-status-error-800: #f13950;
  --color-status-error-700: #f24f63;
  --color-status-error-600: #f46577;
  --color-status-error-500: #f57b8a;
  --color-status-error-400: #f7919e;
  --color-status-error-300: #f9a7b1;
  --color-status-error-200: #fabdc5;
  --color-status-error-100: #fcd3d8;
  --color-status-error-50: #fde9ec;
  --color-status-disabled-900: #d8d8d8;
  --color-status-disabled-800: #dcdcdc;
  --color-status-disabled-700: #e0e0e0;
  --color-status-disabled-600: #e4e4e4;
  --color-status-disabled-500: #e8e8e8;
  --color-status-disabled-400: #ececec;
  --color-status-disabled-300: #efefef;
  --color-status-disabled-200: #f3f3f3;
  --color-status-disabled-100: #f7f7f7;
  --color-status-disabled-50: #fbfbfb;
  --color-status-disabled-gry-900: #7e868d;
  --color-status-disabled-gry-800: #8b9298;
  --color-status-disabled-gry-700: #989ea4;
  --color-status-disabled-gry-600: #a5aaaf;
  --color-status-disabled-gry-500: #b2b6bb;
  --color-status-disabled-gry-400: #bfc3c6;
  --color-status-disabled-gry-300: #cbcfd1;
  --color-status-disabled-gry-200: #d8dbdd;
  --color-status-disabled-gry-100: #e5e7e8;
  --color-status-disabled-gry-50: #f2f3f4;
  --color-link-text-color: var(--color-status-info-900);
  --white: #fff;
  --black: #000;
  --light-gray: #F9F9F9;

  --h1: 36px;
  --h2: 32px;
  --h3: 28px;
  --h4: 26px;
  --h5: 24px;
  --h6: 22px;
  --body14: 14px;
  --body14-semibold: 14px;
  --body16: 16px;
  --body16-semibold: 16px;
  --body18: 18px;
  --body18-semibold: 18px;
  --body20: 20px;
  --body20-semibold: 20px;
}

/*--------------------------------------------------------------------------------------*/
/*Variables-Css-Here
/*--------------------------------------------------------------------------------------*/

h1 {
  font-size: var(--h1);
  font-weight: 700;
}

h2 {
  font-size: var(--h2);
  font-weight: 700;
}

h3 {
  font-size: var(--h3);
  font-weight: 700;
}

h4 {
  font-size: var(--h4);
  font-weight: 700;
}

h5 {
  font-size: var(--h5);
  font-weight: 700;
}

h6 {
  font-size: var(--h6);
  font-weight: 700;
}

.body14 {
  font-size: var(--body14);
  font-weight: 400;
}

.body14-semibold {
  font-size: var(--body14-semibold);
  font-weight: 600;
}

.body16 {
  font-size: var(--body16);
  font-weight: 400;
}

.body16-semibold {
  font-size: var(--body16-semibold);
  font-weight: 600;
}

.body18 {
  font-size: var(--body18);
  font-weight: 400;
}

.body18-semibold {
  font-size: var(--body18-semibold);
  font-weight: 600;
}

.body20 {
  font-size: var(--body20);
  font-weight: 400;
}

.body20-semibold {
  font-size: var(--body20-semibold);
  font-weight: 600;
}

/*--------------------------------------------------------------------------------------*/
/*General-Css-Here
/*--------------------------------------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-size: 16px;
  color: var(--black);
  font-family: "Inter Tight", serif;
  font-weight: 400;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 10rem;
}

a {
  text-decoration: none;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

button {
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

.btn {
  height: 42px;
  border-radius: 5px;
  padding: 0px 20px;
  font-size: var(--body16);
  font-weight: 600;
  text-transform: capitalize;
  background: var(--color-primary-900);
  color: var(--white);
  border-radius: 50px;
  line-height: 40px;
}

.btn:hover {
  background: var(--color-secondary-900);
  color: var(--color-gry-900);
}

.btn-border {
  border: 1px solid var(--color-primary-900);
  background-color: var(--white);
  color: var(--color-primary-900);
}

.btn-border:hover {
  color: var(--white);
  background: var(--color-primary-900);
}

/*--------------------------------------------------------------------------------------*/
/*form-page-css-here
/*--------------------------------------------------------------------------------------*/

.form-content-box {
  flex: 1;
  padding: 30px;
  overflow: auto;
  height: 100vh;
}

.form-content-slider {
  flex: 0 0 720px;
  max-width: 720px;
  position: relative;
}

.form-fild-box {
  width: 380px;
}

.form-logo {
  margin-bottom: 40px;
}

.form-title-head {
  margin-bottom: 30px;
}

.form-title-head h4 {
  color: var(--color-gry-900);
  margin-bottom: 10px;
}

.form-title-head p {
  color: var(--color-gry-500);
}

.form-group {
  margin-bottom: 15px;
}

.form-control,
.form-control:focus {
  background: var(--white);
  border: solid 1px var(--color-gry-100);
  border-radius: 5px;
  color: var(--color-gry-900);
  height: 50px;
  padding: 0px 15px;
  font-size: var(--body14);
  outline: none;
  box-shadow: none;
}

.form-control::placeholder {
  color: var(--color-gry-300);
}

.form-check-label {
  color: var(--color-gry-900);
}

.forgot-link a {
  color: var(--color-primary-900);
}

.continue-as-guest {
  color: var(--color-gry-500);
}

.continue-as-guest a {
  color: var(--color-primary-900);
}

.form-content-slider figure {
  margin: 0;
}

.form-content-slider figure img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.form-content-slider figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.form-content-slider figcaption h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.form-content-slider figcaption p {
  margin: 0;
  color: var(--white);
  line-height: 24px;
}

.continuing-box .form-check {
  padding-left: 0;
}

.continuing-box .form-check .form-check-label {
  color: var(--color-gry-500);
}

.continuing-box .form-check .form-check-label a {
  font-weight: 600;
}

/*--------------------------------------------------------------------------------------*/
/*header-css-here
/*--------------------------------------------------------------------------------------*/

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  background: var(--white);
  border-bottom: solid 1px var(--color-gry-50);
  padding: 15px 0px;
}

.navbar ul li a {
  font-size: var(--body16-semibold);
  font-weight: 600;
  color: var(--color-gry-700);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar ul li a i {
  font-size: 24px;
}

/*--------------------------------------------------------------------------------------*/
/*home-page-css-here
/*--------------------------------------------------------------------------------------*/

.site-bg {
  padding-top: 87px;
}

.top-menu-section {
  padding: 15px 0px;
  border-bottom: solid 1px var(--color-gry-50);
}

.top-menu-list ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.top-menu-list ul li a {
  font-size: var(--body16);
  color: var(--color-gry-900);
}

.top-menu-list ul li a:hover {
  color: var(--color-primary-900);
}


.sidebar-map-section .container-fluid {
  padding: 0px 0px;
}

.sidebar-map {
  width: 281px;
  flex: 0 0 281px;
  background: var(--light-gray);
  padding: 30px 20px;
}

.sidebar-map h4 {
  font-size: 18px;
  color: var(--color-primary-900);
}

.accordion-item {
  background: none;
  border: none;
  padding: 0;
}

.sidebar-map .accordion-body ul li a {
  color: var(--black);
}

.sidebar-map .accordion-body ul li a.active {
  color: var(--color-primary-900);
}

.accordion-button {
  background: none;
  outline: none;
  box-shadow: none !important;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gry-900);
}

.accordion-button:not(.collapsed) {
  background: none;
  color: var(--color-gry-900);
}

.accordion-body {
  padding: 0;
}

.sidebar-menu-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-menu-list ul li a {
  font-size: var(--body14);
  color: var(--color-gry-900);
}

.sidebar-menu-list ul li a:hover {
  color: var(--color-primary-900);
}

.map-des-box {
  flex: 1;
}

.map-box #map {
  height: calc(100vh - 153px) !important;
}

.map-menu-box {
  padding: 10px 15px;
}

.map-menu-box ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-menu-box ul li a {
  font-size: 16px;
  color: var(--color-gry-900);
  font-weight: 600;
  padding: 15px 10px;
  display: block;
}

.search-box .form-control {
  background: url(../images/search.png) no-repeat 10px center var(--color-status-disabled-200);
  padding-left: 45px;
  border: none;
  width: 295px;
}

.map-box iframe {
  width: 100%;
  height: 670px;
}

/*--------------------------------------------------------------------------------------*/
/*footer-css-here
/*--------------------------------------------------------------------------------------*/

footer {
  background: var(--color-gry-800);
  padding: 50px 0px;
}

footer h6 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-menu {
  padding-left: 55px;
}

.footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu ul li a {
  font-size: var(--body16);
  color: var(--color-gry-50);
}

.footer-menu ul li a:hover {
  color: var(--color-primary-900);
}

.footer-logo {
  margin-bottom: 30px;
}

.logo {
  width: 316px;
}

.footer-des p {
  margin: 0;
  font-size: var(--body16);
  color: var(--color-gry-100);
  line-height: 26px;
}

.social-link a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------------------------------------------*/
/*after login home page
/*--------------------------------------------------------------------------------------*/
.profile-dropdown .dropdown-toggle {
  border-radius: 10px;
  background: var(--color-primary-50);
  color: var(--color-primary-900);
  border: none;
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 22.4px */
}

.sidebar-menu ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--black);
}

.sidebar-menu ul li a {
  color: var(--black);
}

.sidebar-menu ul li span {
  color: var(--color-primary-900);
}

.sidebar-menu ul li.active span,
.sidebar-menu ul li.active a {
  color: var(--color-primary-900);
}

.sidebar-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card-drive {
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--color-gry-50);
}

.card-drive h4 {
  color: var(--black);
}

.card-drive-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.card-drive-info .card-drive-info-items {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.card-drive-info .card-drive-info-items i {
  font-size: 24px;
  color: var(--color-primary-900);
}

.btn-star {
  display: inline-flex;
  width: 44px;
  height: 44px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid var(--color-gry-50);
  background: var(--white);
}

.btn-star i {
  color: var(--color-primary-900);
  font-size: 24px;
}

.pagination-count {
  color: var(--color-gry-400);
}

.pagination-count font {
  color: var(--black);
}

.pagination {
  gap: 5px;
}

.page-link {
  border-radius: 5px;
  background: var(--color-gry-50);
  color: var(--color-gry-900);
  min-width: 36px;
  border: none;
  text-align: center;
}

.page-item.active .page-link {
  background: var(--color-primary-900);
}

/*--------------------------------------------------------------------------------------*/
/*after login home page
/*--------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------------*/
/*drive view page
/*--------------------------------------------------------------------------------------*/
.drives-page-map iframe {
  width: 100%;
  height: 600px;
  border-radius: 16px;
}

.list-style-number {
  list-style: decimal;
  padding-left: 15px;
}

.drive-description p,
.drive-description ul li {
  color: var(--color-gry-400);
}

.gallery-list {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
}

.gallery-list .gallery-list-item {
  width: 140px;
  position: relative;
}

.gallery-list .gallery-list-item button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--white);
  font-size: 24px;
}

.gallery-list .gallery-list-item img {
  aspect-ratio: 9/12;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.list-waypoint-card {
  display: flex;
  align-items: center;
  border-radius: 16px;
  border: 1px solid var(--color-gry-50);
  padding: 20px;
  gap: 10px;
}

.list-waypoint-card .form-check {
  margin: 0;
  margin-left: auto;
}

.icon-list-way {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.icon-list-way i {
  color: var(--color-primary-900);
}

.directions-cta h4 {
  color: var(--color-primary-900);
  margin-bottom: 5px;
}

.directions-cta p {
  color: var(--color-gry-400);
}

.sidebar-map {
  min-height: 8 00px;
}

.form-control-file::file-selector-button {
  display: none;
}

.form-control-file {
  line-height: 42px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 17.2139V11.2139L7 13.2139' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 11.2139L11 13.2139' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 10.2139V15.2139C22 20.2139 20 22.2139 15 22.2139H9C4 22.2139 2 20.2139 2 15.2139V9.21387C2 4.21387 4 2.21387 9 2.21387H14' stroke='%23171717' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 10.2139H18C15 10.2139 14 9.21387 14 6.21387V2.21387L22 10.2139Z' stroke='%23171717' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center;
}

.form-control-file:focus {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 17.2139V11.2139L7 13.2139' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 11.2139L11 13.2139' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 10.2139V15.2139C22 20.2139 20 22.2139 15 22.2139H9C4 22.2139 2 20.2139 2 15.2139V9.21387C2 4.21387 4 2.21387 9 2.21387H14' stroke='%23171717' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 10.2139H18C15 10.2139 14 9.21387 14 6.21387V2.21387L22 10.2139Z' stroke='%23171717' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center;
}

.privacy-policy-container p {
  color: var(--color-gry-400);
}

.dropdown-menu {
  box-shadow: 0px 0px 4px rgba(49, 48, 48, 0.09);
  border-radius: 16px;
  border: none;
}

.dropdown-item span i {
  font-size: 24px;
  color: var(--color-primary-900);
}

.dropdown-item {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
}

.btn-border-red {
  border-color: var(--color-status-error-900);
  color: var(--color-status-error-900);
}

.btn-border-red:hover {
  background-color: var(--color-status-error-900);
}

.about-head {
  margin-bottom: 50px;
}

.about-head span {
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary-900);
  background-color: var(--color-primary-50);
  display: inline-block;
  margin-bottom: 10px;
}

.about-head p {
  color: var(--color-gry-400);
}

.statics-info {
  padding: 60px 0;
}

.statics-info-box h2 {
  font-size: 50px;
}

.statics-info-box h2 span {
  color: var(--color-primary-900);
}

.statics-info-box p {
  color: var(--color-gry-400);
}

.services-section {
  padding: 100px 0;
  background-color: var(--color-primary-900);
  color: var(--white);
}

.services-section figure {
  margin-bottom: 50px;
}

.services-section .row>* {
  position: relative;
}

.services-section .row>*::after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
  width: 1.5px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.services-section .row>*:last-child::after {
  display: none;
}

.section-padding {
  padding: 100px 0;
}

.travel-companion-sec .headings p {
  color: var(--color-gry-400);
}

.about-cta {
  background-color: #F1F7FF;
  height: 600px;
  display: flex;
  align-items: center;
  background-image: url(../images/about-left.png), url(../images/about-right.png);
  background-repeat: no-repeat;
  background-position: left 5% center, right 5% center;
}

.contact-block-box {
  padding: 40px;
  border-radius: 16px;
  background: var(--color-secondary-50);
}

.contact-block-sec .row>* {
  display: flex;
}

.contact-block-sec .row>*>* {
  width: 100%;
}


/*--------------------------------------------------------------------------------------*/
/*drive view page
/*--------------------------------------------------------------------------------------*/


.waypoint-content-box {
  gap: 15px;
  align-items: center;
}

.number-box {
  font-size: 18px;
  color: #000;
  font-weight: bold;
  width: 50px;
  flex: 0 0 50px;
}

.waypoint-content-box .list-waypoint-card {
  flex: 1;
}

.distance-box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
  padding-left: 65px;
}

.distance-box span {
  font-size: 14px;
}

.start-reverse-box {
  margin-left: 65px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-gry-50);
  justify-content: space-between;
  margin-top: 50px;
}

.start-reverse-box button {
  display: flex;
  border-radius: 0 !important;
}

.start-reverse-box button:hover {
  color: #fff;
}

.start-reverse-box button.start-btn {
  background: #92D050;
}

.start-reverse-box button.reverse-btn {
  background: #4F94D9;
}

.start-reverse-des {
  font-size: 14px;
  padding-left: 10px;
  font-weight: bold;
}

.top-menu-list ul li a {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 4.16671L13.3333 10L7.5 15.8334' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center right;
  display: block;
  background-repeat: no-repeat;
  background-size: 24px;
}

/* .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.16666 12.5L10 6.66667L15.8333 12.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: 24px;
} */

/* .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.8333 7.5L10 13.3333L4.16667 7.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: 24px;
} */

.top-menu-list-icon-left.top-menu-list ul li a {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 4.16671L6.66667 10L12.5 15.8334' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: left center;
  padding-left: 30px;
}