@charset "UTF-8";
/**
 * Based on
 *
 *  - reset.css 2.0 by Eric Meyer
      (public domain)
 *    http://meyerweb.com/eric/tools/css/reset/
 *
 *  - normalize.css 8.0.1 by Nicolas Gallagher and Jonathan Neal
 *    (licensed under MIT)
 *    https://github.com/necolas/normalize.css
 *
 *  - Based on Reboot from Bootstrap 4.2.1
 *    (licensed under MIT)
 *    https://github.com/twbs/bootstrap
 */
/**
 * IE10+ doesn't honor `<meta name="viewport">` in some cases
 */
@-ms-viewport {
  width: device-width;
}
/**
   * general reset
   */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: normal;
}

/**
   * HTML5 display-role reset for older browsers
   */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
summary {
  display: block;
}

/**
   * inherit box model for all elements
   */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
   * html root rules
   * 1. set border-box for inheritance
   * 2. avoid 300ms click delay on touch devices that support the `touch-action`
   *    CSS property
   * 3. Prevent adjustments of font size after orientation changes in IE, on
   *    Windows Phone and iOS.
   * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
   *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
   * 5. Change the default tap highlight to be completely transparent in iOS.
   */
html {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  touch-action: manipulation;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-overflow-scrolling: touch;
}

/**
   * body rules
   * 1. reset line-height to 1
   * 2. set base font-family to sans-serif
   * 3. Set an explicit initial text-align value so that we can later use the
   *    `inherit` value on things like `<th>` elements.
   */
body {
  /* 1 */
  line-height: 1;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
}
body.ReactModal__Body--open {
  overflow: hidden !important;
}
body.iOS.ReactModal__Body--open {
  position: relative !important;
}

.ReactModal__Overlay--after-open {
  z-index: 99999999 !important;
}

/**
   * Lists
   */
ol,
ul {
  list-style: none;
}

/**
   * Quotes
   */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/**
   * Tables
   */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

/**
   * Table Headers
   * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
   *    closest parent with a set `text-align`.
   */
th {
  /* 1 */
  text-align: inherit;
}

/**
   * Horizontal Lines
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
}

/**
   * Preformatted Text
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Don't allow content to break outside
   * 3. We have @viewport set which causes scrollbars to overlap content in IE11
   *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
   *    counteract.
   */
pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}

/**
   * Links
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}

/**
   * 1. Remove the bottom border in Chrome 57- and Firefox 39-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   * 3. Add explicit cursor to indicate changed behavior.
   * 4. Prevent the text-decoration to be skipped.
   */
abbr[title] {
  /* 1 */
  border-bottom: none;
  /* 2 */
  text-decoration: underline;
  text-decoration: underline dotted;
  /* 3 */
  cursor: help;
  /* 4 */
  text-decoration-skip-ink: none;
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/**
   * Hide SVG overflow in IE
   */
svg:not(:root) {
  overflow: hidden;
}

/**
   * Remove the default `border-radius` that macOS Chrome adds.
   * Details at https://github.com/twbs/bootstrap/issues/24093
   */
button {
  border-radius: 0;
}

/**
   * Work around a Firefox/IE bug where the transparent `button` background
   * results in a loss of the default `button` focus styles.
   * Credit: https://github.com/suitcss/base/
   */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/**
   * form element resets
   * 1. Remove the margin in Firefox and Safari
   * 2. inherit font rules
   */
input,
button,
select,
optgroup,
textarea {
  /* 1 */
  margin: 0;
  /* 2 */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
   * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
   *    controls in Android 4.
   * 2. Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=reset],
[type=submit],
[type=button] {
  /* 2 */
  -webkit-appearance: button;
}

/**
   * Remove the default appearance of temporal inputs to avoid a Mobile Safari
   * bug where setting a custom line-height prevents text from being vertically
   * centered within the input.
   * See https://bugs.webkit.org/show_bug.cgi?id=139848
   * and https://github.com/twbs/bootstrap/issues/11266
   */
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

/**
   * 1. Remove the default vertical scrollbar in IE.
   * 2. Textareas should really only resize vertically so they don't break their
   *    (horizontal) containers.
   */
textarea {
  overflow: auto;
  resize: vertical;
}

/**
   * Show the overflow in IE.
   */
button,
input {
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   */
button,
select {
  text-transform: none;
}

/**
   * Remove the inheritance of word-wrap in Safari.
   * See https://github.com/twbs/bootstrap/issues/24990
   */
select {
  word-wrap: normal;
}

/**
   * Remove inner border and padding from Firefox, but don't restore the outline
   * like Normalize.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * 1. Add the correct box sizing in IE 10-
   * 2. Remove the padding in IE 10-
   */
input[type=radio],
input[type=checkbox] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
   * Suppress the focus outline on elements that cannot be accessed via keyboard.
   * This prevents an unwanted focus outline from appearing around elements that
   * might still respond to pointer events.
   * Credit: https://github.com/suitcss/base
   */
[tabindex="-1"]:focus {
  outline: 0 !important;
}

/**
   * Browsers set a default `min-width: min-content` on fieldsets,
   * unlike e.g. `<div>`s, which have `min-width: 0` by default.
   * So we reset that to ensure fieldsets behave more like a standard block element.
   * See https://github.com/twbs/bootstrap/issues/12359
   * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
   */
fieldset {
  min-width: 0;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Set display to block for all browsers
   */
legend {
  /* 1 */
  max-width: 100%;
  white-space: normal;
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}

/**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

/**
   * Correct element display for output
   */
output {
  display: inline-block;
}

/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

[hidden] {
  display: none;
}

.select-css-wrapper {
  position: relative;
}
.select-css-wrapper svg {
  position: absolute;
  right: 10px;
  top: calc(50% - 3px);
}

/* class applies to select element itself, not a wrapper element */
.select-css {
  display: block;
  width: 100%;
  max-width: 100%;
  /* useful when width is set to anything other than 100% */
  box-sizing: border-box;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Hide arrow icon in IE browsers */
.select-css::-ms-expand {
  display: none;
}

/* Focus style */
.select-css:focus {
  border-color: #aaa;
  /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}

/* Set options to normal weight */
.select-css option {
  font-weight: normal;
}

/**
*
* Testing
*
**/
@font-face {
  font-family: "Citroen Type";
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/CitroenType-Regular.woff2") format("woff2"), url("../fonts/CitroenType-Regular.woff") format("woff");
}
@font-face {
  font-family: "Citroen Type";
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/CitroenType-Bold.woff2") format("woff2"), url("../fonts/CitroenType-Bold.woff") format("woff");
}
@font-face {
  font-family: "Citroen Type";
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/CitroenType-Black.woff2") format("woff2"), url("../fonts/CitroenType-Black.woff") format("woff");
}
@font-face {
  font-family: "Almarai";
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Almarai.woff2") format("woff2");
}
@font-face {
  font-family: "AlmaraiBold";
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/AlmaraiBold.woff2") format("woff2");
}
@font-face {
  font-family: "icons-citroen";
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/icons-citroen.woff2") format("woff2"), url("../fonts/icons-citroen.woff") format("woff");
}
html,
body {
  font-family: "Citroen Type";
  color: #3b3938;
  margin: 0;
}
html [dir=rtl],
body [dir=rtl] {
  direction: rtl;
  font-family: "Almarai";
}
html.popup-active,
body.popup-active {
  overflow: hidden;
}

.l-txt-en {
  font-family: "Citroen Type";
}

.l-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.peu-container {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 375px) {
  .peu-container {
    padding: 0 30px;
  }
}
@media (min-width: 680px) {
  .peu-container {
    padding: 0 40px;
  }
}
@media (min-width: 710px) {
  .peu-container {
    padding: 0 60px;
  }
}
@media (min-width: 991px) {
  .peu-container {
    padding: 0 60px;
    max-width: 991px;
  }
}
@media (min-width: 1024px) {
  .peu-container {
    padding: 0 60px;
    max-width: 1024px;
  }
}
@media (min-width: 1200px) {
  .peu-container {
    max-width: 1200px;
    padding: 0 80px;
  }
}
@media (min-width: 1366px) {
  .peu-container {
    max-width: 1366px;
    padding: 0 100px;
  }
}
@media (min-width: 1600px) {
  .peu-container {
    max-width: 1600px;
    padding: 0 150px;
  }
}
@media (min-width: 1920px) {
  .peu-container {
    max-width: 1600px;
    padding: 0 40px;
  }
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.custom-select__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  height: 40px;
}
[dir=rtl] .custom-select__trigger {
  padding-left: 50px;
}
.custom-select__trigger .arrow {
  width: 40px;
  height: 100%;
  background: #0074e8;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/arrow-down.png) no-repeat center center #0074e8;
  border-radius: 0px 4px 4px 0px;
}
[dir=rtl] .custom-select__trigger .arrow {
  right: auto;
  left: 0;
  border-radius: 4px 0px 0px 4px;
}
.open .custom-select__trigger .arrow {
  transform: scale(-1);
}
.custom-select span {
  font-size: 12px;
}
.custom-select .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  display: none;
  z-index: 999;
  height: 90px;
  flex-direction: column;
  overflow: auto;
}
[dir=rtl] .custom-select .custom-options {
  left: auto;
  right: 0;
}
.custom-select .custom-options .custom-option.custom-option {
  font-size: 11px;
  padding: 10px;
  width: 100%;
  height: 30px;
  cursor: pointer;
}
.custom-select .custom-options .custom-option.custom-option [dir=rtl] {
  font-size: 12px;
}
.custom-select .custom-options .custom-option.custom-option:hover {
  background: #f0f0f0;
}
.custom-select.open .custom-options {
  display: flex;
}

.lang-select-wrapper {
  position: relative;
  width: 100%;
}

.lang-select {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.lang-select__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  height: 40px;
  font-size: 14px;
}
[dir=rtl] .lang-select__trigger {
  padding-left: 50px;
}
.lang-select__trigger .arrow {
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0px 4px 4px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(-1);
}
[dir=rtl] .lang-select__trigger .arrow {
  right: auto;
  left: 0;
  border-radius: 4px 0px 0px 4px;
}
.lang-select__trigger .arrow::after {
  content: "\e9f0";
  font-family: "icons-citroen";
  font-size: 18px;
  color: #3b3938;
}
.open .lang-select__trigger .arrow {
  transform: scale(1) !important;
}
.lang-select span {
  font-size: 14px;
}
.lang-select .lang-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  display: none;
  z-index: 999;
  height: 80px;
  flex-direction: column;
  overflow: auto;
}
[dir=rtl] .lang-select .lang-options {
  left: auto;
  right: 0;
}
.lang-select .lang-options .lang-option.lang-option {
  font-size: 14px;
  padding: 10px;
  width: 100%;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.lang-select .lang-options .lang-option.lang-option [dir=rtl] {
  font-size: 12px;
}
.lang-select .lang-options .lang-option.lang-option:hover {
  background: #f0f0f0;
}
.lang-select .lang-options .lang-option.lang-option.selected {
  background-color: #e4e2e2;
}
.lang-select.open .lang-options {
  display: flex;
}

.l-form-box {
  display: flex;
}
.l-form-box .l-checkbox,
.l-form-box .l-radio {
  width: 18px;
}
.l-form-box p {
  margin-bottom: 0;
  width: calc(100% - 30px);
  padding-left: 12px;
  font-size: 12px;
}
[dir=rtl] .l-form-box p {
  padding-left: 0;
  padding-right: 12px;
}

.l-checkbox {
  position: relative;
  cursor: pointer;
  /* Unchecked State */
}
.l-checkbox span {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-checkbox span:before {
  content: "";
  background: url(../images/tick.png) no-repeat center center #0074e8;
  background-size: 55%;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
}
.l-checkbox input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.l-checkbox input[type=checkbox]:checked + span:before {
  opacity: 1;
}
.l-checkbox input[type=checkbox]:checked + span {
  background-color: #0074e8;
  border: none;
}
.l-checkbox input[type=checkbox] + span {
  background-color: transparent; /* Set background to transparent when unchecked */
  border: 1px solid #ccc; /* Set grey border for unchecked */
}
.l-checkbox input[type=checkbox] + span:before {
  opacity: 0; /* Hide the element when unchecked */
}
.l-checkbox + p {
  margin-bottom: 0;
}

.l-checkbox-new {
  position: relative;
}
.l-checkbox-new span {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #bfbfbf;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-checkbox-new span:before {
  content: "";
  background: url(../images/tick.png) no-repeat center center #0074e8;
  background-size: 55%;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
}
.l-checkbox-new input[type=radio] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.l-checkbox-new input[type=radio]:checked + span:before {
  opacity: 1;
}
.l-checkbox-new input[type=radio]:checked + span {
  background-color: #0074e8;
  border: none;
}
.l-checkbox-new + p {
  margin-bottom: 0;
}

.l-hidden {
  width: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.hidden.hidden.hidden {
  display: none;
}

.l-radio {
  position: relative;
  border-radius: 100%;
  cursor: pointer;
}
.l-radio span {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #333;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-radio span:before {
  content: "";
  background: url(../images/tick.png) no-repeat center center #0074e8;
  background-size: 55%;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
}
.l-radio input[type=radio] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.l-radio input[type=radio]:checked + span:before {
  opacity: 1;
}
.l-radio + p {
  margin-bottom: 0;
}

.l-btn {
  font-size: 12px;
  border-radius: 4px;
  padding: 15px 40px 15px 15px;
  position: relative;
  background: #0074e8;
  color: #fff;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
}
[dir=rtl] .l-btn {
  padding: 15px 15px 15px 40px;
  font-family: "Almarai";
}
@media (min-width: 1200px) {
  .l-btn {
    padding: 15px 50px 15px 20px;
  }
  [dir=rtl] .l-btn {
    padding: 15px 20px 15px 50px;
  }
  .l-btn:hover {
    background-color: #3b3938;
  }
}
.l-btn:before {
  content: "";
  background: black;
  position: absolute;
  width: 10px;
  height: 13px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: url(../images/arrow-rht.png) no-repeat center center;
}
[dir=rtl] .l-btn:before {
  transform: translateY(-50%) scale(-1);
  right: auto;
  left: 15px;
}
@media (min-width: 1200px) {
  .l-btn:before {
    right: 20px;
  }
  [dir=rtl] .l-btn:before {
    right: auto;
    left: 20px;
  }
}

a {
  text-decoration: none;
}

.icon {
  font-family: "icons-citroen";
  font-size: 1rem;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  position: relative;
  text-transform: none;
}
.icon:before {
  content: "";
  font-family: "icons-citroen";
}

[class^=icon-], [class*=" icon-"] {
  font-family: "icons-citroen";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-place-on-map:before {
  content: "\e944";
}

.icon-bobby-car:before {
  content: "\e965";
}

.icon-home:before {
  content: "\e915";
}

.icon-close:before {
  content: "\e90f";
}

.icon-driving-aid:before {
  content: "\e9fd";
}

.icon-offer-badge:before {
  content: "\e970";
}

.icon-social-media-facebook:before {
  content: "\e9f7";
}

.icon-social-media-twitter:before {
  content: "\e9f8";
}

.icon-social-media-instagram:before {
  content: "\ea01";
}

/*------------------------- main style starts from here ---------------------------------*/
.peu-spotlight {
  margin-top: 40px;
  margin-bottom: 60px;
}
.peu-spotlight img {
  width: 100%;
  object-fit: fill;
}

.peu-content {
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .peu-content {
    margin-bottom: 60px;
  }
}
@media (min-width: 1420px) {
  .peu-content {
    margin-bottom: 80px;
  }
}
.peu-content p {
  margin-bottom: 15px;
  font-size: 12px;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .peu-content p {
    font-size: 14px;
    line-height: 1.3;
  }
}
.peu-content h2 {
  font-family: "Citroen Type";
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 21px;
}
[dir=rtl] .peu-content h2 {
  font-family: "AlmaraiBold";
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 1200px) {
  .peu-content h2 {
    font-size: 20px;
    line-height: 26px;
    width: 60%;
  }
}
@media (min-width: 1366px) {
  .peu-content h2 {
    width: 50%;
  }
}
@media (min-width: 1420px) {
  .peu-content h2 {
    width: 50%;
  }
}
.peu-content h3 {
  font-family: "Citroen Type";
  margin-bottom: 10px;
  color: #787b80;
}

.peu-form {
  display: grid;
  gap: 10px;
  margin-bottom: 70px;
}
@media (min-width: 710px) {
  .peu-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (min-width: 1200px) {
  .peu-form {
    gap: 80px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1366px) {
  .peu-form {
    gap: 125px;
  }
}
.peu-form h2 {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 22px;
}
@media (min-width: 1024px) {
  .peu-form h2 {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .peu-form h2 {
    font-size: 20px;
    margin-bottom: 26px;
  }
}

.panel-right__head {
  display: flex;
  justify-content: space-between;
}
.panel-right__head .panel-right__head-block {
  position: relative;
}
.panel-right__head .panel-right__head-block .star {
  color: #da291c;
  position: absolute;
  left: -8px;
  top: -8px;
}
[dir=rtl] .panel-right__head .panel-right__head-block .star {
  left: auto;
  right: -8px;
}
.panel-right__head .panel-right__head-block p {
  font-size: 11px;
}

.peu-cars {
  display: grid;
  gap: 10px;
  margin-bottom: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 710px) {
  .peu-cars {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1200px) {
  .peu-cars {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.peu-batch {
  overflow: auto;
}
@media (min-width: 710px) {
  .peu-batch {
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .peu-batch {
    overflow: auto;
  }
}

.peu-cars__car {
  text-align: center;
  background-color: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.peu-cars__car img {
  max-width: 100%;
  height: auto;
}
.peu-cars__car p {
  margin: 10px 0;
}
.peu-cars__car .peu-cars__car-btm-block {
  position: relative;
}
.peu-cars__car .peu-cars__car-top-block {
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 480px) {
  .peu-cars__car .peu-cars__car-top-block {
    height: 140px;
  }
}
@media (min-width: 710px) {
  .peu-cars__car .peu-cars__car-top-block {
    height: 180px;
  }
}
@media (min-width: 991px) {
  .peu-cars__car .peu-cars__car-top-block {
    height: 190px;
  }
}
@media (min-width: 1200px) {
  .peu-cars__car .peu-cars__car-top-block {
    height: 150px;
  }
}
@media (min-width: 1600px) {
  .peu-cars__car .peu-cars__car-top-block {
    height: 170px;
  }
}
@media (min-width: 1920px) {
  .peu-cars__car .peu-cars__car-top-block {
    height: 210px;
  }
}
.peu-cars__car .peu-cars__car-top-block span {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}
.peu-cars__car .peu-cars__car-top-block span:nth-child(1) {
  padding: 12px 12px 0 12px;
  height: calc(100% - 40px);
}
@media (min-width: 710px) {
  .peu-cars__car .peu-cars__car-top-block span:nth-child(1) {
    padding: 20px 12px 0 12px;
    height: calc(100% - 40px);
  }
}
@media (min-width: 1200px) {
  .peu-cars__car .peu-cars__car-top-block span:nth-child(1) {
    padding: 12px 12px 0 12px;
  }
}
.peu-cars__car .peu-cars__car-top-block span:nth-child(2) {
  font-size: 13px;
  line-height: 17px;
  font-family: "Citroen Type";
  justify-content: center;
  align-items: flex-start;
  height: 40px;
  padding-top: 10px;
}
@media (min-width: 710px) {
  .peu-cars__car .peu-cars__car-top-block span:nth-child(2) {
    padding-top: 8px;
  }
}
@media (min-width: 1200px) {
  .peu-cars__car .peu-cars__car-top-block span:nth-child(2) {
    font-size: 15px;
    line-height: 18px;
    padding-top: 10px;
  }
}
.peu-cars__car .peu-cars__car-top-block img {
  object-fit: contain;
  width: 100%;
  margin-top: 0px;
  margin-top: -10px;
}
@media (min-width: 480px) {
  .peu-cars__car .peu-cars__car-top-block img {
    margin-top: -20px;
  }
}
@media (min-width: 710px) {
  .peu-cars__car .peu-cars__car-top-block img {
    width: 90%;
  }
}
@media (min-width: 991px) {
  .peu-cars__car .peu-cars__car-top-block img {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  .peu-cars__car .peu-cars__car-top-block img {
    margin-top: -40px;
  }
}
@media (min-width: 1200px) {
  .peu-cars__car .peu-cars__car-top-block img {
    width: 100%;
    margin-top: -20px;
  }
}
.peu-cars__car .peu-cars__car-btm-block {
  background-color: #e7e7e7;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.peu-form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
  position: relative;
}
.peu-form__group input[type=text],
.peu-form__group input[type=email],
.peu-form__group select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}
.peu-form__group input[type=radio],
.peu-form__group input[type=checkbox] {
  margin-right: 10px;
}

button {
  background-color: #0074e8;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
}
button:hover {
  background-color: #0074e8;
}

.error-msg {
  color: #da291c;
  font-size: 9px;
  margin-top: 5px;
  display: block;
  width: 100%;
  height: 15px;
  line-height: 10px;
}

.peu-form .mandatotry:after {
  content: "*";
  color: #da291c;
  position: relative;
  left: 3px;
  top: 0;
}
[dir=rtl] .peu-form .mandatotry:after {
  left: auto;
  right: 3px;
}
.peu-form .peu-form__group label {
  font-size: 13px;
  margin-bottom: 6px;
}
.peu-form .peu-form__group input[type=text],
.peu-form .peu-form__group input[type=email],
.peu-form .peu-form__group select {
  font-size: 12px;
}
.peu-form .peu-form__group .invalid {
  border-color: red;
}
.peu-form .peu-form__group .error-msg {
  position: absolute;
  bottom: -20px;
}
.peu-form .peu-form__group.privacy-group .error-msg {
  bottom: -11px;
}
@media (min-width: 1200px) {
  .peu-form .peu-form__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.peu-form .driver-type-group {
  margin-bottom: 20px;
}
.peu-form .driver-type-group label {
  margin-bottom: 12px;
}
.peu-form .driver-type-group p {
  font-family: "Citroen Type";
}
[dir=rtl] .peu-form .driver-type-group p {
  font-family: "AlmaraiBold";
}
.peu-form h4 {
  font-size: 13px;
  margin-bottom: 14px;
}
.peu-form h4 a {
  color: #3b3938;
  text-decoration: none;
}
.peu-form h4 a:hover {
  text-decoration: underline;
}
.peu-form .privacy-group {
  margin-bottom: 30px;
}
.peu-form .privacy-group p {
  color: #636363;
}
.peu-form p {
  font-size: 12px;
  line-height: 14px;
  color: #333;
}
.peu-form .phone-block {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.peu-form .phone-block .phone-code {
  font-size: 12px;
  margin-right: 10px;
  direction: ltr;
}
[dir=rtl] .peu-form .phone-block .phone-code {
  margin-left: 10px;
  margin-right: 0;
}

.l-overlay {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.peu-popup {
  width: 80%;
  height: 270px;
  background: #fff;
  padding: 40px 20px 20px 20px;
  position: relative;
}
@media (min-width: 1200px) {
  .peu-popup {
    padding: 40px;
  }
}
.peu-popup h2 {
  font-size: 26px;
  font-family: "Citroen Type";
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .peu-popup h2 {
    margin-bottom: 70px;
  }
}
[dir=rtl] .peu-popup h2 {
  font-family: "AlmaraiBold";
}
.peu-popup p {
  font-size: 14px;
  line-height: 17px;
}
.peu-popup .peu-popup__content {
  margin-bottom: 25px;
}
.peu-popup .peu-popup__close {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  cursor: pointer;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
}
[dir=rtl] .peu-popup .peu-popup__close {
  right: auto;
  left: 10px;
}
.peu-popup .l-btn {
  background: #0074e8;
}

.peu-loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

.peu-loader__block {
  width: 70px;
  height: 70px;
}
.peu-loader__block img {
  width: 100%;
  height: 100%;
}

.hide {
  display: none;
}

.hero-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh; /* Full viewport height */
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensure that the image covers the entire area */
  margin-bottom: 3rem;
  margin-top: 64px;
}
@media (min-width: 991px) {
  .hero-banner {
    margin-top: 0px;
  }
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Ensure the image is behind the text */
}

.hero-content {
  padding: 20px;
  border-radius: 10px;
  display: none;
  position: absolute;
  left: 0;
  bottom: 35px;
  width: 100%;
}
[dir=rtl] .hero-content {
  left: auto;
  right: 0;
}

@media (max-width: 768px) {
  .hero-content {
    display: block;
  }
}
.hero-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2em;
  color: #fff;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2em;
  }
  .hero-content p {
    font-size: 1.2em;
  }
  .cta-button {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5em;
  }
  .hero-content p {
    font-size: 1em;
  }
  .cta-button {
    font-size: 0.9em;
  }
}
.overlapping {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 65;
}

.show-side {
  display: block;
}

.show-close .top .tab-bar .tab-bar__inner .actions-section .hamburger .hamburger__box .hamburger__inner::after {
  opacity: 1;
}
.show-close .top .tab-bar .tab-bar__inner .actions-section .hamburger .hamburger__box .hamburger__inner::before {
  opacity: 0;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 50vh;
  }
}
.peu-content p {
  line-height: 25px;
  color: #787b80;
}

#form-loader, .thank-you {
  display: none;
}

body.arabic {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.peu-content h2 {
  margin-bottom: 15px;
  font-weight: 900;
}

.peu-content h3 {
  line-height: 25px;
  font-weight: 900;
}

[dir=rtl] .peu-content h2 {
  font-family: "Citroen Type";
  font-weight: 900;
}

.header {
  z-index: 10;
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
}
@media (min-width: 991px) {
  .header {
    position: relative;
  }
}
.header .header__wrap {
  height: 65px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px;
}
@media (min-width: 991px) {
  .header .header__wrap {
    height: 137px;
    margin: 0 40px;
  }
}
.header h2 {
  position: absolute;
  top: 24px;
  left: 45px;
}
@media (min-width: 991px) {
  .header h2 {
    display: none;
  }
}
[dir=rtl] .header h2 {
  left: auto;
  right: 45px;
}
.header .hamburger {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 991px) {
  .header .hamburger {
    height: 43px;
    justify-content: space-between;
  }
}
.header .hamburger .hamburger__box {
  width: 18px;
  height: 16px;
  position: relative;
  display: flex;
  align-items: center;
}
.header .hamburger .hamburger__txt {
  display: none;
}
@media (min-width: 991px) {
  .header .hamburger .hamburger__txt {
    display: block;
    font-size: 11px;
    font-weight: 900;
    color: #3b3938;
  }
}
.header .hamburger .hamburger__box-inner {
  width: 100%;
  height: 2px;
  background-color: #000;
  display: block;
  transition: all 0.2s;
}
.header .hamburger .hamburger__box-inner:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0px;
  transition: all 0.2s;
}
.header .hamburger .hamburger__box-inner:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0px;
  transition: all 0.2s;
}
@media (min-width: 991px) {
  .header .hamburger.active .hamburger__box-inner {
    transform: rotate(142deg);
  }
  .header .hamburger.active .hamburger__box-inner:before {
    opacity: 0;
  }
  .header .hamburger.active .hamburger__box-inner:after {
    transform: rotate(-106deg);
  }
}
.header .logo {
  width: 52px;
  height: 48px;
}
@media (min-width: 991px) {
  .header .logo {
    width: 104px;
    height: 96px;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.header .logo img {
  width: 100%;
  height: auto;
}
.header .top-nav {
  display: none;
  gap: 30px;
  margin-top: 30px;
}
@media (min-width: 991px) {
  .header .top-nav {
    display: flex;
  }
}
.header .top-nav .icon {
  margin-bottom: 8px;
  font-size: 32px;
}
.header .top-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #3b3938;
}
@media (min-width: 1366px) {
  .header .top-nav a:hover {
    color: #da291c;
  }
}
.header .nav-lang {
  display: none;
  gap: 10px;
  position: absolute;
  top: 5px;
  right: 0;
}
[dir=rtl] .header .nav-lang {
  right: auto;
  left: 0;
}
@media (min-width: 991px) {
  .header .nav-lang {
    display: flex;
  }
}
.header .nav-lang div {
  cursor: pointer;
  padding: 6px;
}
.header .nav-lang a {
  text-decoration: none;
  font-size: 11px;
  display: inline-block;
  font-weight: 700;
  color: rgb(59, 57, 56);
}
.header .nav-lang a.active {
  opacity: 0.6;
  pointer-events: none;
}
.header .subnav {
  height: 100px;
  position: absolute;
  width: 100%;
  background: #fff;
  bottom: -100px;
  display: none;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
}
@media (min-width: 991px) {
  .header .subnav {
    display: flex;
  }
}
@media (min-width: 991px) {
  .header .subnav.active {
    opacity: 1;
    pointer-events: unset;
  }
}
.header .subnav ul {
  display: flex;
  gap: 60px;
}
.header .subnav li {
  min-width: 100px;
  height: 40px;
}
.header .subnav a {
  text-decoration: none;
  color: #3b3938;
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
  text-align: center;
  padding: 0 16px;
}
.header .subnav a:before {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3b3938;
  border-radius: 4px 4px 0 0;
  margin: 0;
  transform: none;
}
.header .subnav a:hover {
  color: #da291c;
}
.header .subnav a:hover:before {
  background-color: #da291c;
}

aside {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #f5f5f5;
}
@media (min-width: 991px) {
  aside {
    display: none;
  }
}
aside.show-side {
  display: block;
}
@media (min-width: 991px) {
  aside.show-side {
    display: none;
  }
}
aside .aside__top {
  height: 65px;
  border-bottom: 1px solid #e4e2e2;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
aside .aside__top a i {
  font-size: 24px;
}
aside .aside__top .btn-close i {
  font-size: 32px;
  color: #57718a;
}
aside .aside__main-nav {
  padding: 0 20px;
  background-color: #fff;
}
aside .aside__main-nav li {
  border-bottom: 1px solid #e4e2e2;
}
aside .aside__main-nav a {
  height: 60px;
  text-decoration: none;
  color: #3b3938;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
aside .aside__items {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
aside .aside__items li {
  width: 47%;
}
aside .aside__items a {
  background-color: #fff;
  text-decoration: none;
  color: #57718a;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  height: 85px;
  border-radius: 13px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
}
aside .aside__items a i {
  font-size: 32px;
  color: #57718a;
  margin-bottom: 2px;
  display: inline-block;
}
aside .aside__items a span {
  font-weight: 700;
}

footer .footer__top {
  background-color: #57718a;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 991px) {
  footer .footer__top {
    height: 80px;
  }
}
@media (min-width: 991px) {
  footer .footer__top-links {
    display: flex;
  }
}
footer .footer__top-links li {
  width: 33.33%;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  footer .footer__top-links li {
    width: 100%;
    justify-content: flex-start;
    padding: 20px 0px;
  }
}
footer .footer__top-links li a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
}
footer .footer__top-links li a i {
  font-size: 32px;
  color: #fff;
  margin-right: 8px;
}
[dir=rtl] footer .footer__top-links li a i {
  margin-right: 0px;
  margin-left: 8px;
}
footer .footer__top-links li a span {
  font-weight: 700;
}
footer p.copyright:before {
  content: "©";
  position: static;
  margin-right: 4px;
}
[dir=rtl] footer p.copyright:before {
  margin-right: 0px;
  margin-left: 4px;
}
footer .footer__lang-block {
  margin-bottom: 30px;
}
@media (min-width: 991px) {
  footer .footer__lang-block {
    display: none;
  }
}
footer .footer__wrap-nav {
  display: flex;
  gap: 15px;
  margin: 80px 0 50px 0;
}
footer .footer__main-nav .footer__nav-title {
  color: #da291c;
  font-size: 14px;
  text-decoration: none;
  padding-bottom: 25px;
  display: block;
  width: 155px;
  font-weight: 700;
}
footer .footer__main-nav li {
  display: flex;
}
footer .footer__main-nav li a {
  color: #3b3938;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  line-height: 22px;
}
@media (min-width: 1200px) {
  footer .footer__main-nav li a:hover {
    color: #da291c;
  }
}
footer .footer__panel {
  margin: 80px 0 50px 0;
  display: none;
}
@media (min-width: 991px) {
  footer .footer__panel {
    display: block;
  }
}
footer .footer__btm p {
  font-size: 14px;
  line-height: 22px;
  color: #3b3938;
}
footer .footer__btm h4 {
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
  color: #3b3938;
  text-transform: uppercase;
}
@media (min-width: 991px) {
  footer .footer__btm h4 {
    padding-right: 20px;
    margin-right: 20px;
    margin-right: 8px;
    position: relative;
  }
  [dir=rtl] footer .footer__btm h4 {
    padding-right: 0px;
    margin-right: 0px;
    margin-right: 0px;
    padding-left: 20px;
    margin-left: 20px;
    margin-left: 8px;
  }
  footer .footer__btm h4:after {
    content: "";
    width: 2px;
    height: 35px;
    border-right: 1px solid #3b3938;
    position: absolute;
    right: 0;
    top: 0;
  }
  [dir=rtl] footer .footer__btm h4:after {
    border-left: 1px solid #3b3938;
    border-right: none;
    right: auto;
    left: 0;
  }
}
footer .footer-btm__left {
  padding-bottom: 25px;
}
@media (min-width: 991px) {
  footer .footer-btm__left {
    flex-basis: 40%;
    padding-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  footer .footer-btm__left {
    flex-basis: 46%;
  }
}
@media (min-width: 1366px) {
  footer .footer-btm__left {
    flex-basis: 43%;
  }
}
@media (min-width: 991px) {
  footer .footer-btm__rht {
    display: flex;
    padding-top: 24px;
  }
}
footer .footer__social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 991px) {
  footer .footer__social {
    margin-top: 0px;
  }
}
footer .footer__social a i {
  color: #da291c;
  font-size: 32px;
}
footer .footer__btm-panel {
  display: flex;
  flex-direction: column;
  padding: 30px 0 40px;
}
@media (min-width: 991px) {
  footer .footer__btm-panel {
    flex-direction: row;
    border-top: 1px solid #3b3938;
    justify-content: space-between;
  }
}
footer .footer__nav {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
footer .footer__nav a {
  color: #3b3938;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
}
footer .footer__nav li {
  position: relative;
}
footer .footer__nav li:nth-child(1):after {
  content: "";
  width: 2px;
  height: 15px;
  position: absolute;
  right: -10px;
  top: 4px;
  display: inline-block;
  border-right: 1px solid #796f6e;
}
[dir=rtl] footer .footer__nav li:nth-child(1):after {
  right: auto;
  left: -10px;
}

/*------------------------- main style starts from here ---------------------------------*/