@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Dubai", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.42857;
}

:root {
  --primary: #4700CC;
  --secondary: #3A3F57;
  --white: #fff;
  --black: #000;
}

/* DEFAULT STYLES */
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  margin-top: 0 !important;
}

body, .dda-side-nav .sidenav a, .dda-side-nav .dropdown-btn label,
input,
textarea,
select,
button {
  font-family: "Dubai", sans-serif;
}

/**
 * Added for accessibility
 */
body {
  background: #F9FAFC;
  color: #000000;
}

a {
  color: #4700CC; /* Link color */
}

a:visited {
  color: #4700CC; /* Visited link color */
}

a.dda-footer__section-link:link, a.dda-footer__section-link {
  color: #3a3f57;
}

/**
 * End Added for accessibility
 */
body,
label,
input,
textarea,
select,
button {
  font-family: "Dubai", sans-serif;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  background: #F9FAFC;
}

[dir=rtl] body {
  overflow-x: hidden;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: var(--primary);
}

a:hover {
  color: #696f8a;
}

a:focus,
a:active {
  color: var(--primary);
}

p,
li {
  line-height: 1.6;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * 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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

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

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 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;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 40px;
  table-layout: fixed;
  width: 100%;
  word-break: break-all;
}

td:first-child, th:first-child {
  padding-left: 0;
}

tbody {
  border-bottom: 1px solid #eee;
}

th {
  font-weight: 600;
  padding: 0 10px 10px;
  text-align: left;
}

[dir=rtl] th {
  text-align: right;
}

td {
  border-top: 1px solid #eee;
  padding: 10px;
}

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

/**
 * 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] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[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 {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

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

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* DEFAULT INPUT ELEMENTS */
/* This will make the border gray when the button is not checked. */
input[type=radio]:not(:checked)::-ms-check {
  border-color: mediumspringgreen !important;
}

input[type=radio]::-ms-check {
  border-color: red !important;
  /* This will make the border red when the button is checked. */
  color: red !important;
  /* This will make the circle red when the button is checked. */
}

/* FONTS & ICONS */
/* Dubai Fonts */
@font-face {
  font-family: "Dubai";
  src: url("../fonts/dubai/DubaiW23-Light.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dubai";
  src: url("../fonts/dubai/DubaiW23-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dubai";
  src: url("../fonts/dubai/DubaiW23-Medium.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dubai";
  src: url("../fonts/dubai/DubaiW23-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dubai";
  src: url("../fonts/dubai/DubaiW23-Bold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Icomoon */
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon/icomoon.eot?tg0rw9");
  src: url("../fonts/icomoon/icomoon.eot?tg0rw9#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?tg0rw9") format("truetype"), url("../fonts/icomoon/icomoon.woff?tg0rw9") format("woff"), url("../fonts/icomoon/icomoon.svg?tg0rw9#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-accessibility:before {
  content: "\e900";
}

.icon-account:before {
  content: "\e901";
}

.icon-apps:before {
  content: "\e902";
}

.icon-arrows-down:before {
  content: "\e903";
  color: #1A1A1A;
}

.icon-arrows-right:before {
  content: "\e904";
}

.icon-arrows-up:before {
  content: "\e905";
}

.icon-chat:before {
  content: "\e906";
}

.icon-dashboard:before {
  content: "\e907";
}

.icon-happiness:before {
  content: "\e908";
}

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

.icon-menu:before {
  content: "\e90b";
}

.icon-icons-stickybar-newspaper:before {
  content: "\e90a";
  color: var(--secondary);
}

.icon-phone:before {
  content: "\e90d";
}

.icon-search:before {
  content: "\e90e";
}

.icon-location:before {
  content: "\e910";
  color: var(--secondary);
}

.icon-mail:before {
  content: "\e90f";
  color: var(--secondary);
}

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

.icon-link:before {
  content: "\e0c3";
}

.icon-scholarship:before {
  content: "";
  background: url(../images/icon-scholarship.svg);
  width: 30px;
  height: 36px;
  background-repeat: no-repeat;
  display: block;
}

.icon-calendarplus:before {
  content: "";
  mask-image: url(../images/calendar-plus.svg);
  background-size: 100%;
  width: 19px;
  height: 19px;
  display: block;
  background-color: #3A3F57;
}

@media (max-width: 991px) {
  .icon-scholarship:before {
    left: 5px;
    position: relative;
    top: 4px;
  }
  .dda-footer__section-links .icon-apps:before {
    position: relative;
  }
  .rtl .icon-scholarship:before {
    left: inherit;
    right: 5px;
  }
  .rtl .dda-footer__section-links .icon-apps:before {
    left: inherit;
  }
}
.dda-footer__section-links--right .dda-footer__section-link:hover i.icon-calendarplus:before {
  background-color: var(--primary);
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1320px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  padding-right: 20px;
  /* 3 */
  width: 100%;
  /* 1 */
}

/* COMMON CLASSES    */
.primary--text {
  color: var(--primary);
}

.primary {
  background: var(--primary);
}

.primary--bordered {
  border: 1px solid var(--primary);
}

.secondary--text {
  color: #1A1A1A;
}

.secondary {
  background: #1A1A1A;
}

.secondary--bordered {
  border: 1px solid #1A1A1A;
}

.tertiary--text {
  color: #999999;
}

.tertiary {
  background: #999999;
}

.tertiary--bordered {
  border: 1px solid #999999;
}

.quarternary--text {
  color: #cccccc;
}

.quarternary {
  background: #cccccc;
}

.quarternary--bordered {
  border: 1px solid #cccccc;
}

.success--text {
  color: #26cb84;
}

.success {
  background: #26cb84;
}

.success--bordered {
  border: 1px solid #26cb84;
}

.warning--text {
  color: #f58c1f;
}

.warning {
  background: #f58c1f;
}

.warning--bordered {
  border: 1px solid #f58c1f;
}

.alert--text {
  color: #dc3131;
}

.alert {
  background: #dc3131;
}

.alert--bordered {
  border: 1px solid #dc3131;
}

.black--text {
  color: #000;
}

.black {
  background: #000;
}

.black--bordered {
  border: 1px solid #000;
}

.graydark--text {
  color: #4f5660;
}

.graydark {
  background: #4f5660;
}

.graydark--bordered {
  border: 1px solid #4f5660;
}

.white--text {
  color: #fff;
}

.white {
  background: #fff;
}

.white--bordered {
  border: 1px solid #fff;
}

.bg--text {
  color: #f5f5f5;
}

.bg {
  background: #f5f5f5;
}

.bg--bordered {
  border: 1px solid #f5f5f5;
}

.main-bg--text {
  color: #e8e8e8;
}

.main-bg {
  background: #e8e8e8;
}

.main-bg--bordered {
  border: 1px solid #e8e8e8;
}

.primary-light--text {
  color: #e8f6fc;
}

.primary-light {
  background: #e8f6fc;
}

.primary-light--bordered {
  border: 1px solid #e8f6fc;
}

.primary-lighter--text {
  color: #f4fbfd;
}

.primary-lighter {
  background: #f4fbfd;
}

.primary-lighter--bordered {
  border: 1px solid #f4fbfd;
}

.gray--text {
  color: #f5f5f5;
}

.gray {
  background: #f5f5f5;
}

.gray--bordered {
  border: 1px solid #f5f5f5;
}

.dark-gray--text {
  color: #575757;
}

.dark-gray {
  background: #575757;
}

.dark-gray--bordered {
  border: 1px solid #575757;
}

.transparent-white--text {
  color: rgba(255, 255, 255, 0.1333333333);
}

.transparent-white {
  background: rgba(255, 255, 255, 0.1333333333);
}

.transparent-white--bordered {
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
}

.transparent-black--text {
  color: rgba(0, 0, 0, 0.1333333333);
}

.transparent-black {
  background: rgba(0, 0, 0, 0.1333333333);
}

.transparent-black--bordered {
  border: 1px solid rgba(0, 0, 0, 0.1333333333);
}

.green--text {
  color: #008954;
}

.green {
  background: #008954;
}

.green--bordered {
  border: 1px solid #008954;
}

.transparent--text {
  color: rgba(0, 0, 0, 0);
}

.transparent {
  background: rgba(0, 0, 0, 0);
}

.transparent--bordered {
  border: 1px solid rgba(0, 0, 0, 0);
}

.visually-hidden {
  display: none;
}

.dda-btn {
  border: none;
  text-decoration: none;
  height: 48px;
}

.dda-btn--rounded {
  border-radius: 1.5rem;
}

.dda-btn__img {
  height: 20px;
}

.text-center {
  text-align: center;
}

/* Creating padding and margin classes for each of the spacings in the $spacings variable. */
.ps-0 {
  padding-left: 0rem;
}

[dir=rtl] .ps-0 {
  padding-right: 0rem;
  padding-left: unset;
}

.ms-0 {
  margin-left: 0rem;
}

[dir=rtl] .ms-0 {
  margin-right: 0rem;
  margin-left: unset;
}

.pe-0 {
  padding-right: 0rem;
}

[dir=rtl] .pe-0 {
  padding-right: unset;
  padding-left: 0rem;
}

.me-0 {
  margin-right: 0rem;
}

[dir=rtl] .me-0 {
  margin-right: unset;
  margin-left: 0rem;
}

.pt-0 {
  padding-top: 0rem;
}

.mt-0 {
  margin-top: 0rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.pl-0 {
  padding-left: 0rem;
}

.ml-0 {
  margin-left: 0rem;
}

.pr-0 {
  padding-right: 0rem;
}

.mr-0 {
  margin-right: 0rem;
}

.pa-0 {
  padding-top: 0rem;
  padding-left: 0rem;
  padding-bottom: 0rem;
  padding-right: 0rem;
}

.ma-0 {
  margin-top: 0rem;
  margin-left: 0rem;
  margin-bottom: 0rem;
  margin-right: 0rem;
}

.px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.mx-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.ps-1 {
  padding-left: 0.25rem;
}

[dir=rtl] .ps-1 {
  padding-right: 0.25rem;
  padding-left: unset;
}

.ms-1 {
  margin-left: 0.25rem;
}

[dir=rtl] .ms-1 {
  margin-right: 0.25rem;
  margin-left: unset;
}

.pe-1 {
  padding-right: 0.25rem;
}

[dir=rtl] .pe-1 {
  padding-right: unset;
  padding-left: 0.25rem;
}

.me-1 {
  margin-right: 0.25rem;
}

[dir=rtl] .me-1 {
  margin-right: unset;
  margin-left: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.pa-1 {
  padding-top: 0.25rem;
  padding-left: 0.25rem;
  padding-bottom: 0.25rem;
  padding-right: 0.25rem;
}

.ma-1 {
  margin-top: 0.25rem;
  margin-left: 0.25rem;
  margin-bottom: 0.25rem;
  margin-right: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.ps-2 {
  padding-left: 0.5rem;
}

[dir=rtl] .ps-2 {
  padding-right: 0.5rem;
  padding-left: unset;
}

.ms-2 {
  margin-left: 0.5rem;
}

[dir=rtl] .ms-2 {
  margin-right: 0.5rem;
  margin-left: unset;
}

.pe-2 {
  padding-right: 0.5rem;
}

[dir=rtl] .pe-2 {
  padding-right: unset;
  padding-left: 0.5rem;
}

.me-2 {
  margin-right: 0.5rem;
}

[dir=rtl] .me-2 {
  margin-right: unset;
  margin-left: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.pa-2 {
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 0.5rem;
}

.ma-2 {
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.ps-3 {
  padding-left: 0.75rem;
}

[dir=rtl] .ps-3 {
  padding-right: 0.75rem;
  padding-left: unset;
}

.ms-3 {
  margin-left: 0.75rem;
}

[dir=rtl] .ms-3 {
  margin-right: 0.75rem;
  margin-left: unset;
}

.pe-3 {
  padding-right: 0.75rem;
}

[dir=rtl] .pe-3 {
  padding-right: unset;
  padding-left: 0.75rem;
}

.me-3 {
  margin-right: 0.75rem;
}

[dir=rtl] .me-3 {
  margin-right: unset;
  margin-left: 0.75rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.pa-3 {
  padding-top: 0.75rem;
  padding-left: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 0.75rem;
}

.ma-3 {
  margin-top: 0.75rem;
  margin-left: 0.75rem;
  margin-bottom: 0.75rem;
  margin-right: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.ps-4 {
  padding-left: 1rem;
}

[dir=rtl] .ps-4 {
  padding-right: 1rem;
  padding-left: unset;
}

.ms-4 {
  margin-left: 1rem;
}

[dir=rtl] .ms-4 {
  margin-right: 1rem;
  margin-left: unset;
}

.pe-4 {
  padding-right: 1rem;
}

[dir=rtl] .pe-4 {
  padding-right: unset;
  padding-left: 1rem;
}

.me-4 {
  margin-right: 1rem;
}

[dir=rtl] .me-4 {
  margin-right: unset;
  margin-left: 1rem;
}

.pt-4 {
  padding-top: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.pl-4 {
  padding-left: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.pr-4 {
  padding-right: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.pa-4 {
  padding-top: 1rem;
  padding-left: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
}

.ma-4 {
  margin-top: 1rem;
  margin-left: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ps-5 {
  padding-left: 1.25rem;
}

[dir=rtl] .ps-5 {
  padding-right: 1.25rem;
  padding-left: unset;
}

.ms-5 {
  margin-left: 1.25rem;
}

[dir=rtl] .ms-5 {
  margin-right: 1.25rem;
  margin-left: unset;
}

.pe-5 {
  padding-right: 1.25rem;
}

[dir=rtl] .pe-5 {
  padding-right: unset;
  padding-left: 1.25rem;
}

.me-5 {
  margin-right: 1.25rem;
}

[dir=rtl] .me-5 {
  margin-right: unset;
  margin-left: 1.25rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.pa-5 {
  padding-top: 1.25rem;
  padding-left: 1.25rem;
  padding-bottom: 1.25rem;
  padding-right: 1.25rem;
}

.ma-5 {
  margin-top: 1.25rem;
  margin-left: 1.25rem;
  margin-bottom: 1.25rem;
  margin-right: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.ps-6 {
  padding-left: 1.5rem;
}

[dir=rtl] .ps-6 {
  padding-right: 1.5rem;
  padding-left: unset;
}

.ms-6 {
  margin-left: 1.5rem;
}

[dir=rtl] .ms-6 {
  margin-right: 1.5rem;
  margin-left: unset;
}

.pe-6 {
  padding-right: 1.5rem;
}

[dir=rtl] .pe-6 {
  padding-right: unset;
  padding-left: 1.5rem;
}

.me-6 {
  margin-right: 1.5rem;
}

[dir=rtl] .me-6 {
  margin-right: unset;
  margin-left: 1.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.pa-6 {
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 1.5rem;
}

.ma-6 {
  margin-top: 1.5rem;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  margin-right: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.ps-7 {
  padding-left: 1.75rem;
}

[dir=rtl] .ps-7 {
  padding-right: 1.75rem;
  padding-left: unset;
}

.ms-7 {
  margin-left: 1.75rem;
}

[dir=rtl] .ms-7 {
  margin-right: 1.75rem;
  margin-left: unset;
}

.pe-7 {
  padding-right: 1.75rem;
}

[dir=rtl] .pe-7 {
  padding-right: unset;
  padding-left: 1.75rem;
}

.me-7 {
  margin-right: 1.75rem;
}

[dir=rtl] .me-7 {
  margin-right: unset;
  margin-left: 1.75rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

.pr-7 {
  padding-right: 1.75rem;
}

.mr-7 {
  margin-right: 1.75rem;
}

.pa-7 {
  padding-top: 1.75rem;
  padding-left: 1.75rem;
  padding-bottom: 1.75rem;
  padding-right: 1.75rem;
}

.ma-7 {
  margin-top: 1.75rem;
  margin-left: 1.75rem;
  margin-bottom: 1.75rem;
  margin-right: 1.75rem;
}

.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.mx-7 {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.ps-8 {
  padding-left: 2rem;
}

[dir=rtl] .ps-8 {
  padding-right: 2rem;
  padding-left: unset;
}

.ms-8 {
  margin-left: 2rem;
}

[dir=rtl] .ms-8 {
  margin-right: 2rem;
  margin-left: unset;
}

.pe-8 {
  padding-right: 2rem;
}

[dir=rtl] .pe-8 {
  padding-right: unset;
  padding-left: 2rem;
}

.me-8 {
  margin-right: 2rem;
}

[dir=rtl] .me-8 {
  margin-right: unset;
  margin-left: 2rem;
}

.pt-8 {
  padding-top: 2rem;
}

.mt-8 {
  margin-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.pl-8 {
  padding-left: 2rem;
}

.ml-8 {
  margin-left: 2rem;
}

.pr-8 {
  padding-right: 2rem;
}

.mr-8 {
  margin-right: 2rem;
}

.pa-8 {
  padding-top: 2rem;
  padding-left: 2rem;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.ma-8 {
  margin-top: 2rem;
  margin-left: 2rem;
  margin-bottom: 2rem;
  margin-right: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.ps-9 {
  padding-left: 2.25rem;
}

[dir=rtl] .ps-9 {
  padding-right: 2.25rem;
  padding-left: unset;
}

.ms-9 {
  margin-left: 2.25rem;
}

[dir=rtl] .ms-9 {
  margin-right: 2.25rem;
  margin-left: unset;
}

.pe-9 {
  padding-right: 2.25rem;
}

[dir=rtl] .pe-9 {
  padding-right: unset;
  padding-left: 2.25rem;
}

.me-9 {
  margin-right: 2.25rem;
}

[dir=rtl] .me-9 {
  margin-right: unset;
  margin-left: 2.25rem;
}

.pt-9 {
  padding-top: 2.25rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.pb-9 {
  padding-bottom: 2.25rem;
}

.mb-9 {
  margin-bottom: 2.25rem;
}

.pl-9 {
  padding-left: 2.25rem;
}

.ml-9 {
  margin-left: 2.25rem;
}

.pr-9 {
  padding-right: 2.25rem;
}

.mr-9 {
  margin-right: 2.25rem;
}

.pa-9 {
  padding-top: 2.25rem;
  padding-left: 2.25rem;
  padding-bottom: 2.25rem;
  padding-right: 2.25rem;
}

.ma-9 {
  margin-top: 2.25rem;
  margin-left: 2.25rem;
  margin-bottom: 2.25rem;
  margin-right: 2.25rem;
}

.px-9 {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.mx-9 {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.py-9 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.my-9 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.ps-10 {
  padding-left: 2.5rem;
}

[dir=rtl] .ps-10 {
  padding-right: 2.5rem;
  padding-left: unset;
}

.ms-10 {
  margin-left: 2.5rem;
}

[dir=rtl] .ms-10 {
  margin-right: 2.5rem;
  margin-left: unset;
}

.pe-10 {
  padding-right: 2.5rem;
}

[dir=rtl] .pe-10 {
  padding-right: unset;
  padding-left: 2.5rem;
}

.me-10 {
  margin-right: 2.5rem;
}

[dir=rtl] .me-10 {
  margin-right: unset;
  margin-left: 2.5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.pa-10 {
  padding-top: 2.5rem;
  padding-left: 2.5rem;
  padding-bottom: 2.5rem;
  padding-right: 2.5rem;
}

.ma-10 {
  margin-top: 2.5rem;
  margin-left: 2.5rem;
  margin-bottom: 2.5rem;
  margin-right: 2.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.ps-11 {
  padding-left: 2.75rem;
}

[dir=rtl] .ps-11 {
  padding-right: 2.75rem;
  padding-left: unset;
}

.ms-11 {
  margin-left: 2.75rem;
}

[dir=rtl] .ms-11 {
  margin-right: 2.75rem;
  margin-left: unset;
}

.pe-11 {
  padding-right: 2.75rem;
}

[dir=rtl] .pe-11 {
  padding-right: unset;
  padding-left: 2.75rem;
}

.me-11 {
  margin-right: 2.75rem;
}

[dir=rtl] .me-11 {
  margin-right: unset;
  margin-left: 2.75rem;
}

.pt-11 {
  padding-top: 2.75rem;
}

.mt-11 {
  margin-top: 2.75rem;
}

.pb-11 {
  padding-bottom: 2.75rem;
}

.mb-11 {
  margin-bottom: 2.75rem;
}

.pl-11 {
  padding-left: 2.75rem;
}

.ml-11 {
  margin-left: 2.75rem;
}

.pr-11 {
  padding-right: 2.75rem;
}

.mr-11 {
  margin-right: 2.75rem;
}

.pa-11 {
  padding-top: 2.75rem;
  padding-left: 2.75rem;
  padding-bottom: 2.75rem;
  padding-right: 2.75rem;
}

.ma-11 {
  margin-top: 2.75rem;
  margin-left: 2.75rem;
  margin-bottom: 2.75rem;
  margin-right: 2.75rem;
}

.px-11 {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.mx-11 {
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}

.py-11 {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.my-11 {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

.ps-12 {
  padding-left: 3rem;
}

[dir=rtl] .ps-12 {
  padding-right: 3rem;
  padding-left: unset;
}

.ms-12 {
  margin-left: 3rem;
}

[dir=rtl] .ms-12 {
  margin-right: 3rem;
  margin-left: unset;
}

.pe-12 {
  padding-right: 3rem;
}

[dir=rtl] .pe-12 {
  padding-right: unset;
  padding-left: 3rem;
}

.me-12 {
  margin-right: 3rem;
}

[dir=rtl] .me-12 {
  margin-right: unset;
  margin-left: 3rem;
}

.pt-12 {
  padding-top: 3rem;
}

.mt-12 {
  margin-top: 3rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.pl-12 {
  padding-left: 3rem;
}

.ml-12 {
  margin-left: 3rem;
}

.pr-12 {
  padding-right: 3rem;
}

.mr-12 {
  margin-right: 3rem;
}

.pa-12 {
  padding-top: 3rem;
  padding-left: 3rem;
  padding-bottom: 3rem;
  padding-right: 3rem;
}

.ma-12 {
  margin-top: 3rem;
  margin-left: 3rem;
  margin-bottom: 3rem;
  margin-right: 3rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.ps-auto {
  padding-left: 0;
}

[dir=rtl] .ps-auto {
  padding-right: 0;
  padding-left: unset;
}

.ms-auto {
  margin-left: auto;
}

[dir=rtl] .ms-auto {
  margin-right: auto;
  margin-left: unset;
}

.pe-auto {
  padding-right: 0;
}

[dir=rtl] .pe-auto {
  padding-right: unset;
  padding-left: 0;
}

.me-auto {
  margin-right: auto;
}

[dir=rtl] .me-auto {
  margin-right: unset;
  margin-left: auto;
}

.pt-auto {
  padding-top: 0;
}

.mt-auto {
  margin-top: auto;
}

.pb-auto {
  padding-bottom: 0;
}

.mb-auto {
  margin-bottom: auto;
}

.pl-auto {
  padding-left: 0;
}

.ml-auto {
  margin-left: auto;
}

.pr-auto {
  padding-right: 0;
}

.mr-auto {
  margin-right: auto;
}

.pa-auto {
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.ma-auto {
  margin-top: auto;
  margin-left: auto;
  margin-bottom: auto;
  margin-right: auto;
}

.px-auto {
  padding-left: 0;
  padding-right: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.py-auto {
  padding-top: 0;
  padding-bottom: 0;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

/* Creating display classes for each of the values in the $display variable. */
.d-flex {
  display: flex;
}

.d-inline {
  display: inline;
}

.d-block {
  display: block;
}

.d-none, .hide {
  display: none;
}

/* Creating flex direction classes for each of the values in the $directions variable. */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

/* Creating a float class for each of the values in the $float variable. */
.float-none {
  float: none;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-inherit {
  float: inherit;
}

/* Creating a class for each of the values in the $flexProperties variable. */
.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.justify-space-between {
  justify-content: space-between;
}

.align-space-between {
  align-items: space-between;
}

.justify-space-around {
  justify-content: space-around;
}

.align-space-around {
  align-items: space-around;
}

/* Creating a class for each of the values in the $icon-sizes variable. */
.dda-icon-xs {
  font-size: 12px;
}

.dda-icon-sm {
  font-size: 16px;
}

.dda-icon-md {
  font-size: 24px;
}

.dda-icon-lg {
  font-size: 36px;
}

.dda-icon-xl {
  font-size: 40px;
}

/* Creating a class for each of the values in the $rounded variable. */
.rounded-0 {
  border-radius: 0;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded- {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 1.5rem;
}

.rounded-pill {
  border-radius: 9999px;
}

.rounded-circle {
  border-radius: 50%;
}

/* Creating a text decoration class for each of the values in the textDecration variable. */
.text-decoration-none {
  text-decoration: none;
}

.text-decoration-inherit {
  text-decoration: inherit;
}

/* Creating a text alignment class for each of the values in the textDecration variable. */
.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.text-align-center {
  text-align: center;
}

.text-align-justify {
  text-align: justify;
}

.position-static {
  position: static;
}

.position-sticky {
  position: sticky;
}

.position-fixed {
  position: fixed;
}

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-pointer {
  cursor: pointer;
}

/* More Common classes */
.body-content {
  padding-top: 155px;
  /*background: #F9FAFC;*/
}

.width-100,
.w-100 {
  width: 100%;
}

.height-100 {
  height: 100%;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only, .screen-reader-text {
  background: rgba(0, 0, 0, 0.1);
}

.icon-32 {
  width: 32px;
}

.text-h1 {
  font-size: calc(30px + 6 * (100vw - 576px) / 192);
  font-weight: bold;
  line-height: 0.56;
}

.text-h2 {
  font-size: calc(30px + 0 * (100vw - 576px) / 192);
  font-weight: bold;
  line-height: 0.67;
}

.text-h3 {
  font-size: calc(24px + 0 * (100vw - 576px) / 192);
  font-weight: bold;
  line-height: 0.83;
}

.text-h4 {
  font-size: calc(20px + 0 * (100vw - 576px) / 192);
  font-weight: 500;
  line-height: 1;
}

.text-h5 {
  font-size: calc(18px + 0 * (100vw - 576px) / 192);
  font-weight: 500;
  line-height: 1.11;
}

.text-h6 {
  font-size: calc(16px + 0 * (100vw - 576px) / 192);
  font-weight: normal;
  line-height: 1.25;
}

.text-body-1 {
  font-size: calc(14px + 0 * (100vw - 576px) / 192);
  font-weight: normal;
  line-height: 1.43;
}

.text-body-2 {
  font-size: calc(13px + 0 * (100vw - 576px) / 192);
  font-weight: normal;
}

.text-caption {
  font-size: calc(12px + 0 * (100vw - 576px) / 192);
  font-weight: normal;
  line-height: 1.67;
}

/* Sticky Bar */
.dda-footer {
  transition: bottom 0.3s;
  height: 60px;
  position: fixed;
  bottom: 0;
  width: 100%;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.8666666667);
  z-index: 100000;
}

.dda-footer .dda-icon-sm {
  position: relative;
  top: -1px;
}

.dda-footer__section-btn {
  border: 0;
  background: none;
  width: 64px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.dda-footer__section-btn:hover {
  transform: translateY(-2px);
}

.dda-footer__section--bordered {
  border-right: 1px solid #e8e8e8;
}

[dir=rtl] .dda-footer__section--bordered {
  border-right: unset;
  border-left: 1px solid #e8e8e8;
  /*padding-left: 10px;*/
  padding-left: 0;
}

.dda-footer__section-links--right {
  gap: 0.6rem;
}

.dda-footer__section-links--right .dda-footer__section-link:hover {
  color: var(--primary);
}

.dda-footer__section-links--right .dda-footer__section-link:hover i,
.dda-footer__section-links--right .dda-footer__section-link:hover i:before {
  color: var(--primary);
}

.dda-footer__icon-wrapper .icon-mail:before {
  font-size: 12px;
  position: relative;
  top: -3px;
}

.dda-footer__section-link {
  text-decoration: none;
  color: var(--secondary);
  font-size: 16px;
  transition: transform 0.2s ease-in-out;
}

.dda-footer__section-link:hover {
  transform: translateY(-2px);
}

.dda-footer__section-link--sm {
  font-size: 16px;
}

.dda-footer__section-link--md {
  font-size: 16px;
  padding-right: 1rem;
}

[dir=rtl] .dda-footer__section-link--md {
  padding-left: 0.75rem;
  margin-right: 0;
}

.dda-footer__section-link .icon-apps {
  font-size: 26px;
}

.dda-footer__section-link .icon-mail {
  font-size: 16px;
}

/* body.home .dda-footer__section-btn i,
body.home .dda-footer__section-btn i::before {
    color: #008954;
}

body.home .dda-footer__section-link {
    color: #008954;
}

body.home .dda-footer__section-link .primary--text {
    color: #008954;
}

body.home .dda-footer__section-link i,
body.home .dda-footer__section-link i::before {
    color: #008954;
} */
body.home .dda-footer__icon-04 {
  display: none;
}

.dda-footer__icon-04--green {
  display: none;
}

body.home .dda-footer__icon-04--green {
  display: block;
}

.dda-footer__chat-btn {
  width: 100%;
  margin-right: 10px;
}

.dda-footer__chat-btn i {
  font-size: 26px;
}

.dda-footer__chat-btn.active i:before {
  content: "\e90c";
}

.dda-footer--hidden {
  bottom: -100px;
}

[dir=rtl] .dda-footer__chat-btn {
  margin-right: 0;
  margin-left: 10px;
}

.ai-icon {
  align-self: center;
  padding-top: 5px;
}

/* Chatbot */
.chat-popup {
  position: absolute;
  bottom: 60px;
  right: 10px;
  padding: 0.5rem 1rem;
  width: 370px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1333333333);
}

[dir=rtl] .chat-popup {
  right: unset;
  left: 0;
}

.chat-popup__links {
  display: flex;
  flex-direction: column;
}

.chat-popup__link {
  color: inherit;
  text-decoration: none;
  padding: 14px 14px 14px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[dir=rtl] .chat-popup__link {
  padding: 14px 5px 14px 14px;
}

.chat-popup__link:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1333333333);
}

/* Header */
body.home .dda-header-container {
  height: 170px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 3;
  background-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0));
}

body.home .dda-header-container.whiteBar {
  height: 95px;
}

.dda-main-header {
  height: 100px;
  position: fixed;
  width: 100%;
  z-index: 3;
  padding: 0 5px 0 10px;
  top: 0;
}

.dda-header-container {
  position: relative;
  z-index: 100000;
}

.dda-header-container .skip-to-main {
  position: fixed;
  top: 10px;
  left: -99999px;
  z-index: 9;
  padding: 15px 20px;
  text-decoration: none;
  color: inherit;
}

.dda-header-container .skip-to-main:focus {
  left: 50%;
  transform: translateX(-50%);
}

body.home .dda-main-header {
  background-color: rgba(0, 0, 0, 0);
}

.dda-main-header__logo {
  width: 100%;
  object-fit: contain;
  max-width: 200px;
  height: auto;
  margin-top: 5px;
}

body.home .dda-main-header__logo {
  filter: brightness(0) invert(1);
}

.dda-main-header__logo--white {
  display: none;
  max-width: 135px;
}

body.home .dda-main-header__logo--white {
  display: block;
}

.dda-main-header__gov-logo {
  width: 100%;
  object-fit: contain;
  background-image: url(../images/govtLogo-new.svg);
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 160px;
  height: 70px;
  background-position: inherit;
}

body.home .dda-main-header__gov-logo {
  background-image: url("../images/govtLogo-new-white.svg");
}

.dda-main-header__dropdown-icon {
  margin-right: 20px;
  background: none;
  border: 0;
}

body.home .dda-main-header__dropdown-icon {
  margin-right: -20px;
}

body.home .dda-main-header__dropdown-icon i::before {
  color: #fff;
}

.dda-main-header__separator {
  width: 1px;
  height: 49px;
  opacity: 0.1;
  border-right: solid 1px #000;
}

/* .dda-sub-header__navbar .menu-main-menu-container>ul>li>a:hover::after, */
.dda-sub-header__navbar .menu-main-menu-container > ul > li.current-menu-item > a::after,
.dda-sub-header__navbar .menu-main-menu-container > ul > li.current-menu-item > a::after,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li.current-menu-item > a::after,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li.current-menu-item > a::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  top: calc(100% + 5px);
  height: 5px;
  background: var(--primary) !important;
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  opacity: 1 !important;
}

.dda-sub-header__navbar .menu-main-menu-container > ul > li > a:hover:after,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li > a:hover:after,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-container > ul > li > a:hover:after {
  /* text-stroke: 0.3px var(--primary);
  -webkit-text-stroke: 0.3px var(--primary); */
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  top: calc(100% + 5px);
  height: 5px;
  background: var(--secondary);
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  opacity: 0.3;
}

/* body.home .dda-sub-header__navbar .menu-main-menu-container>ul>li>a:hover::after,
.dda-sub-header__navbar body.home .menu-main-menu-container>ul>li>a:hover::after, */
body.home .dda-sub-header__navbar .menu-main-menu-container > ul > li > a.active::after,
.dda-sub-header__navbar body.home .menu-main-menu-container > ul > li > a.active::after,
body.home .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li > a:focus::after,
.dda-sub-header__navbar body.home .menu-main-menu-arabic-container > ul > li > a:focus::after,
body.home .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li.current-menu-item > a::after,
body.home .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li.current-menu-item > a::after,
body.home .dda-sub-header__navbar .menu-main-menu-container > ul > li.current-menu-item > a::after,
body.home .dda-sub-header__navbar .menu-main-menu-container > ul > li.current-menu-item > a::after {
  background: #fff !important;
}

body.home .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li > a:hover:after,
.dda-sub-header__navbar body.home .menu-main-menu-arabic-container > ul > li > a:hover:after,
body.home .dda-sub-header__navbar .menu-main-menu-container > ul > li > a:hover:after,
.dda-sub-header__navbar body.home .menu-main-menu-container > ul > li > a:hover:after {
  /* text-stroke: 0.3px #fff;
  -webkit-text-stroke: 0.3px #fff; */
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  top: calc(100% + 5px);
  height: 5px;
  background: #fff;
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  opacity: 0.3;
}

.dda-sub-header {
  --menu-height: 60px;
  height: var(--menu-height);
  position: fixed;
  top: 95px;
  width: 100%;
  z-index: 1;
  transition: top 0.3s;
}

body.home .dda-sub-header {
  background-color: transparent;
}

.dda-sub-header--hidden {
  top: -100px;
  z-index: 0;
}

.dda-sub-header__navbar {
  flex: 1;
  max-width: 65%;
  justify-content: flex-start;
}

.dda-sub-header__navbar .menu-main-menu-container,
.dda-sub-header__navbar .menu-main-menu-arabic-container {
  box-sizing: border-box;
  flex: 1;
}

.dda-sub-header__navbar .menu-main-menu-container ul,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul {
  list-style: none;
  padding: 16px;
  margin: 0 auto;
}

.dda-sub-header__navbar .menu-main-menu-container ul li,
.dda-sub-header__navbar .menu-main-menu-container ul li a,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul li,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul li a {
  color: #3A3F57;
  cursor: pointer;
  transition: 200ms;
  text-decoration: none;
  white-space: nowrap;
}

.dda-sub-header__navbar .menu-main-menu-container ul li a:hover,
.dda-sub-header__navbar .menu-main-menu-container ul li a:hover .secondary--tex,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul li a:hover,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul li a:hover .secondary--text {
  color: var(--secondary);
}

.dda-sub-header__navbar .menu-main-menu-container ul li.current-menu-item a,
.dda-sub-header__navbar .menu-main-menu-container ul li.current-menu-item a,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul li.current-menu-item a,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul li.current-menu-item a {
  color: var(--primary);
  font-weight: 300;
}

.dda-sub-header__navbar .menu-main-menu-container ul li a,
.dda-sub-header__navbar .menu-main-menu-container ul li a a,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul li a,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul li a a {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.dda-sub-header__navbar .menu-main-menu-container ul li,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul li {
  margin-right: 36px;
}

.dda-sub-header__navbar .menu-main-menu-container ul li::before,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul li::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 10px;
  top: 40%;
  transform: translateY(-50%);
}

[dir=rtl] .dda-sub-header__navbar .menu-main-menu-container ul li::before,
[dir=rtl] .dda-sub-header__navbar .menu-main-menu-arabic-container ul li::before {
  left: 10px;
  right: unset;
}

.dda-sub-header__navbar .menu-main-menu-container ul .link::before,
.dda-sub-header__navbar .menu-main-menu-arabic-container ul .link::before {
  padding-right: 0;
  display: none;
}

[dir=rtl] .dda-sub-header__navbar .menu-main-menu-container ul .link::before,
[dir=rtl] .dda-sub-header__navbar .menu-main-menu-arabic-container ul .link::before {
  padding-right: unset;
  padding-left: 0;
}

.dda-sub-header__navbar .menu-main-menu-container > ul,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul {
  display: flex;
  height: var(--menu-height);
  align-items: center;
}

.dda-sub-header__navbar .menu-main-menu-container > ul li,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul li {
  position: relative;
  margin: 0 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  line-height: 2.67;
}

/*.dda-sub-header__navbar .menu-main-menu-arabic-container>ul li  {
    margin: 0 10px;
    font-size: 15px;
}*/
.dda-sub-header__navbar .menu-main-menu-container > ul li:hover,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul li:hover {
  color: var(--primary);
}

.dda-sub-header__navbar .menu-main-menu-container > ul li.active,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul li.active {
  color: var(--primary);
}

.dda-sub-header__navbar .menu-main-menu-container > ul li ul,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul li ul {
  visibility: hidden;
  opacity: 0;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 0 20px 0 rgba(183, 183, 183, 0.3);
  /*min-width: 384px;*/
  min-width: 365px;
  background: #fff;
  color: #1A1A1A;
  position: absolute;
  top: calc(var(--menu-height) - 5px);
  transition: 200ms;
  transition-delay: 200ms;
}

.dda-sub-header__navbar .menu-main-menu-container > ul li ul li {
  /* margin: 0;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  font-weight: normal; */
}

.dda-sub-header__navbar .menu-main-menu-container > ul li ul li::before {
  /* width: 8px;
  height: 8px;
  border: solid var(--primary);
  border-width: 0 3px 3px 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); */
}

[dir=rtl] .dda-sub-header__navbar .menu-main-menu-container > ul li ul li::before {
  /* transform: rotate(135deg);
  -webkit-transform: rotate(135deg); */
}

.dda-sub-header__navbar .menu-main-menu-container > ul li ul li ul,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul li ul li ul {
  top: -2%;
  left: calc(100% + 14px);
  transform: translate(0);
}

[dir=rtl] .dda-sub-header__navbar .menu-main-menu-container > ul li ul li ul,
[dir=rtl] .dda-sub-header__navbar .menu-main-menu-arabic-container > ul li ul li ul {
  left: unset;
  right: calc(100% + 14px);
}

.dda-sub-header__navbar .menu-main-menu-container > ul li ul li:hover,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul li ul li:hover {
  color: var(--primary);
  background: #F2EBFF;
  border-radius: 8px;
}

.dda-sub-header__navbar .menu-main-menu-container > ul li ul li:hover > a,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul li ul li:hover > a {
  /*text-shadow: 0px 0px 1px var(--primary);*/
  color: var(--primary);
}

.dda-sub-header__navbar .menu-main-menu-container > ul li:hover > ul,
.dda-sub-header__navbar .menu-main-menu-container > ul li > .active + ul,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul li:hover > ul,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul li > .active + ul {
  opacity: 1;
  visibility: visible;
  transition-delay: 0ms;
}

/*.dda-sub-header__navbar ul > li > ul.showMenu{
    opacity: 1!important;
    visibility: visible!important;
    /* transition-delay: 0ms; 
}*/
.dda-sub-header__navbar .menu-main-menu-container > ul > li > a,
.dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li > a {
  justify-content: center;
  font-weight: 300;
}

body.home .dda-sub-header__navbar .menu-main-menu-container > ul > li > a,
body.home .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li > a {
  color: #fff;
}

/* About Us Menu */
/*
.about-menu ul.sub-menu li {
    position: relative;
    margin: 0 16px;
    font-size: 16px;
    display: inline-block;
    align-items: center;
    vertical-align: top;
    line-height: 2;
    width: 25%; 
}
.about-menu ul.sub-menu li:nth-child(odd){
    width:25%;
    margin-right: 25%;
}
[dir="rtl"] .about-menu ul.sub-menu li:nth-child(odd){
    margin-right: 0;
    margin-left: 25%;
}
.about-menu ul.sub-menu {
    visibility: hidden;
    opacity: 0;
    padding: 16px 16px 25px!important;
    /* transition: 200ms;
    transition-delay: 200ms; 
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.04) !important;
    width: 100%;
    position: fixed !important;
    left: 0;
    top: 140px !important;
    max-height: calc(100% - 200px);
    overflow: auto;
    margin: 0 auto;
    max-width: 1320px;
    right: 0;
    overflow: hidden;
    white-space: normal;
}*/
.about-menu .sub-menu .about-header {
  pointer-events: none;
  width: 100% !important;
  display: block;
}

.about-menu .sub-menu .about-header h3 {
  margin: 20px 0 20px;
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  padding: 0;
  color: var(--secondary);
}

.about-menu .sub-menu li a {
  padding: 10px;
}

.about-menu .sub-menu > li.menu-item-has-children > a:after {
  content: "";
  font-family: "icomoon";
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  font-size: 25px;
  margin-right: 10px;
  display: none;
  background-image: url(/wp-content/themes/dubaimunicipality/assets/images/caretRight_About.png);
}

.about-menu .sub-menu > li.menu-item-has-children:hover > a:after {
  background-image: url(/wp-content/themes/dubaimunicipality/assets/images/caretRight_AboutH.png);
}

.about-menu .sub-menu > li.menu-item-has-children > a:after {
  display: block;
}

[dir=rtl] .about-menu .sub-menu > li.menu-item-has-children > a:after {
  margin-right: 0;
  margin-left: 10px;
  transform: rotate(180deg);
  right: auto;
  left: 0;
}

.about-menu .sub-menu .about-header a:before {
  display: none;
}

.about-menu .sub-menu .about-img,
.about-menu .sub-menu .about-menu-descr {
  pointer-events: none;
  position: absolute;
  width: auto !important;
  margin: 0 !important;
}

.about-menu .sub-menu .about-img a:before,
.about-menu .sub-menu .about-menu-descr a:before {
  display: none;
}

.about-menu .sub-menu .about-img {
  bottom: 170px;
  margin: 0;
  right: 380px;
}

[dir=rtl] .about-menu .sub-menu .about-img {
  left: 380px;
  right: initial;
}

.about-menu .sub-menu .about-menu-descr {
  bottom: 15px;
  right: 50px;
}

[dir=rtl] .about-menu .sub-menu .about-menu-descr {
  right: initial;
  left: 50px;
}

.about-menu .sub-menu .about-menu-descr a {
  display: block;
  white-space: normal;
}

.about-menu .sub-menu .about-img img {
  max-width: 170px;
}

.about-menu .sub-menu .about-menu-descr p {
  width: 500px;
  font-weight: normal;
}

.sidenav ul.mobile-menu {
  padding: 0;
  margin: 0;
}

.dda-sub-header__actions .search .search__input {
  width: 100px;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.dda-sub-header__actions .search .search__input:focus {
  width: 248px;
  outline: none;
  box-shadow: 0 0 0 0.125rem var(--primary);
}

.dda-sub-header__actions a {
  text-decoration: none;
  color: #3B3F54;
}

.dda-sub-header__mobile-actions {
  display: none;
}

.dda-sub-header__mobile-action {
  display: flex;
  background: none;
  border: 0;
  cursor: pointer;
}

body.home .dda-sub-header__mobile-action i {
  color: #fff;
}

.dda-sub-header__mobile-action.active > i:before {
  content: "\e90c";
}

.dda-sub-header__logo {
  display: none;
  width: 160px;
  cursor: pointer;
}

.dda-sub-header__logo--white {
  display: none;
}

.dda-sub-header__navbar-toggle {
  background: none;
  border: 0;
}

.dda-sub-header__btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #f5f5f5;
  border: 0;
  font-size: 16px;
}

.dda-sub-header__btn i {
  font-size: 20px;
}

body.home .dda-sub-header__btn {
  /*background: #ffffff22;*/
  color: #fff;
  background: rgba(0, 0, 0, 0.0392156863);
}

body.home .dda-sub-header__btn i {
  color: #fff;
}

.dda-sub-header__btn:hover,
.dda-sub-header__btn:focus {
  color: var(--primary);
}

.dda-sub-header__btn:hover i,
.dda-sub-header__btn:focus i {
  color: var(--primary);
}

.dda-sub-header__btn.active i {
  color: var(--primary);
}

.dda-sub-header__profile {
  border: 2px solid var(--primary);
}

.dda-sub-header__profile-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.dda-sub-header__locale {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: unset;
  padding: 0 16px;
  border-radius: 20px;
}

[dir=rtl] .dda-sub-header__locale {
  font-weight: normal;
}

.dda-sub-header__profile-btn {
  width: unset;
  padding-left: 8px;
  padding-right: 16px;
  border-radius: 20px;
  gap: 10px;
}

[dir=rtl] .dda-sub-header__profile-btn {
  flex-direction: row-reverse;
  padding-left: 16px;
  padding-right: 8px;
}

.dda-sub-header__mega-menu {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.04) !important;
  width: 100%;
  position: fixed !important;
  left: 0;
  top: 170px !important;
  max-height: calc(100% - 200px);
  overflow: auto;
  margin: 0 auto;
  right: 0;
}

.dda-sub-header .icon-menu {
  display: block;
}

body.home .dda-sub-header .icon-menu {
  /* background: #ffffff22; */
  color: #fff;
}

.dda-sub-header__actions {
  display: flex;
  gap: 15px;
  position: relative;
  bottom: -1px;
}

.dda-sub-header__actions .search,
.dda-side-nav .search {
  position: relative;
}

.dda-sub-header__actions .search i,
.dda-side-nav .search i {
  position: absolute;
  left: 12px;
  top: 10px;
  font-size: 20px;
}

body.home .dda-sub-header__actions .search i,
.dda-sub-header__actions body.home .search i,
body.home .dda-side-nav .search i,
.dda-side-nav body.home .search i {
  color: #fff;
}

body.home .whiteBar .dda-main-header,
body.home .whiteBar .dda-sub-header {
  background-color: #fff !important;
}

[dir=rtl] .dda-sub-header__actions .search i,
.dda-sub-header__actions [dir=rtl] .search i,
[dir=rtl] .dda-side-nav .search i,
.dda-side-nav [dir=rtl] .search i {
  left: unset;
  right: 15px;
}

.dda-sub-header__actions .search .search__input,
.dda-side-nav .search .search__input {
  height: 40px;
  text-indent: 10px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 50px;
  margin-left: 16px;
  padding-left: 24px;
  padding-right: 12px;
  font-size: 16px;
}

body.home .dda-sub-header__actions .search .search__input,
.dda-sub-header__actions body.home .search .search__input,
body.home .dda-side-nav .search .search__input,
.dda-side-nav body.home .search .search__input {
  background-color: rgba(255, 255, 255, 0.1333333333);
}

[dir=rtl] .dda-sub-header__actions .search .search__input,
.dda-sub-header__actions [dir=rtl] .search .search__input,
[dir=rtl] .dda-side-nav .search .search__input,
.dda-side-nav [dir=rtl] .search .search__input {
  margin-left: unset;
  margin-right: 16px;
  padding-left: 12px;
  padding-right: 24px;
}

.dda-sub-header__actions .search .search__input::placeholder,
.dda-side-nav .search .search__input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #1A1A1A;
  opacity: 1;
  /* Firefox */
}

body.home .dda-sub-header__actions .search .search__input::placeholder,
.dda-sub-header__actions body.home .search .search__input::placeholder,
body.home .dda-side-nav .search .search__input::placeholder,
.dda-side-nav body.home .search .search__input::placeholder {
  color: #fff;
}

.dda-sub-header__actions .search .search__input:-ms-input-placeholder,
.dda-side-nav .search .search__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #1A1A1A;
}

body.home .dda-sub-header__actions .search .search__input:-ms-input-placeholder,
.dda-sub-header__actions body.home .search .search__input:-ms-input-placeholder,
body.home .dda-side-nav .search .search__input:-ms-input-placeholder,
.dda-side-nav body.home .search .search__input:-ms-input-placeholder {
  color: #fff;
}

.dda-sub-header__actions .search .search__input::-ms-input-placeholder,
.dda-side-nav .search .search__input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #1A1A1A;
}

body.home .dda-sub-header__actions .search .search__input::-ms-input-placeholder,
.dda-sub-header__actions body.home .search .search__input::-ms-input-placeholder,
body.home .dda-side-nav .search .search__input::-ms-input-placeholder,
.dda-side-nav body.home .search .search__input::-ms-input-placeholder {
  color: #fff;
}

/* White Menu for home page */
body.home .whiteBar.dda-header-container {
  background-image: none;
  background-color: #fff;
}

body.home .whiteBar .dda-main-header__gov-logo {
  background-image: url(../images/govtLogo-new.svg);
  max-width: 160px;
  height: 70px;
  background-position: inherit;
}

body.home .whiteBar .dda-main-header__logo {
  filter: none;
}

body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-container > ul > li.current-menu-item > a::after,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-container > ul > li.current-menu-item > a::after,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-container > ul > li > a:hover::after,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li.current-menu-item > a::after,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li.current-menu-item > a::after,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li > a:hover::after {
  background: var(--primary) !important;
}

body.home .whiteBar .addsearch-searchfield input[type=search].icon {
  color: var(--primary);
  background-color: #f5f5f5;
}

body.home .whiteBar .dda-sub-header__actions a,
body.home .whiteBar .dda-sub-header__btn i,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-container > ul > li > a,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li > a,
body.home .whiteBar .dda-sub-header .icon-menu,
body.home .whiteBar .dda-sub-header__actions .search i {
  color: #3B3F54;
}

body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-container > ul > li > a:hover,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li > a:hover,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-container > ul > li.current-menu-item > a,
body.home .whiteBar .dda-sub-header__navbar .menu-main-menu-arabic-container > ul > li.current-menu-item > a {
  color: var(--primary);
}

body.home .whiteBar .dda-sub-header__btn {
  background: #f5f5f5;
}

body.home .whiteBar .dda-sub-header__actions .search .icon::placeholder {
  color: #3B3F54;
}

.dda-sub-header__actions .search .icon::placeholder {
  color: #3B3F54;
}

.dda-sub-header__actions .search .icon {
  width: 110px;
}

/* Side Navigaton */
.dda-side-nav {
  transition: top 0.3s;
  width: 376px;
  top: 0;
  left: 0;
  bottom: 0;
  position: fixed;
  box-shadow: 0 0 20px 0 rgba(183, 183, 183, 0.3);
  background-color: #fff;
  z-index: 10;
  /* Style the sidenav links and the dropdown button */
  /* On mouse-over */
  /* Main content */
  /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
}

[dir=rtl] .dda-side-nav {
  left: unset;
  right: 0;
}

.dda-side-nav__quick-links {
  display: none;
  gap: 12px;
}

.dda-side-nav__quick-link-btn {
  border: 0;
  font-size: 16px;
  color: inherit;
  text-decoration: none;
  padding: 12px 17px;
  border-radius: 30px;
}

.dda-side-nav__quick-link-btn i {
  font-size: 20px;
}

.dda-side-nav__access-btn {
  padding: 10px;
}

.dda-side-nav__profile-btn {
  padding: 10px 14px;
  gap: 10px;
}

.dda-side-nav__content {
  overflow: auto;
}

.dda-side-nav__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(8px);
  height: 128px;
}

.dda-side-nav__footer-logo {
  width: 90px;
}

.dda-side-nav__close-btn {
  position: absolute;
  top: 6px;
  right: 4px;
  background: none;
  border: 0;
  font-size: 1.5rem;
  z-index: 10;
  color: #999999;
  cursor: pointer;
}

.dda-side-nav__close-btn:hover {
  color: var(--primary);
}

[dir=rtl] .dda-side-nav__close-btn {
  right: unset;
  left: 6px;
}

.dda-side-nav__title {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
}

.dda-side-nav .search {
  margin-right: 16px;
}

[dir=rtl] .dda-side-nav .search {
  margin-right: unset;
  margin-left: 16px;
}

body.home .dda-side-nav .search .search__input {
  background-color: #cccccc;
}

.dda-side-nav .search i {
  left: 10px;
}

[dir=rtl] .dda-side-nav .search i {
  left: unset;
  right: 10px;
}

.dda-side-nav .search__input {
  margin-left: 0 !important;
  width: 100%;
}

[dir=rtl] .dda-side-nav .search__input {
  margin-left: unset !important;
  margin-right: 0 !important;
}

.dda-side-nav .sidenav a,
.dda-side-nav .dropdown-btn {
  padding: 3px 0;
  text-decoration: none;
  font-size: 16px;
  color: var(--secondary);
  line-height: 2.67;
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1333333333);
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[dir=rtl] .dda-side-nav .sidenav a,
[dir=rtl] .dda-side-nav .dropdown-btn {
  text-align: unset;
}

.dda-side-nav .sidenav {
  margin-bottom: 40px;
}

.dda-side-nav .sidenav a:hover,
.dda-side-nav .sidenav a.active,
.dda-side-nav .dropdown-btn:hover,
.dda-side-nav .active {
  color: var(--primary);
  /*box-shadow: 0 2px 0 0 var(--primary);
  border-bottom-color: transparent;*/
}

.dda-side-nav .sidenav a:hover i::before,
.dda-side-nav .sidenav a.active i::before,
.dda-side-nav .dropdown-btn:hover i::before,
.dda-side-nav .active i::before {
  color: var(--primary) !important;
}

.dda-side-nav .sidenav .mobile-menu-container a.active,
.dda-side-nav .mobile-menu-container .active {
  color: var(--secondary);
  box-shadow: unset;
}

.dda-side-nav .sidenav .mobile-menu-container a.active i::before,
.dda-side-nav .mobile-menu-container .active i::before {
  color: var(--secondary) !important;
}

.dda-side-nav .main {
  margin-left: 200px;
  /* Same as the width of the sidenav */
  font-size: 16px;
  /* Increased text to enable scrolling */
  padding: 0px 10px;
}

.dda-side-nav .dropdown-container {
  border-radius: 8px;
  display: none;
  padding-left: 24px;
}

.dda-side-nav .mobile-menu-container .dropdown-container {
  padding-left: 10px;
}

.dda-side-nav .dropdown-container a {
  margin-top: 4px;
}

[dir=rtl] .dda-side-nav .dropdown-container {
  padding-left: 0;
  padding-right: 24px;
}

.dda-side-nav .dropdown-btn i {
  font-size: 1.5rem;
}

.dda-side-nav .dropdown-btn i::before {
  color: #818181;
}

[dir=rtl] .dda-side-nav .dropdown-btn i {
  transform: rotate(180deg);
}

[dir=rtl] .dda-side-nav .dropdown-btn.active .icon-arrows-right {
  transform: rotate(0deg);
}

.dda-side-nav .dropdown-btn.active .icon-arrows-right:before {
  content: "\e905";
}

.dda-side-nav .dropdown-btn:hover i::before {
  color: var(--primary);
}

[dir=rtl] .dda-side-nav .dropdown-btn i {
  transform: rotate(180deg);
}

[dir=rtl] .dda-side-nav .dropdown-btn.active .icon-arrows-right {
  transform: rotate(0deg);
}

.mobile-search {
  padding: 16px 32px;
}

.mobile-search__box {
  position: relative;
}

.mobile-search__icon-search {
  position: absolute;
  left: 8px;
  top: 8px;
}

[dir=rtl] .mobile-search__icon-search {
  left: inherit;
  right: 8px;
}

.mobile-search__input {
  height: 40px;
  width: 100%;
  text-indent: 10px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 50px;
  padding-left: 27px;
  padding-right: 12px;
}

.mobile-search__tag-btn {
  background: #f5f5f5;
  border-radius: 5px;
  border: transparent;
  color: #1A1A1A;
  padding: 4px 15px;
  font-size: 16px;
  margin-bottom: 5px;
}

.mobile-search__filters {
  display: flex;
  flex-wrap: wrap;
}

.mobile-search__filter {
  flex: 50%;
}

.mobile-search__filter-label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 16px;
  height: 23px;
}

[dir=rtl] .mobile-search__filter-label {
  padding-left: 0;
  padding-right: 30px;
}

.mobile-search__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 2px solid var(--primary);
  border-radius: 5px;
}

[dir=rtl] .mobile-search__checkmark {
  right: 0;
}

.mobile-search__checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-search__filter-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.mobile-search__filter-checkbox:focus ~ .mobile-search__checkmark {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

.mobile-search__filter-checkbox:checked ~ .mobile-search__checkmark {
  background-color: var(--primary);
}

.mobile-search__filter-checkbox:checked ~ .mobile-search__checkmark:after {
  display: block;
}

/* ight Top Bar - Login, Profile, Accessibility and respectve popups by DDA */
.dda-login-section {
  position: absolute;
  right: 0;
  top: 45px;
  width: 348px;
  height: 401px;
  padding: 36px 24px 24px;
  border-radius: 8px;
  background-color: #fff;
  margin-top: 8px;
}

[dir=rtl] .dda-login-section {
  right: unset;
  left: 0;
}

.dda-login-section__input {
  background: #f5f5f5;
  height: 48px;
  border-radius: 1.5rem;
  width: 100%;
  border: none;
  text-indent: 12px;
}

.dda-login-section__input:focus {
  outline: none;
  box-shadow: 0 0 0 0.125rem var(--primary);
}

.dda-login-section input[type=checkbox]:checked {
  background-color: var(--primary);
}

.dda-login-section input[type=checkbox]:checked:after {
  content: "✓";
  color: white;
}

.dda-login-section input[type=checkbox] {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 20px !important;
  height: 20px !important;
  appearance: none;
  border-radius: 50%;
  border: 3px solid var(--primary);
  box-shadow: none;
  font-size: 16px;
}

.dda-login-section__link {
  color: #000;
  text-decoration: none;
}

.dda-profile-section {
  width: 348px;
  padding-right: 25px;
  padding-left: 25px;
  right: 0;
  top: 45px;
}

.dda-profile-section__header {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 61px;
}

.dda-profile-section__listItem {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 48px;
}

.dda-profile-section__listItem--bordered {
  border-bottom: solid 1px #e8e8e8;
}

.dda-accessibility-section {
  padding: 44px 49px 43px 64px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 0 20px 0 rgba(183, 183, 183, 0.3);
  display: flex;
  overflow: auto;
}

.dda-accessibility-section__fieldset {
  border: 0;
}

.dda-accessibility-section__radio {
  width: 20px;
  height: 20px;
  position: relative;
  appearance: none;
}

[dir=rtl] .dda-accessibility-section__radio {
  margin-right: unset;
  margin-left: 10px;
}

.dda-accessibility-section__spacer {
  margin-left: 20px;
}

[dir=rtl] .dda-accessibility-section__spacer {
  margin-right: 20px;
  margin-left: unset;
}

.dda-accessibility-section__radio::after,
.dda-accessibility-section__radio::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0px;
  left: 0px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.dda-accessibility-section__radio::before {
  width: 12px;
  height: 12px;
  left: 4px;
  top: 4px;
  border-color: transparent !important;
}

.dda-accessibility-section__radio:checked::before {
  border-color: var(--primary);
  background-color: var(--primary);
}

.dda-accessibility-section__radio:checked::after {
  border-color: var(--primary);
}

.dda-accessibility-section__center-section {
  padding-left: 64px;
  padding-right: 64px;
  border-right: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}

.dda-accessibility-section__screen-reader-btn {
  width: 100%;
  max-width: 153px;
  height: auto;
}

.dda-accessibility-section p {
  max-width: 200px;
}

.dda-accessibility-section__text-size-btn {
  width: 48px;
  height: 48px;
  padding: 13px 17px;
  background-color: #e8f6fc;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.dda-accessibility-section__text-size-btn--big {
  font-size: 24px;
}

.dda-accessibility-section__text-size-btn--active {
  border: 3px solid var(--primary);
}

.dda-accessibility-section-wrapper {
  width: 938px;
  right: 0;
  top: 54px;
}

[dir=rtl] .dda-accessibility-section-wrapper {
  left: 0;
  right: unset;
}

.entities-list {
  width: 340px;
  height: 511px;
  border-radius: 12px;
  box-shadow: 0 0 20px 0 rgba(183, 183, 183, 0.3);
  background-color: #fff;
  overflow: scroll;
  top: 80px;
  right: -20px;
}

.entities-list__group {
  list-style: none;
  padding: 0;
}

.entities-list__item {
  height: 90px;
  justify-content: flex-end;
}

.entities-list__item:not(:last-child) {
  border-bottom: solid 1px #f5f5f5;
}

[dir=rtl] .entities-list__item {
  justify-content: flex-end;
}

.entities-list__img {
  transition: all 0.2s ease-in-out;
  max-height: 50px;
}

.entities-list__img:hover {
  transform: scale(1.1);
}

.entities-list .search {
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 21px;
}

.entities-list .search i {
  position: absolute;
  left: 34px;
  top: 31px;
}

[dir=rtl] .entities-list .search i {
  left: unset;
  right: 34px;
}

.entities-list .search .search__input {
  height: 40px;
  width: 100%;
  text-indent: 12px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 50px;
  padding-left: 24px;
  padding-right: 24px;
}

[dir=rtl] .entities-list .search .search__input {
  margin-left: unset;
  margin-right: 16px;
  padding-left: 12px;
  padding-right: 24px;
}

.entities-list .search .search__input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #1A1A1A;
  opacity: 1;
  /* Firefox */
}

.entities-list .search .search__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #1A1A1A;
}

.entities-list .search .search__input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #1A1A1A;
}

.entities-list .search .search__input:focus {
  outline: none;
  box-shadow: 0 0 0 0.125rem var(--primary);
}

/* Sub Menus in Top Bar */
.mega-menu-1 {
  width: 100%;
  background-color: #fff;
}

.mega-menu-1__section {
  flex-basis: 25%;
  max-width: 310px;
}

.mega-menu-1__section--heading {
  font-weight: normal;
}

.mega-menu-1__section--list-item {
  border-bottom: solid 1px #f5f5f5;
}

.mega-menu-1__section--list-item:hover {
  background-color: #f4fbfd;
  border-radius: 12px;
}

.mega-menu-1__section--list-avatar {
  width: 40px;
  height: 40px;
  opacity: 0.1;
  border-radius: 12px;
  background-color: var(--primary);
}

.mega-menu-2 {
  width: 100%;
  padding: 30px 40px 30px;
  background-color: #fff;
}

.mega-menu-2 h3 {
  margin: 0 0 20px;
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  padding: 0 15px;
  color: var(--primary);
}

.mega-menu-2__section {
  /* flex-basis: 25%; */
  padding: 10px 10px 0;
  width: 30%;
  display: inline-block;
  vertical-align: top;
}

.mega-menu-2__section--heading {
  font-weight: normal;
  text-transform: uppercase;
}

.mega-menu-2__section--list-item {
  /* border-bottom: solid 1px #f5f5f5; */
}

.mega-menu-2__section--list-item a {
  /* border-bottom: solid 1px #f5f5f5; */
  margin-bottom: 1px;
}

.mega-menu-2__section--list-item a:hover,
.mega-menu-2__section--list-item a.active {
  background: #E3EDFA;
  border-radius: 8px;
  border-color: #E3EDFA;
}

.mega-menu-2__section--list-avatar {
  /* width: 40px;
  height: 40px;
  opacity: 0.1;
  border-radius: 12px;
  background-color: var(--primary); */
}

.mega-menu-2__section--list-avatar:before {
  content: "\e904";
  font-family: "icomoon";
}

[dir=rtl] .mega-menu-2__section--list-avatar:before {
  transform: rotate(180deg);
  display: inline-block;
}

.mega-menu-2__section.about-last {
  width: 40%;
  vertical-align: bottom;
}

.mega-menu-2__section.about-last img {
  width: 160px;
}

.mega-menu-2__section.about-last p {
  display: block;
  width: 100%;
  white-space: normal;
  color: var(--primary);
  line-height: 1.2;
  margin: 0;
}

.mega-menu-3 {
  width: 100%;
  background-color: #fff;
}

.mega-menu-3__section {
  flex-basis: 30%;
  padding-top: 40px;
}

.mega-menu-3__section--heading {
  font-weight: normal;
  text-transform: uppercase;
  margin-left: 62px;
}

.mega-menu-3__section--list-item {
  cursor: pointer;
  height: 94px;
}

.mega-menu-3__section--list-item:not(:last-child) {
  border-bottom: solid 1px #f5f5f5;
}

.mega-menu-3__section--list-item:hover {
  background-color: #f4fbfd;
  border-radius: 12px;
}

.mega-menu-3__section--list-text {
  margin: 0;
  padding: 0;
  line-height: 2;
}

.mega-menu-3__section--list-details {
  opacity: 0.7;
  max-width: 300px;
  white-space: normal;
  line-height: 1.4;
  margin-top: 0;
}

.mega-menu-3__section--list-avatar {
  width: 40px;
  height: 40px;
  opacity: 0.1;
  border-radius: 12px;
  background-color: var(--primary);
}

.mega-menu-4 {
  background-color: #fff;
  justify-content: start;
}

.mega-menu-4__section {
  flex-basis: 25%;
  padding-top: 40px;
}

.mega-menu-4__section--heading {
  font-weight: normal;
  text-transform: uppercase;
  margin-left: 62px;
}

.mega-menu-4__section--list-item {
  cursor: pointer;
  height: 94px;
}

.mega-menu-4__section--list-item:not(:last-child) {
  border-bottom: solid 1px #f5f5f5;
}

.mega-menu-4__section--list-item:hover {
  background-color: #f4fbfd;
  border-radius: 12px;
}

.mega-menu-4__section--list-text {
  margin-bottom: 0;
  line-height: 1.4;
}

.mega-menu-4__section--list-details {
  opacity: 0.7;
  max-width: 244px;
  white-space: normal;
  line-height: 1.4;
  margin-top: 0;
}

.mega-menu-4__section--list-avatar {
  width: 40px;
  height: 40px;
  opacity: 0.1;
  border-radius: 12px;
  background-color: var(--primary);
}

.mega-menu-4__active {
  visibility: hidden;
  flex-basis: 50%;
  margin-left: 100px;
  max-width: 380px;
}

.mega-menu-4__active-logo {
  margin-top: 53px;
  width: 67px;
  height: 85px;
}

.mega-menu-4__active-header {
  text-transform: uppercase;
}

.mega-menu-4__active-description {
  font-size: 16px;
  opacity: 0.7;
  white-space: normal;
}

/* Main Footer */
#main-footer {
  background-color: #FFFFFF;
  padding-bottom: 60px;
}

.footer__section {
  display: inline-block;
  width: 30%;
  padding-right: 40px;
}

[dir=rtl] .footer__section {
  padding-right: 0;
  padding-left: 40px;
}

.footer__section.third-col {
  width: 40%;
}

.footer__section.empty-col {
  width: 30%;
  padding: 0;
}

.footer__section:last-of-type {
  padding-right: 0;
}

.footer__section p {
  color: var(--black);
  font-weight: bold;
  border-bottom: 1px solid #C6CDDF;
  padding: 20px 0 10px;
  margin: 30px 0;
}

.footer__section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: flex-end;
}

.footer__section li {
  margin: 15px 0;
}

.footer__section a {
  color: #3A3F57;
  text-decoration: none;
}

.footer__section a:hover {
  text-decoration: underline;
}

.footer-icon-apps,
.footer-icon-social-media {
  display: flex;
}

.footer__section .footer-icon-apps li img {
  max-width: 42px;
  border-radius: 100%;
  margin-right: 15px;
  /* box-shadow: 2px 10px 10px #e0e0e0; */
  position: relative;
  bottom: 8px;
}

[dir=rtl] .footer__section .footer-icon-apps li img {
  margin-left: 15px;
  margin-right: 0;
}

.footer__section .footer-icon-apps li a img {
  /* box-shadow: 2px 10px 10px #e0e0e0; */
}

.footer__section .footer-icon-social-media li a {
  margin-right: 15px;
}

[dir=rtl] .footer__section .footer-icon-social-media li a {
  margin-right: 0;
  margin-left: 15px;
}

.footer__section .footer-icon-social-media li a:hover img,
.footer__section .footer-icon-apps li a:hover img {
  box-shadow: 2px 10px 10px #f4f4f4;
}

/*Happiness Styles Starts*/
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-close {
  border-radius: 50%;
  background: #fff;
  border: 2px #830823 solid;
  text-decoration: none;
  position: absolute;
  top: -18px;
  right: -10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-close:hover {
  opacity: 0.8;
  text-decoration: none;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-close:before {
  border: 0;
  background: transparent;
  color: #830823;
  font-size: 25px;
  cursor: pointer;
  outline: none;
  text-align: center;
  display: block;
  line-height: 35px;
  vertical-align: middle;
  font-weight: bolder;
  font-family: Gotham-black;
  content: "✕";
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #fff;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.fancybox-opened {
  z-index: 90001;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden !important;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
  overflow: hidden !important;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("blank.gif");
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 90000;
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-type-iframe {
  opacity: 1 !important;
}

.fancybox-custom .fancybox-skin {
  box-shadow: 0 0 50px #222;
}

/* body.home #foo {left:10px;} */
#foo img {
  vertical-align: middle;
  width: 35px;
}

.fancybox-overlay-fixed {
  z-index: 1000000 !important;
}

.fancybox-opened {
  z-index: 10000000;
}

/* Accessibility */
#INDmenu-btn, #INDa11yMode, #INDhideButton, #INDmenu .INDmenuFooter div:last-child, .INDmenuFreeMsg, #INDmenuBtnzWrap .INDmenuRow, #INDquickAccess {
  display: none !important;
}

/* Chat Popup */
.chat-content {
  z-index: 100000 !important;
  position: fixed !important;
  max-width: 440px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  opacity: 1 !important;
  left: inherit;
  height: 620px;
  bottom: 0;
  right: 0;
  display: none;
  align-items: flex-end;
  min-width: 440px;
}

[dir=rtl] .chat-content {
  left: 0 !important;
  right: inherit !important;
}

.dda-footer--hidden .chat-content {
  bottom: 110px;
}

.chat-content.open {
  display: flex;
}

#chat-content .close-icon {
  position: absolute;
  width: 100%;
  cursor: pointer;
  -webkit-transition: opacity 0.08s linear, -webkit-transform 0.16s linear;
  transition: opacity 0.08s linear, -webkit-transform 0.16s linear;
  transition: transform 0.16s linear, opacity 0.08s linear;
  transition: transform 0.16s linear, opacity 0.08s linear, -webkit-transform 0.16s linear;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  -ms-transform: rotate(-30deg);
  background-image: url(../images/close.png);
  position: absolute;
  top: 0;
  /* bottom: 0; */
  width: 55px;
  height: 55px;
  background-color: #eef2f5;
  right: 15px;
  border-radius: 50%;
  z-index: 100000000;
}

/* Page Header */
.page-header {
  background-color: #f5f5f5;
  padding: 15px 0 5px;
  border-top: 5px solid #fff;
  min-height: 85px;
}

.page-header > .container {
  /*padding-left: 30px;
  padding-right: 30px;*/
}

.page-header span,
.page-header nav {
  color: var(--primary);
}

.page-header span a,
.page-header nav a {
  color: var(--secondary);
  position: relative;
  text-decoration: none;
  line-height: 1;
}

.page-header span a:after {
  /* content: "";
  font-family: 'icomoon';
  position: relative;
  top:3px; */
}

.page-header span a:before,
.page-header nav a:before {
  content: "\e904";
  font-family: icomoon;
  position: relative;
  top: 3px;
}

[dir=rtl] .page-header span a:before {
  transform: rotate(180deg);
  display: inline-block;
}

.page-header span a:hover:after,
.page-header nav a:hover:after {
  display: block;
}

.page-header span.breadcrumb_last,
.page-header nav .current {
  color: #4c4c4c;
  display: none;
}

.page-header .container > span > span > a:before {
  display: none;
}

.page-header a:after {
  content: "";
  border-bottom: 1px solid #7395bf;
  width: calc(100% - 15px);
  display: inline-block;
  position: absolute;
  bottom: 6px;
  left: 15px;
  display: none;
}

.page-header .container > span > span > a:after {
  left: 0;
  width: 100%;
}

.page-header h1 {
  margin: 3px 0 0;
  color: var(--secondary);
  line-height: 1.3;
  font-size: 32px;
  font-weight: 300;
}

[dir=rtl] .page-header nav {
  text-align: right;
  width: 100%;
  direction: rtl;
  display: block;
  float: right;
}

[dir=rtl] .page-header nav a,
[dir=rtl] .page-header nav span.current {
  float: right;
}

[dir=rtl] .page-header nav a:before {
  bottom: 0;
}

[dir=rtl] .page-header nav a:after {
  float: left;
  transform: rotate(180deg);
  top: 0;
}

[dir=rtl] .page-header span a,
[dir=rtl] .page-header nav a {
  left: inherit;
  right: 0;
  display: inline-block;
}

[dir=rtl] .page-header span a:after,
[dir=rtl] .page-header nav a:after {
  right: 15px;
  left: inherit;
  bottom: 1px;
}

[dir=rtl] .page-header .container > span > span > a:after {
  left: inherit;
  right: 0;
  width: 100%;
}

/* Wordpress Admin bar */
#wpadminbar {
  z-index: 9999999;
}

/* Google Captcha Badge */
.grecaptcha-badge {
  display: none !important;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: block !important;
}

.menu-main-menu-container .sub-menu li, .menu-main-menu-arabic-container .sub-menu li {
  margin: 0 !important;
  line-height: 1.1 !important;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .container {
    max-width: 1150px;
  }
}
@media screen and (max-width: 992px) {
  .hide-lg {
    display: none !important;
  }
  .visible-lg {
    display: block !important;
  }
  .container {
    max-width: 960px;
  }
  .footer__section.empty-col {
    display: none;
  }
  .dda-footer {
    height: 100px;
    padding: 24px 0;
  }
  .dda-footer.white {
    /* background: none; */
    background: #fff;
    z-index: 10000;
  }
  .dda-footer__section-link,
  .dda-footer__icon-wrapper {
    background: white;
    border-radius: 50px;
    width: 48px;
    max-width: 48px;
    height: 48px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1333333333);
  }
  .dda-footer__section-link i.ms-3,
  .dda-footer__icon-wrapper i {
    margin: 0;
  }
  .dda-footer__icon-wrapper {
    width: 64px;
    align-items: center;
    justify-content: center;
  }
  .chat-popup__link {
    padding: 15px 12px 14px 12px !important;
  }
  .dda-footer__section-links {
    gap: 1rem;
  }
  .dda-footer__section-btn {
    background: #fff;
    border-radius: 50px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1333333333);
  }
  .dda-footer__chat-btn {
    margin-right: 10px;
    width: 48px;
  }
  .dda-sub-header .menu-main-menu-container,
  .dda-sub-header .menu-main-menu-arabic-container {
    display: none;
  }
  .dda-sub-header .search {
    display: none;
  }
  .dda-accessibility-section-wrapper {
    position: fixed;
    top: 160px;
    width: unset;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    overflow: auto;
    height: auto;
  }
  #main-footer .d-flex {
    display: block;
    text-align: center;
  }
  .footer__section,
  .footer__section.third-col {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .footer-icon-apps {
    display: flex;
    justify-content: center;
  }
  .footer-icon-social-media {
    justify-content: center;
  }
  .footer__section .footer-icon-social-media li a {
    margin: 0 15px;
  }
  .mobile-only {
    display: block !important;
  }
  .desktop-only {
    display: none !important;
  }
  #main-footer {
    padding-bottom: 100px;
  }
  [dir=rtl] .dda-footer__section--bordered {
    padding-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .hide-xl {
    display: none !important;
  }
  .visible-xl {
    display: block !important;
  }
  .ai-icon {
    padding-right: 8px;
  }
}
@media screen and (min-width: 768px) {
  .text-h1 {
    font-size: 36px;
  }
  .text-h2 {
    font-size: 30px;
  }
  .text-h3 {
    font-size: 24px;
  }
  .text-h4 {
    font-size: 20px;
  }
  .text-h5 {
    font-size: 18px;
  }
  .text-h6 {
    font-size: 16px;
  }
  .text-body-1 {
    font-size: 14px;
  }
  .text-body-2 {
    font-size: 13px;
  }
  .text-caption {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .hide-md {
    display: none !important;
  }
  .visible-md {
    display: block !important;
  }
  .container {
    max-width: 720px;
  }
  .dda-footer {
    padding: 24px;
  }
  .dda-footer__chat-btn {
    margin-right: 0;
  }
  .dda-footer p {
    display: none;
  }
  .dda-footer__icon-wrapper {
    width: 64px;
    align-items: center;
    justify-content: center;
  }
  .chat-popup {
    position: fixed;
    bottom: 90px;
    left: 2px;
    right: 2px;
    width: unset;
    margin: 0 15px;
  }
  [dir=rtl] .chat-popup {
    right: 2px;
    left: 2px;
  }
  .dda-header-container .skip-to-main {
    display: none;
  }
  .dda-main-header {
    display: none;
  }
  .dda-main-header__logo {
    max-width: 135px;
  }
  .dda-main-header__gov-logo {
    max-width: 120px;
  }
  .dda-main-header {
    padding: 24px 0px;
  }
  .dda-sub-header {
    --menu-height: 80px;
    top: 0;
  }
  .dda-sub-header__navbar {
    flex: unset;
  }
  .dda-sub-header__actions {
    gap: 0;
    position: absolute;
  }
  .dda-sub-header__mobile-actions {
    display: block;
  }
  .dda-sub-header__logo {
    display: block;
    width: 180px;
  }
  /* body.home .dda-sub-header__logo {
      display: none;
  } */
  .dda-sub-header__logo--white {
    display: none;
    width: 100px;
  }
  body.home .dda-sub-header__logo--white {
    display: block;
  }
  .dda-sub-header__navbar-toggle.active .icon-menu:before {
    content: "\e90c";
  }
  .dda-sub-header__btn {
    display: none;
  }
  .dda-side-nav__footer .dda-sub-header__btn {
    display: flex;
    text-decoration: none;
  }
  .dda-side-nav {
    top: 80px;
    right: 0;
    width: unset;
    box-shadow: none;
  }
  [dir=rtl] .dda-side-nav {
    left: 0;
  }
  .dda-side-nav__quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body.home .dda-side-nav__quick-links .dda-sub-header__btn {
    background: #f5f5f5;
    color: #3A3F57;
  }
  .dda-side-nav__content {
    padding-bottom: 100px;
  }
  .dda-side-nav__footer {
    display: flex;
  }
  .dda-side-nav .main {
    margin-left: unset;
    margin-right: 200px;
  }
  .dda-login-section {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 80px;
    width: auto;
    margin: 0;
    height: auto;
    border-radius: 0;
  }
  [dir=rtl] .dda-login-section {
    right: 0;
    left: 0;
  }
  .dda-accessibility-section {
    flex-direction: column;
    padding: 32px;
    border-radius: 0;
    height: 100%;
  }
  .dda-accessibility-section__center-section {
    margin: 12px 0;
    padding: 12px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
  }
  .dda-accessibility-section-wrapper {
    width: unset;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 0;
    position: fixed;
    overflow: auto;
    height: auto;
  }
  [dir=rtl] .dda-accessibility-section-wrapper {
    right: 0;
    left: 0;
  }
  .chat-content {
    min-width: 370px;
  }
  .body-content {
    padding-top: 80px;
  }
  .page-header {
    border-top: 0;
  }
  [dir=rtl] .dda-footer__chat-btn {
    margin-left: 0;
  }
  .dda-side-nav .dropdown-container {
    border-radius: 0;
  }
  #searchcontainer-headermobile .addsearch-searchfield input[type=search].icon {
    padding: 10px 15px 10px 35px !important;
    color: #000 !important;
  }
  #searchcontainer-headermobile .addsearch-searchfield input[type=search].icon:focus,
  #searchcontainer-headermobile .addsearch-searchfield input[type=search].icon:focus-visible {
    outline-color: var(--primary) !important;
  }
  [dir=rtl] #searchcontainer-headermobile .addsearch-searchfield input[type=search].icon {
    padding: 10px 35px 10px 15px !important;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: 540px;
  }
  .hide-sm {
    display: none !important;
  }
  .visible-sm {
    display: block !important;
  }
  .text-h1 {
    font-size: 30px;
  }
  .text-h2 {
    font-size: 30px;
  }
  .text-h3 {
    font-size: 24px;
  }
  .text-h4 {
    font-size: 20px;
  }
  .text-h5 {
    font-size: 16px;
  }
  .text-h6 {
    font-size: 16px;
  }
  .text-body-1 {
    font-size: 14px;
  }
  .text-body-2 {
    font-size: 13px;
  }
  .text-caption {
    font-size: 12px;
  }
  .dda-footer .container {
    padding-left: 0;
    padding-right: 0;
  }
  .dda-footer__section {
    width: 50px;
  }
  .dda-footer__icon-wrapper {
    width: 50px;
  }
}
@media only screen and (min-width: 480px) {
  table {
    table-layout: auto;
    word-break: normal;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .dda-sub-header .menu-main-menu-container,
  .dda-sub-header .menu-main-menu-arabic-container {
    display: none;
  }
  .dda-sub-header .search {
    display: none;
  }
  .dda-accessibility-section-wrapper {
    position: fixed;
    top: 160px;
    width: unset;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    overflow: auto;
    height: auto;
  }
  .dda-header-container .skip-to-main {
    display: none;
  }
  .dda-main-header {
    display: none;
  }
  .dda-main-header__logo {
    max-width: 135px;
  }
  .dda-main-header__gov-logo {
    max-width: 120px;
  }
  .dda-main-header {
    padding: 24px 0px;
  }
  .dda-sub-header {
    --menu-height: 80px;
    top: 0;
  }
  .dda-sub-header__navbar {
    flex: unset;
  }
  .dda-sub-header__actions {
    gap: 0;
    position: absolute;
  }
  .dda-sub-header__mobile-actions {
    display: block;
  }
  .dda-sub-header__logo {
    display: block;
    width: 180px;
  }
  /* body.home .dda-sub-header__logo {
      display: none;
  } */
  .dda-sub-header__logo--white {
    display: none;
    width: 100px;
  }
  body.home .dda-sub-header__logo--white {
    display: block;
  }
  .dda-sub-header__navbar-toggle.active .icon-menu:before {
    content: "\e90c";
  }
  .dda-sub-header__btn {
    display: none;
  }
  .body-content {
    padding-top: 80px;
  }
  .page-header {
    border-top: 0;
  }
  .dda-side-nav {
    top: 80px;
    right: 0;
    width: unset;
    box-shadow: none;
  }
  [dir=rtl] .dda-side-nav {
    left: 0;
  }
  .dda-side-nav__quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dda-side-nav__content {
    padding-bottom: 100px;
  }
  .dda-side-nav__footer {
    display: flex;
  }
  .dda-side-nav .main {
    margin-left: unset;
    margin-right: 200px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .dda-footer__section-links {
    margin-left: 25px;
    margin-right: 20px;
  }
  .arabic .dda-footer__section-links {
    margin-left: 0;
    margin-right: 10px;
  }
  .footer__section,
  .footer__section, .footer__section.third-col {
    vertical-align: top;
    display: inline-block;
    width: calc(50% - 6px);
  }
  .dda-footer__icon-wrapper.last-footer_section {
    margin: 0 10px;
  }
  [dir=rtl] .dda-footer__icon-wrapper.last-footer_section {
    margin: 0;
  }
  [dir=rtl] .first-dda-footer__section-btn {
    margin-right: 10px;
  }
}
/* MEDIA QUERIES */
@media screen and (max-width: 1300px) {
  .rtl .dda-sub-header__actions {
    gap: 10px;
  }
  .rtl .dda-sub-header__locale, .addsearch-searchfield input[type=search], .dda-sub-header__btn {
    font-size: 14px;
  }
  .rtl .dda-sub-header__profile-btn {
    gap: 1px;
  }
  .rtl .menu {
    zoom: 0.95;
  }
}
@media screen and (min-width: 1200px) {
  .dda-footer__section-links--right .dda-footer__section-link {
    padding-left: 24px;
    padding-right: 24px;
  }
  .dda-footer__section-links--right {
    gap: 0;
  }
  .ai-icon {
    padding: 0 12px;
  }
}
.page-header span > span::after {
  content: "\f054";
  color: var(--secondary);
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0px;
}

[dir=rtl] .page-header span > span::after {
  transform: rotate(180deg);
  margin-left: 0;
  margin-right: 5px;
}

/* Hide icon if only one span exists (excluding .breadcrumb_last) */
.page-header span > span:nth-last-child(2)::after,
.page-header span > span:only-child::after {
  content: none;
}

:root {
  --primary: #4700CC;
  --secondary: #3A3F57;
  --white: #fff;
  --black: #000;
  --blue: #5793D9;
  --red: #dc0a0a;
  --red-dark: #bf1212;
  --grey-light: #f5f5f5;
  --grey-dark: #282C3F;
  --grey-alt: #d9e0eb;
  --grey-alt1: #688CBA;
  --grey-alt2: #647794;
  --grey-alt3: #3B3F54;
  --grey-alt4: #C3C3C9;
  --grey-alt5: #CED1DE;
  --grey-alt6: #353f56;
  --grey-alt7: #74889F;
  --grey-alt8: #B6BACE;
  --grey-alt9: #9197B6;
  --grey-alt10: #f2f0f0;
  --grey-alt11: #F2EBFF;
  --grey-alt12: #60657f;
  --grey-alt13: #e4e4e4;
  --grey-alt14: #585858;
  --grey-alt15: #7D88A2;
  --grey-alt16: #5C5E6E;
  --grey-alt17: #ECECEE;
  --grey-alt18: #3A6291;
  --grey-alt19: #f7f7f7;
  --grey-alt20: #525871;
  --grey-alt21: #f5f4f9;
  --grey-alt22: #979797;
  --grey-alt23: #efefef;
  --grey-alt24: #c7c7c7;
  --grey-alt25: #D4D4D4;
  --grey-alt26: #757FA2;
  --grey-alt27: #B6B8BB;
  --grey-alt28: #606161;
  --grey-alt29: #CECECE;
  --grey-alt30: #6C749D;
  --grey-alt31: #8190B9;
  --grey-alt32: #cdcdcd;
  --purple-light: #F2EBFF;
}

.clearfix {
  clear: both;
}

/* Single Posts */
.related {
  width: 100%;
}

.width-50 {
  width: 50%;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.vc_row {
  margin-left: 0;
  margin-right: 0;
}

.vc_column_container > .vc_column-inner {
  padding-left: 0;
  padding-right: 0;
}

.dark-text {
  color: var(--secondary);
  text-decoration: none;
}

.required {
  color: var(--red);
}

.bunyantxtOverlay {
  margin: 0;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  height: auto !important;
  width: 100%;
}

/* Spin animation for loaders in button */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
@keyframes pushDown {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: 90px;
  }
}
@keyframes showTxt {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes disapperTxt {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes move-mouse {
  0%, 65%, 100% {
    opacity: 0;
  }
  10%, 40% {
    opacity: 1;
  }
  0% {
    transform: translateY(5px) scale(0.7);
  }
  5% {
    transform: scale(0.7);
  }
  15%, 100% {
    transform: scale(1);
  }
  45%, 65% {
    transform: translateY(14px) scale(0.7);
  }
}
@keyframes counting {
  100% {
    transform: translate3d(0, -10em, 0);
  }
}
@keyframes preHide {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeInStayOut {
  0% {
    opacity: 0;
    visibility: visible;
  }
  10% {
    opacity: 1;
    visibility: visible;
  }
  90% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeInStay {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
/* Each item: fade in (0.5s), stay (~1.5s), fade out (0.5s) → total ≈ 2.5s */
.mr-b {
  margin-bottom: 0;
}

.mr-t {
  margin-top: 0;
}

.main-title {
  color: var(--secondary);
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0 30px;
}

.title {
  font-size: 24px;
  color: var(--grey-alt3);
  margin-bottom: 0;
  font-weight: 400;
}

.fontWeight200 {
  font-weight: 200;
}

.fontWeight400 {
  font-weight: 400;
}

.fontWeight500 {
  font-weight: 500;
}

.fontWeight600 {
  font-weight: 600;
}

.according_section .small_title {
  font-size: 20px;
  font-weight: 400;
}

.small_title {
  font-size: 32px;
  color: var(--grey-alt3);
  margin-bottom: 0;
  font-weight: 100;
}

.sub_title {
  font-size: 16px;
  color: var(--grey-alt3);
  margin-bottom: 0;
  font-weight: 500;
}

.flex-end {
  align-items: flex-end;
}

.txtoverlayImg {
  margin: 0 20px 10px 30px;
  /* padding-bottom: 25px; */
  max-height: 455px;
  overflow: hidden;
  position: relative;
}
.txtoverlayImg .vc_single_image-wrapper:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  left: 0;
  top: 0;
}

.txtOverlay {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  height: auto !important;
  width: 100%;
}
.txtOverlay h3 {
  font-weight: 100;
  font-size: 24px;
  margin: 0 0 5px;
  height: auto;
}
.txtOverlay p {
  margin: 0;
  height: auto;
}
.txtOverlay a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  height: auto;
  font-size: 16px;
}
.txtOverlay a:hover {
  text-decoration: underline;
}
.txtOverlay a:after {
  content: "\e904";
  font-family: "icomoon";
  color: rgb(182, 182, 182);
  position: relative;
  top: 3px;
}

[dir=rtl] .txtOverlay a:after {
  display: inline-block;
  transform: rotate(180deg);
}

.mainTitle hr {
  margin: 30px 0 40px;
}

.banner-full-width img {
  border-radius: 12px;
}

.btn-purple {
  background-color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 8px;
  color: var(--white) !important;
  font-size: 16px !important;
  font-weight: 300;
  padding: 8px 14px;
  text-align: center;
  text-decoration: none;
}
.btn-purple:hover, .btn-purple:focus-within {
  background-color: var(--white) !important;
  color: var(--primary) !important;
}

/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: inherit;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.mediaitem-nav-thumbnails, .slider-nav-thumbnails {
  margin-top: 10px;
}
.mediaitem-nav-thumbnails .slick-slide, .slider-nav-thumbnails .slick-slide {
  cursor: pointer;
}
.mediaitem-nav-thumbnails .slick-slide.slick-current.slick-active, .slider-nav-thumbnails .slick-slide.slick-current.slick-active {
  opacity: 1;
}
.mediaitem-nav-thumbnails .slick-slide.slick-current.slick-active img, .slider-nav-thumbnails .slick-slide.slick-current.slick-active img {
  background: var(--black);
}
.mediaitem-nav-thumbnails .slick-slide:last-child img, .mediaitem-nav-thumbnails .slick-slide:first-child img, .slider-nav-thumbnails .slick-slide:last-child img, .slider-nav-thumbnails .slick-slide:first-child img {
  margin-left: 0;
  margin-right: 0;
}
.mediaitem-nav-thumbnails .slick-slide img, .slider-nav-thumbnails .slick-slide img {
  padding: 5px;
  background: transparent;
}
.mediaitem-nav-thumbnails img, .slider-nav-thumbnails img {
  width: 200px;
  margin: 0 5px;
}

.slick-loading .slick-list {
  background: var(--white) url("./script/slick/ajax-loader.gif") center center no-repeat;
}

/* Slick Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./script/slick/fonts/slick.eot");
  src: url("./script/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("./script/slick/fonts/slick.woff") format("woff"), url("./script/slick/fonts/slick.ttf") format("truetype"), url("./script/slick/fonts/slick.svg#slick") format("svg");
}
/* Slick Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  background: transparent;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: inherit;
  background: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
.slick-prev:before {
  content: "â†";
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}
[dir=rtl] .slick-prev:before {
  content: "â†’";
}

.slick-next {
  right: -25px;
}
.slick-next:before {
  content: "â†’";
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}
[dir=rtl] .slick-next:before {
  content: "â†";
}

/* Slick Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: inherit;
  background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: inherit;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "â€¢";
  text-align: center;
  opacity: 0.25;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: var(--black);
}

.slick-prev:before, .slick-next:before {
  color: var(--black);
}

/* Custom Search */
#scrollable-header {
  max-height: 330px;
  max-width: 800px;
  overflow: auto;
  margin: 0 auto;
  position: absolute;
  top: 40px;
}

.addsearch-searchfield input[type=search].icon {
  background-image: none;
  height: 40px;
  background: var(--grey-light);
  transition: all 0.7s ease 0s;
  border: 0;
  border-radius: 50px;
  margin-right: 0;
  padding-left: 40px !important;
}
.addsearch-searchfield input[type=search].icon:focus {
  width: 200px;
  box-shadow: 0 0 0 0.125rem var(--grey-alt6);
}

[dir=rtl] .addsearch-searchfield input[type=search].icon {
  margin-right: 0;
  padding-left: 10px !important;
  text-align: right;
  padding-right: 40px !important;
}

.home .addsearch-searchfield input[type=search].icon {
  color: var(--white);
  background: rgba(0, 0, 0, 0.0392156863);
}

.home .addsearch-searchfield input[type=search].icon::placeholder {
  color: var(--white);
}

.addsearch-searchfield input[type=search] {
  min-width: 100px;
}

.addsearch-searchfield {
  min-width: unset;
}

#searchfield input[type=search] {
  border: none;
}

#searchfield input[type=search]:focus {
  outline-width: 0;
}

.dubaimore_content {
  display: none;
}

.dubaimore_content:first-of-type {
  display: block;
}

.wpb-js-composer .vc_tta.vc_general .vc_tta-panel.vcawardspanel {
  display: none;
}

.wpb-js-composer .vc_tta.vc_general .vc_tta-panel.vcawardspanel.vc_active {
  display: block;
}

.rasid-useful-links .slick-prev {
  left: 0;
}

.rasid-useful-links .slick-next {
  right: 0;
}

.rasid-useful-links .links {
  padding: 10px 20px;
}

#secondary button.menubtn, button.custommenubtn {
  background: var(--grey-dark);
  color: var(--white);
  padding: 10px;
  width: 100%;
  border: 2px solid var(--grey-dark);
  font-size: 16px;
}

#secondary button.menubtn:hover,
#secondary button.menubtn.active,
button.custommenubtn:hover,
button.custommenubtn.active {
  border: 2px solid var(--grey-dark);
  background-color: var(--white);
  color: var(--grey-dark);
}

@media (min-width: 992px) {
  button.custommenubtn {
    display: none;
  }
  .container .vc_wp_custommenu > .widget_nav_menu {
    display: block;
  }
}
@media (max-width: 991px) {
  button.custommenubtn {
    display: block;
  }
  .container .vc_wp_custommenu > .widget_nav_menu {
    display: none;
  }
}
@media (min-width: 769px) {
  #secondary button.menubtn {
    display: none;
  }
  #secondary .widget > div {
    display: block;
  }
}
@media (max-width: 768px) {
  #secondary button.menubtn {
    display: block;
  }
  #secondary .widget > div {
    display: none;
  }
}
.about-dm-content {
  width: 100%;
}

.lds-dual-ring {
  display: inline-block;
  width: 24px;
  height: 24px;
  /*position: absolute;*/
  top: 50%;
  /*margin-top: -12px;*/
  margin-left: 8px;
}

.rtl .lds-dual-ring {
  margin-left: 8px;
}

.checkLoader {
  display: none;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  /* margin: 8px; */
  border-radius: 50%;
  border: 6px solid var(--white);
  border-color: var(--white) transparent var(--white) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

button:hover .lds-dual-ring:after {
  border-color: var(--grey-dark) transparent var(--grey-dark) transparent;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.show-home-result p.fail,
.requiredstar,
.error_msg {
  color: var(--red-dark);
}

.fancybox-overlay {
  overflow-y: scroll !important;
}

.registerworkshop input, .registerworkshop textarea {
  width: 100%;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid var(--grey-alt4);
  margin-bottom: 10px;
}

.registerworkshop input[type=checkbox] {
  width: auto;
}

.registerworkshop button {
  border-radius: 8px;
  background: var(--grey-dark);
  color: var(--white);
  padding: 15px;
  width: 200px;
  cursor: pointer;
}

.registerworkshop button:hover,
.registerworkshop button:active {
  color: var(--grey-dark);
  border-color: var(--grey-dark);
  background: var(--white);
}

.addsearch-searchfield input[type=search].icon::placeholder {
  color: var(--grey-alt3);
}

/*filter slide */
#filter, #filter-close, #filter-bg {
  display: none;
}

#filter-slider {
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  #filter-bg {
    display: block;
  }
  #filter-slider {
    padding-top: 0px;
    margin-top: 0;
  }
  #filter-close {
    margin: 0 0 0 auto;
    background: transparent;
    color: var(--red-dark);
    font-size: 50px;
    padding: 0;
    line-height: 0.8;
    display: none;
  }
  #filter {
    width: auto;
  }
  #filter-slider .vc_column-inner {
    width: 100% !important;
    height: 100%;
    background: var(--white);
  }
  #filter-bg {
    background: rgba(0, 0, 0, 0.6);
    width: 0%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000000;
    margin: 0;
  }
}
@media (max-width: 768px) {
  #filter {
    display: block;
  }
  #filter-slider > .vc_column-inner > .wpb_wrapper {
    background: var(--white);
  }
  #filter-slider {
    z-index: 100000000;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #111;
    position: fixed;
    display: block !important;
    overflow-x: hidden;
    transform: translateX(-1000px);
    transition: 1s !important;
  }
  #filter-slider.active {
    transform: translateX(0);
  }
}
/* Flickity slider */
.flickity-enabled {
  position: relative;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}
.flickity-button:hover {
  background: var(--white);
  cursor: pointer;
}
.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px var(--black);
}
.flickity-button:active {
  opacity: 0.6;
}
.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}
.flickity-prev-next-button.previous {
  left: 10px;
}
.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: 75px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

#success_stories-slider .flickity-page-dots .dot {
  background: var(--grey-alt1);
}
#success_stories-slider .flickity-viewport {
  width: 100%;
  min-height: 600px;
}

/** Larger Header Slider **/
.larger-header-slider {
  top: -15px;
  margin-bottom: -65px !important;
  margin-right: 0 !important;
}
.larger-header-slider .slick-dots {
  display: block;
  position: absolute;
  bottom: 65px;
  right: 100px;
  text-align: right;
  background-repeat: no-repeat;
  background-position-x: right;
  padding-top: 120px;
}
[dir=rtl] .larger-header-slider .slick-dots {
  background-position-x: left;
  left: 100px;
  text-align: left;
  right: auto;
}
.larger-header-slider .slick-dots li {
  width: 50px;
  height: 6px;
  border-radius: 0;
  cursor: pointer;
  border: none;
  background-color: rgba(153, 153, 153, 0.8);
}
.larger-header-slider .slick-dots li.slick-active {
  border: none !important;
  background-color: rgba(224, 146, 71, 0.8) !important;
}
.larger-header-slider .slick-dots li button:before {
  opacity: 0 !important;
}
.larger-header-slider .vc_column-inner {
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px !important;
}
[dir=rtl] .larger-header-slider .vc_column-inner {
  direction: rtl;
}
.larger-header-slider .wpb_text_column {
  max-width: 50%;
}
.larger-header-slider h1, .larger-header-slider p {
  color: var(--white) !important;
}
.larger-header-slider p {
  font-size: 28px;
  font-family: "Dubai Light";
  line-height: 34px;
}
.larger-header-slider h1 {
  font-size: 50px;
  font-family: "Dubai Bold";
}
.larger-header-slider .vc_btn3 {
  color: var(--white) !important;
  border-color: #faaf6f !important;
  border-radius: 0;
  background: none;
  background-color: #faaf6f !important;
  padding: 10px 40px;
}
.larger-header-slider .vc_btn3:hover {
  color: var(--white) !important;
  border-color: #faaf6f !important;
  background-color: transparent !important;
}
@media screen and (max-width: 1024px) {
  .larger-header-slider .vc_column-inner {
    padding: 70px !important;
    height: 350px;
  }
  .larger-header-slider .wpb_text_column {
    max-width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .larger-header-slider .wpb_text_column {
    max-width: 100%;
  }
  .larger-header-slider .vc_column-inner {
    height: 400px;
  }
}
@media screen and (max-width: 430px) {
  .larger-header-slider .vc_column-inner {
    padding: 35px !important;
    height: 350px;
  }
  .larger-header-slider h1 {
    font-size: 36px;
  }
  .larger-header-slider p {
    font-size: 18px;
  }
  .larger-header-slider .slick-dots {
    position: absolute;
    bottom: 10px;
    text-align: center;
    right: 0;
    background-image: none !important;
  }
}

.less-height-discoverDubai {
  max-height: 400px !important;
}

/** Larger header slider end **/
/* Inner page slider */
.custom-inner-slider {
  padding-bottom: 55px;
  position: relative;
  width: 100%;
}
.custom-inner-slider .flickity-viewport {
  height: 420px !important;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .custom-inner-slider .flickity-viewport {
    height: 240px !important;
  }
}
.custom-inner-slider .carousel-cell {
  height: 100% !important;
}
.custom-inner-slider .carousel-cell .container {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.custom-inner-slider .carousel-cell .content {
  position: absolute;
  bottom: 20%;
  color: var(--white);
}
.custom-inner-slider .custom-navigation {
  top: auto;
  bottom: 5px;
}
.custom-inner-slider .custom-navigation button {
  color: var(--grey-alt30);
}
.custom-inner-slider .custom-navigation button i {
  font-weight: 600;
}
.rtl .custom-inner-slider .custom-navigation button i {
  transform: rotate(180deg);
}
.custom-inner-slider .custom-navigation .custom-page-dots .dot {
  background: var(--grey-alt30);
}
.custom-inner-slider .three-cards .flickity-viewport {
  height: 200px !important;
}
.custom-inner-slider .three-cards.map-view .flickity-viewport {
  height: 590px !important;
}
.custom-inner-slider .three-cards .carousel-cell {
  width: 32.33%;
  margin-right: 20px;
  background: var(--white);
  border-radius: 5px;
  padding: 16px;
}
@media (max-width: 992px) {
  .custom-inner-slider .three-cards .carousel-cell {
    width: 100%;
  }
}
.custom-inner-slider .three-cards.logo-carousel .flickity-viewport {
  height: 100px !important;
}
.custom-inner-slider .three-cards.logo-carousel .carousel-cell {
  background: transparent;
  width: 16%;
  display: flex;
  justify-content: left;
  align-items: center;
}
@media (max-width: 992px) {
  .custom-inner-slider .three-cards.logo-carousel .carousel-cell {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .custom-inner-slider .three-cards.no-slide .flickity-slider {
    transform: none !important;
  }
}
@media (min-width: 992px) {
  .custom-inner-slider .three-cards.no-slide + .custom-navigation {
    display: none;
  }
}
.custom-inner-slider .three-cards h4 {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1;
}
.custom-inner-slider .three-cards p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Select */
select {
  -webkit-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%4700CC'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat !important;
  background-size: 12px !important;
  background-position: calc(100% - 10px) center !important;
}
[dir=rtl] select {
  background-position: 10px center !important;
}

/* Tabs */
.body-content .menu,
.wpb-js-composer .vc_tta.vc_general .vc_tta-tabs-list {
  margin: 10px 0 !important;
  padding: 0px !important;
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  list-style-type: none;
  text-align: center;
  border-bottom: 1px solid var(--grey-alt9);
}

.body-content .menu li, .wpb-js-composer .vc_tta.vc_general .vc_tta-tab {
  width: 100%;
  flex: 1;
}

.body-content .menu li a, .wpb-js-composer .vc_tta.vc_general .vc_tta-tab a {
  background-color: transparent !important;
  text-align: center;
  color: var(--grey-alt6) !important;
  text-decoration: none;
  display: block;
  padding: 18px 5px;
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  line-height: 1.3;
  border: none;
  border-radius: 0;
}

.body-content .menu li a:hover, .body-content .menu li a:focus,
.body-content .menu li.current-menu-item > a, .wpb-js-composer .vc_tta.vc_general .vc_tta-tab a:hover,
.wpb-js-composer .vc_tta.vc_general .vc_tta-tab a:focus, .wpb-js-composer .vc_tta.vc_general li.vc_tta-tab.vc_active a {
  background-color: transparent !important;
  border-bottom: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  cursor: pointer;
}

.wpb-js-composer .vc_tta.vc_general.discoverDubaiTabs .vc_tta-panels {
  background-color: transparent !important;
  border: 0 !important;
}
.wpb-js-composer .vc_tta.vc_general.discoverDubaiTabs .vc_tta-panels .vc_tta-panel-body, .wpb-js-composer .vc_tta.vc_general.discoverDubaiTabs .vc_tta-panels .submitAdviceContent {
  padding: 0 !important;
}
.wpb-js-composer .vc_tta.vc_general.discoverDubaiTabs .vc_tta-tab a {
  text-decoration: none;
  display: block;
  padding: 18px 5px;
  box-shadow: none;
  border: 0;
  border-radius: 0;
}
.wpb-js-composer .vc_tta.vc_general.discoverDubaiTabs .vc_active a.card-action {
  background-color: var(--primary) !important;
}
.wpb-js-composer .vc_tta.vc_general.discoverDubaiTabs .vc_active a.card-action:hover {
  background-color: var(--white) !important;
}

/* Vertical tabs */
.tabs-wrapper .vc_tta-panels {
  background-color: transparent !important;
  border: none !important;
}
.tabs-wrapper.vc_tta.vc_general .vc_tta-tabs-list .vc_tta-tab a,
.tabs-wrapper .vc_tta-panels-container .vc_tta-panel-heading a {
  border: 1px solid var(--grey-alt20) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  background-color: var(--white) !important;
}
.tabs-wrapper.vc_tta.vc_general .vc_tta-tabs-list .vc_tta-tab a:before, .tabs-wrapper.vc_tta.vc_general .vc_tta-tabs-list .vc_tta-tab a:after,
.tabs-wrapper .vc_tta-panels-container .vc_tta-panel-heading a:before,
.tabs-wrapper .vc_tta-panels-container .vc_tta-panel-heading a:after {
  border: none !important;
}
.tabs-wrapper.vc_tta.vc_general .vc_tta-tabs-list .vc_tta-tab.vc_active a, .tabs-wrapper.vc_tta.vc_general .vc_tta-tabs-list .vc_tta-tab a:hover,
.tabs-wrapper .vc_tta-panels-container .vc_tta-panel-heading.vc_active a,
.tabs-wrapper .vc_tta-panels-container .vc_tta-panel-heading a:hover {
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  background-color: #F2EBFF !important;
}
.tabs-wrapper.vc_tta.vc_general .vc_tta-tabs-list {
  display: block !important;
  border: none !important;
  white-space: nowrap;
}
.tabs-wrapper.vc_tta.vc_general .vc_tta-tabs-list .vc_tta-tab {
  width: auto !important;
  flex: auto !important;
  margin: 0 8px !important;
}
.tabs-wrapper.vc_tta.vc_general .vc_tta-tabs-list a, .tabs-wrapper.vc_tta.vc_general .vc_tta-tabs-list a span {
  font-weight: 300 !important;
  border: none !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .tabs-wrapper .vc_tta-panels-container .vc_tta-panel-heading, .tabs-wrapper .vc_tta-panels-container .vc_tta-panel-body {
    margin-bottom: 10px !important;
  }
}
.tabs-wrapper .vc_tta-panels-container .vc_tta-panel-body {
  padding: 15px 0 0 !important;
  border: transparent !important;
  background: transparent !important;
}
.tabs-wrapper .vc_tta-panels-container .vc_tta-panel-body .wpb_wrapper {
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
}
.tabs-wrapper .vc_tta-panels-container .three-cards .carousel-cell {
  padding: 0;
}
.tabs-wrapper .vc_tta-panels-container .three-cards .carousel-cell .card-details {
  padding: 24px;
}
.tabs-wrapper .vc_tta-icon {
  display: none !important;
}
.tabs-wrapper .vc_tta-title-text {
  margin-left: 0 !important;
}

/* Vertical tabs */
.vertical-tabs-wrapper .vc_tta-panels {
  background-color: transparent !important;
  border: none !important;
}
.vertical-tabs-wrapper .vc_tta-panel-body {
  padding: 15px 0 0 !important;
  border: transparent !important;
  background: transparent !important;
}
.vertical-tabs-wrapper iframe {
  width: 100%;
}
.vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a span {
  color: var(--grey-alt20) !important;
  font-weight: 300 !important;
}
.vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a {
  display: inline-flex !important;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a span {
  margin-left: 10px !important;
}
[dir=rtl] .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a span {
  margin-left: 0 !important;
  margin-right: 10px !important;
}
.vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab.vc_active .fa-map-marker-alt:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab.vc_active .fa-paw:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab.vc_active .fa-screwdriver:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab.vc_active .fa-recycle:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab.vc_active .fa-store:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab.vc_active .fa-lightbulb:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab.vc_active .fa-house-damage:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a:hover .fa-map-marker-alt:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a:hover .fa-paw:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a:hover .fa-screwdriver:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a:hover .fa-recycle:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a:hover .fa-store:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a:hover .fa-lightbulb:before, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a:hover .fa-house-damage:before {
  filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(4438%) hue-rotate(262deg) brightness(73%) contrast(129%);
}
.vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab.vc_active span, .vertical-tabs-wrapper .vc_tta-tabs-list .vc_tta-tab a:hover span {
  color: var(--primary) !important;
}
.vertical-tabs-wrapper .fa-map-marker-alt:before, .vertical-tabs-wrapper .fa-paw:before, .vertical-tabs-wrapper .fa-screwdriver:before, .vertical-tabs-wrapper .fa-recycle:before, .vertical-tabs-wrapper .fa-store:before, .vertical-tabs-wrapper .fa-lightbulb:before, .vertical-tabs-wrapper .fa-house-damage:before {
  content: "";
  display: inline-flex !important;
  width: 32px;
  height: 32px;
}
.vertical-tabs-wrapper .fa-map-marker-alt:before {
  background: url("../images/icon-location.svg") center center no-repeat;
}
.vertical-tabs-wrapper .fa-paw:before {
  background: url("../images/icon-paw.svg") center center no-repeat;
}
.vertical-tabs-wrapper .fa-screwdriver:before {
  background: url("../images/icon-knife.svg") center center no-repeat;
}
.vertical-tabs-wrapper .fa-recycle:before {
  background: url("../images/icon-recycle.svg") center center no-repeat;
}
.vertical-tabs-wrapper .fa-store:before {
  background: url("../images/icon-shop.svg") center center no-repeat;
}
.vertical-tabs-wrapper .fa-lightbulb:before {
  background: url("../images/icon-bulb.svg") center center no-repeat;
}
.vertical-tabs-wrapper .fa-house-damage:before {
  background: url("../images/icon-house.svg") center center no-repeat;
}
.vertical-tabs-wrapper .wpb_wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .vertical-tabs-wrapper .wpb_wrapper {
    display: block;
  }
}
.vertical-tabs-wrapper .tab, .vertical-tabs-wrapper .tabcontent {
  background-color: var(--white);
  border-radius: 12px;
}
.vertical-tabs-wrapper .tab {
  float: left;
  border: none;
  background-color: var(--white);
  width: 40%;
  min-height: 300px;
}
@media (max-width: 992px) {
  .vertical-tabs-wrapper .tab {
    width: 100%;
    margin-bottom: 20px;
  }
}
.vertical-tabs-wrapper .tab button {
  display: block;
  background-color: inherit;
  color: var(--black);
  padding: 22px 16px;
  width: 100%;
  border: none;
  border-radius: 12px;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}
.vertical-tabs-wrapper .tab button.d-flex {
  display: flex;
}
.rtl .vertical-tabs-wrapper .tab button {
  text-align: right;
}
.vertical-tabs-wrapper .tab button.active, .vertical-tabs-wrapper .tab button:hover {
  background-color: var(--purple-light);
}
.vertical-tabs-wrapper .tab button.active .icon-wrapper > div, .vertical-tabs-wrapper .tab button:hover .icon-wrapper > div {
  background: var(--white);
}
.vertical-tabs-wrapper .tab button.active .icon-wrapper > div img, .vertical-tabs-wrapper .tab button:hover .icon-wrapper > div img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(4438%) hue-rotate(262deg) brightness(73%) contrast(129%);
}
.vertical-tabs-wrapper .tab button p {
  margin: 0;
}
.vertical-tabs-wrapper .tabcontent {
  float: left;
  margin-left: 24px;
  padding: 24px;
  border: none;
  width: calc(60% - 24px);
  min-height: 300px;
}
.rtl .vertical-tabs-wrapper .tabcontent {
  margin-left: 0;
  margin-right: 24px;
}
@media (max-width: 992px) {
  .vertical-tabs-wrapper .tabcontent {
    width: 100%;
    margin-left: 0;
  }
  .vertical-tabs-wrapper .tabcontent .d-flex {
    display: block;
  }
}
.vertical-tabs-wrapper .tabcontent.links-column-wrapper ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.vertical-tabs-wrapper .tabcontent.links-column-wrapper a {
  display: inline-block;
  line-height: 1.7;
  color: var(--grey-alt30);
  text-decoration: none;
}
.vertical-tabs-wrapper .tabcontent.links-column-wrapper a:hover {
  color: var(--primary);
}
.vertical-tabs-wrapper .tabcontent.links-column-wrapper .link-column {
  width: 50%;
}
@media (max-width: 992px) {
  .vertical-tabs-wrapper .tabcontent.links-column-wrapper .link-column {
    width: 100%;
  }
}
.vertical-tabs-wrapper .tabcontent ul {
  margin-bottom: 20px;
}
.vertical-tabs-wrapper .tabcontent ul li strong {
  font-weight: normal;
}
.vertical-tabs-wrapper .tabcontent h5 {
  font-size: 16px;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .vertical-tabs-wrapper .vc_tta-tabs-list {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: auto !important;
  }
  .vertical-tabs-wrapper .vc_tta-panel-heading {
    display: none !important;
  }
  .vertical-tabs-wrapper .vc_tta-tabs-container {
    display: block !important;
  }
}

/* Accordion */
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
  left: auto !important;
  right: 20px;
}
.rtl .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {
  right: auto !important;
  left: 20px;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left.vc_tta-panel-title > a {
  padding-left: 10px !important;
}
.rtl .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left.vc_tta-panel-title > a {
  padding-right: 20px;
}
.vc_tta.vc_tta-accordion .accordion-content {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .vc_tta.vc_tta-accordion .accordion-content {
    display: block;
  }
  .vc_tta.vc_tta-accordion .accordion-content .d-flex {
    display: block;
  }
}
.vc_tta.vc_tta-accordion .accordion-content .link-wrapper {
  display: flex;
  align-items: center;
}
.vc_tta.vc_tta-accordion .accordion-content .location-wrapper {
  margin-right: 20px;
}
.vc_tta.vc_tta-accordion .vc_tta-panel-heading, .vc_tta.vc_tta-accordion .vc_tta-panel-body {
  background: var(--white) !important;
}
.vc_tta.vc_tta-accordion .vc_tta-panel-title {
  font-weight: 16px !important;
  font-weight: 300 !important;
}

/* Rumour card */
.rumourCard {
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--white);
  background-clip: border-box;
  border: 1px solid #efefef;
  border-radius: 15px;
  padding-bottom: 15px;
  margin-left: 10px;
}
.rumourCard .card-header {
  background-color: var(--primary) !important;
  color: var(--white);
  border-top-left-radius: 15px !important;
  border-top-right-radius: 15px !important;
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
}
.rumourCard .card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}
.rumourCard .btn-send:hover, .rumourCard .btn-send:focus {
  opacity: 0.8;
  text-decoration: none;
  color: var(--white);
}

*[dir=rtl] .rumourCard {
  margin-right: 10px;
  margin-left: 0px;
}

.bg-card {
  background: var(--grey-alt21);
  padding: 40px 20px 0;
  border-radius: 30px;
}
.bg-card .svgImage2 {
  width: 120px;
  height: 120px;
  border: 3px solid var(--grey-dark);
  border-radius: 100%;
  text-align: center;
  padding: 10px;
  vertical-align: middle;
  margin: 0 auto;
}
.bg-card .svgImage2 img {
  width: 60px;
  height: 60px;
  max-width: 100%;
  position: relative;
  top: 17px;
}
.bg-card .mText {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
  text-align: center;
  display: block;
  line-height: 1.1;
}
.bg-card .servicenewCards {
  background: var(--white);
  box-shadow: 0px 0px 5px #c9c7c7;
  border-radius: 20px;
  margin-bottom: 50px !important;
  padding: 20px 20px 10px;
}
.bg-card .cardHolder {
  width: calc(33.3% - 5px);
  display: inline-block;
  margin: 0 auto;
  padding: 0 5px;
}
.bg-card .singleCard {
  background: var(--white);
  border: 1px solid var(--grey-alt22);
  border-radius: 10px;
  padding: 10px;
  height: 100%;
  display: table;
  min-height: 115px;
  vertical-align: middle;
  width: 100%;
}
.bg-card .singleCard:hover {
  background: var(--grey-alt1);
  border-color: var(--grey-alt1);
}
.bg-card .singleCard:hover .imgHolder {
  background: var(--white);
  border-color: var(--white);
}
.bg-card .svgImage {
  width: 65px;
  vertical-align: middle;
  float: left;
  height: 100%;
  position: relative;
}
.bg-card .svgImage svg {
  width: 40px;
  height: 35px;
  max-width: 100%;
  position: relative;
  top: 0;
}
.bg-card .imgHolder {
  width: 65px;
  height: 65px;
  border: 3px solid var(--grey-dark);
  border-radius: 100%;
  padding: 12px;
  margin: 0 auto;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.bg-card .otherDetails {
  display: inline-block;
  position: relative;
  text-align: left;
  width: calc(100% - 80px);
  height: 100%;
  margin-right: -10px;
  margin-left: 20px;
}
.bg-card .serviceName {
  background: none !important;
  color: #333 !important;
  padding: 0 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  font-size: 14px;
  right: 0;
  margin: 0 4px !important;
  text-decoration: none;
}

.rtl .bg-card .serviceName {
  right: 10px;
  text-align: right;
}

/* Cards */
.cards-wrapper.vc_column-gap-25 {
  margin-left: -15px;
  margin-right: -15px;
  overflow: visible;
}
@media (max-width: 992px) {
  .cards-wrapper.vc_column-gap-25 {
    flex-wrap: nowrap;
    overflow: auto;
  }
}
.cards-wrapper.no-card-link {
  margin: 0 -15px;
  display: flex;
  flex-flow: row wrap;
}
.cards-wrapper.no-card-link .vc_column-inner:before {
  visibility: hidden !important;
}
.cards-wrapper .card {
  width: 25%;
  padding: 12.5px;
  display: flex;
}
@media (max-width: 992px) {
  .cards-wrapper .card {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cards-wrapper .card {
    width: 100%;
  }
}
.cards-wrapper .card .wpb_content_element,
.cards-wrapper .card .wpb_content_element a {
  width: 100%;
}
.cards-wrapper .card .card-content {
  padding: 24px 15px;
}
.cards-wrapper .card .card-content .card-details h4, .cards-wrapper .card .card-content .card-details p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cards-wrapper .card .card-content .card-details p {
  -webkit-line-clamp: 3;
}
.cards-wrapper .card .wpb_content_element {
  margin-bottom: 0;
}
.cards-wrapper .card .wpb_content_element a {
  display: inline-block;
  padding: 24px 15px;
}
.cards-wrapper .card .wpb_content_element .btn-purple {
  display: flex;
  padding: 10px 18px;
  justify-content: center;
  margin-top: 10px !important;
  border-radius: 8px !important;
}
.cards-wrapper .card .vc_column-inner {
  background: var(--white);
  border-radius: 12px;
  position: relative;
}
.cards-wrapper .card .vc_column-inner:before {
  background: url("../images/icon-arrow-right-purple.svg") center center no-repeat;
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  visibility: hidden;
}
.rtl .cards-wrapper .card .vc_column-inner:before {
  left: auto;
  right: 15px;
  transform: rotate(180deg);
}
.cards-wrapper .card .vc_column-inner:hover {
  box-shadow: 0px 24px 48px -12px rgba(16, 24, 40, 0.18);
}
.cards-wrapper .card .vc_column-inner:hover img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(4438%) hue-rotate(262deg) brightness(73%) contrast(129%);
}
.cards-wrapper .card .vc_column-inner:hover:before {
  visibility: visible;
}
.cards-wrapper .card a, .cards-wrapper .card a:hover {
  text-decoration: none;
}
.cards-wrapper .card img {
  height: 42px;
}
.cards-wrapper .card p {
  margin: 0;
  font-size: 14px;
  color: var(--grey-alt20);
}
.cards-wrapper .card h4 {
  margin: 15px 0;
  line-height: 24px;
  font-size: 16px;
  color: var(--secondary);
}

/* Tables */
table th {
  font-weight: 600;
  padding: 10px !important;
  text-align: left;
  background: var(--grey-alt12);
  color: var(--white);
}

.dataTables_wrapper .dataTables_paginate {
  float: unset;
  text-align: center;
  margin: 0 auto;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 0;
  border: 1px solid var(--grey-dark) !important;
  font-weight: normal;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--grey-dark);
  color: var(--white) !important;
  cursor: pointer;
  margin-top: 0;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  width: auto;
  opacity: 1;
}
.dataTables_wrapper .dataTables_paginate .paginate_button .disabled, .dataTables_wrapper .dataTables_paginate .paginate_button .disabled:hover {
  color: var(--grey-dark) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  opacity: 0.8;
  background: var(--grey-dark) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  color: var(--white) !important;
}

/* Search for inner pages */
/* Top search section */
.topSearchButtonSection {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}
.topSearchButtonSection input:focus, .topSearchButtonSection input:active {
  outline: 0;
}
.topSearchButtonSection input:focus-visible {
  outline: 2px solid #000 !important;
  outline-offset: 2px !important;
}
.topSearchButtonSection input.search-field {
  background-color: var(--white);
  border-radius: 8px;
  padding: 0px 60px 0 15px;
  border: 1px solid var(--grey-alt13);
  width: 100%;
  height: 55px;
  color: var(--grey-alt2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.topSearchButtonSection input.search-field:focus, .topSearchButtonSection input.search-field:active {
  outline: 0;
}
.topSearchButtonSection input.search-field:focus-visible {
  outline: 2px solid #000 !important;
  outline-offset: 2px !important;
}
.topSearchButtonSection input.search-field .searchBtnSubmit input::placeholder, .topSearchButtonSection input.search-field .searchBtnSubmit input::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: inherit;
  opacity: 1;
  /* Firefox */
}
.topSearchButtonSection .searchBtnSubmit {
  position: absolute;
  right: 0;
  top: 50%;
  width: auto;
  transform: translate(-10px, -50%);
}
.topSearchButtonSection .searchBtnSubmit input {
  background-image: url(/wp-content/themes/dubaimunicipality/assets/images/icon-search.svg);
  background-color: transparent;
  border: 0;
  background-repeat: no-repeat;
  width: 28px;
  height: 35px;
  background-size: 100%;
  font-size: 0;
  background-position: 0 2px;
  margin-right: 10px;
}
.topSearchButtonSection .searchBtnSubmit input::placeholder, .topSearchButtonSection .searchBtnSubmit input::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: inherit;
  opacity: 1;
}
.topSearchButtonSection .reducedpadding label {
  width: 100%;
}
.topSearchButtonSection .reducedpadding label select.newsortfield {
  width: 100%;
}
.topSearchButtonSection.media-center label {
  width: 100%;
  clip: inherit;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 2px 25px;
  border: 1px solid #cdcdcd;
  background: var(--white);
  border-radius: 10px;
}
.topSearchButtonSection.media-center .topSortBy label {
  padding: 0px;
  border: 0px solid #cdcdcd;
  background: transparent;
  color: var(--black);
}
.topSearchButtonSection.media-center .screen-reader-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey-alt3);
  border: 0;
  position: relative;
  background: none;
  height: auto;
  width: auto;
  clip: inherit;
  clip-path: inherit;
  border-right: 1px solid var(--grey-alt2);
  padding-right: 10px;
  line-height: 1.2;
}
[dir=rtl] .topSearchButtonSection.media-center .screen-reader-text {
  border-left: 1px solid var(--grey-alt2);
  border-right: 0px solid var(--grey-alt2);
  padding-left: 10px;
  padding-right: 0px;
}
.topSearchButtonSection.media-center .topSortBy label .screen-reader-text {
  display: none;
}
.topSearchButtonSection.media-center .search-field {
  padding: 0px 60px 0 100px;
  border: 0;
  font-size: 16px;
  color: var(--grey-alt3);
  border-left: 0px solid var(--grey-alt2);
  padding-left: 10px;
  border-radius: 0;
  background: transparent;
  width: calc(100% - 120px);
}

.topSortBy select#newsortfield {
  border: 0;
  background-color: transparent;
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  line-height: 91.836%;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

label.topSortBymain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
label.topSortBylable {
  color: var(--grey-alt3);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 457;
  line-height: 91.836%;
  text-transform: capitalize;
}

.vc_btn3.vc_btn3-size-lg {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  padding-right: 25px;
}

.vc_btn3:focus,
.vc_btn3:focus-visible, a.view_more:focus,
a.view_more:focus-visible, .finesTabContainer .container button:focus,
.finesTabContainer .container button:focus-visible, .txtOverlay a:focus,
.txtOverlay a:focus-visible, .flickity-button:focus, .flickity-button:focus-visible,
.shake_btn > a:focus, .shake_btn > a:focus-visible {
  outline: 3px solid var(--black) !important;
  outline-offset: 3px !important;
}

.contact-pg-title a.vc_btn3:focus, .contact-pg-title a.vc_btn3:focus-visible,
.view_more_btn-outline-light > a:focus, .view_more_btn-outline-light > a:focus-visible {
  outline: 3px solid var(--black) !important;
  background: var(--secondary) !important;
  color: var(--white) !important;
  outline-offset: 3px !important;
}

.wpb-js-composer .vc_tta.vc_general .vc_tta-tab > a:focus-visible {
  margin: 2px !important;
  outline: 2px solid var(--black) !important;
  outline-offset: 2px !important;
}

.wpb-js-composer .vc_tta.vc_general.vc_tta-o-all-clickable .vc_tta-panel .vc_tta-panel-title > a:focus-visible {
  outline: 2px solid var(--black) !important;
  z-index: 2;
  margin-top: 2px;
  outline-offset: 2px !important;
}

.wpb-js-composer .vc_tta.vc_general .vc_tta-tab > a:focus,
.wpb-js-composer .vc_tta.vc_general.vc_tta-o-all-clickable .vc_tta-panel .vc_tta-panel-title > a:focus,
.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-title > a:focus {
  outline: none;
}

.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-title > a:focus-visible {
  outline: 2px solid var(--black) !important;
  outline-offset: 2px !important;
}

/*================ Search Page Css Start ===================*/
.search-top-panel {
  background-color: var(--white);
  border-radius: 10px;
  padding: 8px 25px;
  display: flex;
  align-items: center;
  margin-top: 40px;
  border: 1px solid #cdcdcd;
}
.search-top-panel .fa-microphone-alt:before, .search-top-panel .fa-microphone-alt-slash:before {
  font-size: 25px;
  color: var(--grey-alt3);
}
.search-top-panel .fa-search:before {
  font-size: 20px;
  color: #c7c7c7;
}

button.search-voice {
  background: none;
  border: 0;
  appearance: none;
  padding-right: 11px;
  cursor: pointer;
}

.search-top-icon.search-top-search-icon {
  width: 30px;
  height: 36px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.search-top-panel .search-top-input label.sr-only {
  font-size: 18px;
  font-weight: normal;
  color: var(--grey-alt3);
  border: 0;
  position: relative;
  background: none;
  padding-right: 5px;
}

.search-top-input {
  width: 100%;
  padding-left: 5px;
}
.search-top-input input {
  width: 90%;
  height: 100%;
  border: 0;
  font-size: 18px;
  color: var(--grey-alt3);
  border-left: 1px solid var(--grey-alt2);
  padding-left: 10px;
  font-weight: normal;
}
.search-top-input input:focus, .search-top-input input:focus-visible, .search-top-input input:active {
  outline: 0;
}
.search-top-input input:focus-within {
  outline: 2px solid var(--black) !important;
  outline-offset: 2px !important;
}

button#search-top-close-btn {
  display: none;
}

.search-results-panel {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.search-results-left {
  width: 25%;
  padding-right: 15px;
}

.search-results-filters.thin-bottom-border {
  display: flex;
  flex-direction: column;
}

.search-results-filters.thin-bottom-border h2.filterby, .search-results-filters.thin-bottom-border h2.sortby,
.search-results-filters.thin-bottom-border h2.searchsuggestionslabel, .search-results-suggestions h2, h2.search-results-term {
  color: var(--grey-alt3);
  font-size: 16px;
  text-transform: uppercase;
}

.search-filter-documents-lbl, .search-filter-content-lbl, .search-filter-services-lbl,
.search-filter-all-lbl, .search-sort-services-lbl, .search-sort-content-lbl {
  padding-left: 10px;
  font-size: 16px;
  color: var(--grey-alt3);
}

.search-results-filters.thin-bottom-border label {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.search-results-right {
  width: calc(100dvw - 32%);
  display: flex;
  flex-direction: column;
}

.search-result-header.fa.fa-angle-down {
  display: none;
}

.service_block {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.search-results-result.search-result-Service.thin-bottom-border,
.search-results-result.search-result-Content.thin-bottom-border,
.search-results-result.search-result-Document.thin-bottom-border {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 10px;
  border-bottom: 1px solid #f4f5f6;
  position: relative;
}
.search-results-result.search-result-Service.thin-bottom-border:hover,
.search-results-result.search-result-Content.thin-bottom-border:hover,
.search-results-result.search-result-Document.thin-bottom-border:hover {
  background: var(--white);
}
.search-results-result.search-result-Service.thin-bottom-border:hover h2.search-results-result-title,
.search-results-result.search-result-Content.thin-bottom-border:hover h2.search-results-result-title,
.search-results-result.search-result-Document.thin-bottom-border:hover h2.search-results-result-title {
  text-decoration: underline;
}
.search-results-result.search-result-Service.thin-bottom-border .search-result-result-info a,
.search-results-result.search-result-Content.thin-bottom-border .search-result-result-info a,
.search-results-result.search-result-Document.thin-bottom-border .search-result-result-info a {
  display: block;
  color: var(--grey-alt3);
  text-decoration: none;
}

.search-result-document-more-info {
  display: none;
  position: absolute;
  right: 0;
  background: var(--white);
  border: 1px solid var(--grey-alt2);
  width: 50%;
  top: 0 !important;
  padding: 15px 10px;
  z-index: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.search-result-document-more-info .more-info-text h3, .search-result-document-more-info .more-info-file, .search-result-document-more-info .more-info-date {
  margin: 0;
}
.search-result-document-more-info .more-info-actions {
  margin: 10px 0 0;
}
.search-result-document-more-info:hover + .search-result-document-more-info {
  display: none;
  position: absolute;
}

.search-results-result .fa-info-circle:before {
  content: "\f05a";
  font-size: 18px;
  color: var(--grey-alt3);
}

.search-result-result-img {
  width: 100px;
  height: 100px;
  display: flex;
  margin-right: 1.2rem;
}
.search-result-result-img img {
  width: 100px;
  object-fit: cover;
  max-width: 100px;
}

.search-result-image-placeholder {
  width: 100px;
  height: 100px;
}

.search-result-result-info {
  width: 100%;
}

p.search-results-result-desc {
  padding: 0;
  margin: 10px 0 0;
  line-height: 21px;
  color: #323232;
}
p.search-results-result-desc em {
  font-weight: 500;
  color: var(--black);
  font-style: inherit;
}

.search-results-result-cat {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px;
}

h2.search-results-result-title {
  margin: 0;
  font-weight: normal;
}
h2.search-results-result-title em {
  font-weight: 600;
  font-style: inherit;
}

ul.search-results-suggestions-list {
  padding-left: 30px;
}
ul.search-results-suggestions-list li {
  font-size: 16px;
  color: var(--grey-alt3);
}

.search-paging-panel,
.search-results-capture-preview {
  display: none;
}

.search-results-count {
  font-size: 16px;
  margin-bottom: 10px;
}

p.no-searchMsg {
  font-size: 16px;
}

.search-results-filters.thin-bottom-border label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.search-results-filters.thin-bottom-border label input ~ span.checkmark:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: solid 1px var(--grey-alt3);
  border-radius: 5px;
}
.search-results-filters.thin-bottom-border label input ~ span.checkmark:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  display: inline-block;
  transform: rotate(45deg);
  height: 13px;
  width: 7px;
  opacity: 0;
  border-bottom: 2px solid #78b13f;
  border-right: 2px solid #78b13f;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-results-filters.thin-bottom-border label input ~ span.checkmark:checked ~ span.checkmark::after {
  opacity: 1;
}

button.search-paging-pages-page {
  border: 2px solid transparent;
  background: no-repeat;
  padding: 0;
  margin: 0 2px;
  width: 54px;
  height: 54px;
  border-radius: 8px;
}

.search-paging-pages-page:first-child div {
  display: none;
}

button.search-paging-pages-page.search-paging-current {
  border: 2px solid var(--grey-alt1);
}

button.search-paging-pages-all {
  background: no-repeat;
  border: 2px solid var(--grey-alt1);
  padding: 8px;
  color: var(--grey-alt3); /*688CBA;*/
  border-radius: 7px;
  margin-top: 20px;
  font-size: 16px;
}

.search-paging-pages span {
  color: var(--grey-alt3);
  font-size: 32px;
  margin-left: 0;
}

.subpage-right-content p img {
  max-height: 150px;
  margin: 0px 10px;
  width: auto;
}

/*================ Search Page Css End ===================*/
/* Forms */
.container form input[type=text], .container form input[type=tel],
.container form input[type=number], .container form input[type=email],
.container form input[type=password], .container form textarea, .container form select {
  width: 100%;
  padding: 10px 16px;
  border-radius: 6px;
  background-color: var(--white) !important;
  border: 1px solid var(--grey-alt4);
  resize: none;
}
.container form input[type=submit][disabled], .container form button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--grey-alt14) !important;
  pointer-events: none;
}
.container form input[type=submit], .container form button {
  margin: 20px 0 0;
  display: flex;
  border-radius: 6px;
  background-color: var(--primary) !important;
  color: var(--white);
  border-width: 1px;
  padding: 10px 26px 10px 26px;
  line-height: normal;
  height: auto;
  position: relative;
  font-size: 16px;
  min-width: inherit;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  justify-content: center;
  width: auto;
  border-color: var(--primary) !important;
  align-items: center;
}
.container form input[type=submit] .fa-spinner, .container form button .fa-spinner {
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.wpcf7-list-item {
  margin: 0 10px 0 0;
  position: relative;
}
.wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  top: -4px;
}

.wpcf7 [type=checkbox], .wpcf7 [type=radio] {
  width: 18px;
  height: 18px;
  margin: 0 5px;
}

.submit-form-btn .fa-long-arrow-right {
  display: none;
}

.wpcf7-form-control-wrap {
  margin-top: 5px;
}

[dir=rtl] .farmers-form, [dir=rtl] .wpcf7 input[type=url], [dir=rtl] .wpcf7 input[type=email], [dir=rtl] .wpcf7 input[type=tel] {
  direction: rtl;
}
[dir=rtl] .wpcf7-list-item {
  margin: 0 0 5px 10px;
}
[dir=rtl] .wpcf7-list-item [type=checkbox] {
  left: inherit;
  right: 0;
}
[dir=rtl] .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 0;
  padding-right: 5px;
}

/* Posts */
.display-posts-listing {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}
.display-posts-listing .listing-item {
  padding-bottom: 50px;
  height: 100%;
  position: relative;
}
.display-posts-listing .listing-item .img-details {
  width: 100%;
  padding-bottom: 55%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 6px;
}
.display-posts-listing .listing-item .posts-link a.btn {
  position: absolute;
  color: var(--primary);
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  bottom: 30px;
}
.display-posts-listing .listing-item .posts-link a.btn:hover {
  text-decoration: underline;
}
.display-posts-listing .listing-item .posts-link a.btn:after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-left: 5px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
}
.display-posts-listing .content-box {
  padding: 15px 0;
}
.display-posts-listing .content-box .post-title {
  margin-bottom: 10px;
}
.display-posts-listing .nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.display-posts-listing span.page-numbers.current {
  padding: 14px 17px 12px 17px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 2px solid var(--grey-alt1);
  background: var(--secondary, #FFF);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.post-date {
  display: none;
}

.post-category {
  display: none;
}

.post-title a.title {
  color: var(--grey-alt3);
  font-family: "Dubai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 11px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}

.post-title a.title:hover {
  text-decoration: underline;
}

.content-box .post-excerpt {
  color: var(--secondary);
  line-height: 1.4;
  margin-bottom: 20px;
}

.display-posts-pagination {
  width: 100%;
  text-align: right;
  padding-bottom: 60px;
}
.display-posts-pagination .page-numbers {
  color: var(--grey-alt2);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 556;
  line-height: 91.836%;
  text-transform: capitalize;
  text-decoration: none;
  padding: 14px 17px 12px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  background: var(--white);
  margin: 0 5px;
  border-radius: 8px;
}
.display-posts-pagination .page-numbers:hover {
  border: 2px solid var(--white);
}

.map_section_block {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 20px;
}
.map_section_block .wpb_content_element .wpb_wrapper {
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0px 0px 5px 0px rgba(144, 137, 137, 0.15);
  padding: 24px;
  position: relative;
  height: 100%;
}
.map_section_block .wpb_wrapper, .map_section_block .vc_column-inner, .map_section_block .wpb_content_element {
  height: 100%;
}
.map_section_block .wpb_content_element {
  margin-bottom: 0px;
}
.map_section_block pre {
  position: absolute;
  left: 24px;
  top: 30px;
  margin: 0;
}
.map_section_block h5 {
  margin: 0px;
  color: var(--secondary);
  padding-left: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.map_section_block p {
  margin: 0;
  padding-left: 40px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.map_section_block ul {
  margin: 0;
  padding: 0 0 0 40px;
}
.map_section_block li {
  list-style: none;
  color: var(--grey-alt18);
}

.helpLineDetails {
  margin: 0px -5px;
}

.mapWrap {
  margin: 0px -10px;
}

.wpb_gmaps_widget .wpb_wrapper {
  background-color: var(--grey-alt19);
  padding: 0 5px;
}

.block_section {
  padding-left: 15px;
  padding-right: 15px;
}
.block_section .block_descreption {
  margin: 0;
  box-shadow: 0px 0px 3px 2px rgba(215, 215, 215, 0.11);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}
.block_section .block_descreption h2 {
  margin: 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  padding-bottom: 12px;
  color: var(--secondary);
}
.block_section .block_descreption .wpb_wrapper {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}
.block_section .block_descreption h4 {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  color: var(--secondary);
  padding-left: 23px;
  position: relative;
  padding-bottom: 3px;
}
.block_section .block_descreption h4 img {
  position: absolute;
  left: 0;
  width: 15px;
  top: 3px;
}
.block_section .block_descreption p {
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding-bottom: 10px;
  color: var(--secondary);
}
.block_section .block_descreption p a {
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--primary);
  padding: 5px 15px 5px 15px;
  font-size: 16px;
  color: var(--primary);
  position: relative;
  transition: all 1s ease-out;
}
.block_section .block_descreption p a:after {
  content: "\f061";
  width: 18px;
  height: 18px;
  font-size: 12px;
  line-height: normal;
  font-family: "Font Awesome 5 Pro";
  margin-left: 8px;
  background-color: var(--grey-alt22);
  border-radius: 100%;
  right: 18px;
  top: 48%;
  transform: translateY(-50%);
  display: none;
}
.block_section .block_descreption p a:hover {
  background-color: var(--primary);
  color: var(--white);
}
.block_section .block_descreption ul {
  margin: 0;
  padding: 10px 0px 10px 0px;
  position: relative;
  border-top: 1px solid var(--grey-alt4);
}
.block_section .block_descreption ul.list_menu {
  border-top: 0;
}
.block_section .block_descreption ul.list_menu li {
  padding: 0 !important;
}
.block_section .block_descreption li {
  list-style: none;
  position: relative;
}
.block_section .block_descreption li:first-child {
  padding: 0 0 10px 28px;
}
.block_section .block_descreption li:first-child img {
  position: absolute;
  left: 0;
  top: 0;
}
.block_section .block_descreption a {
  /* color: #61A3F1; */
  transition: all 0.5s ease;
}
.block_section .block_descreption a:hover {
  color: #7447c8;
}
.block_section .block_descreption .wpb_content_element {
  margin: 0;
}
.block_section.vertical_block_section .block_descreption {
  padding: 0;
  box-shadow: none;
  padding-top: 24px;
}
.block_section.vertical_block_section .block_descreption ul ~ p {
  border-top: solid 0px var(--grey-alt4);
}

.block_map {
  margin: 0;
}

.vertical_block_section > .vc_column-inner > .wpb_wrapper {
  padding: 10px;
  box-shadow: 0px 0px 3px 2px rgba(215, 215, 215, 0.11);
  border-radius: 8px;
  height: 100%;
  background: var(--white);
}
.vertical_block_section h2 {
  margin: 10px 0 20px;
  font-size: 24px;
  color: var(--secondary);
  font-weight: 300;
}
.vertical_block_section .wpb_wrapper iframe {
  border-radius: 8px;
  overflow: hidden;
}
.vertical_block_section .wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}

.two-column-layout {
  display: flex;
}
.two-column-layout .img-wrapper {
  width: 280px;
}
.two-column-layout .img-side-content {
  width: calc(100% - 280px);
  padding: 0 24px;
}
@media (max-width: 768px) {
  .two-column-layout .img-side-content .d-flex {
    display: block;
  }
  .two-column-layout .img-side-content .width-50 {
    width: 100%;
  }
}
.two-column-layout .img-side-content h5 {
  font-size: 16px;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 15px;
}
.two-column-layout .img-side-content ul {
  padding-left: 27px;
}
[dir=rtl] .two-column-layout .img-side-content ul {
  padding-left: 0;
  padding-right: 27px;
}
@media (max-width: 992px) {
  .two-column-layout {
    display: block;
  }
  .two-column-layout .img-wrapper, .two-column-layout .img-side-content {
    width: 100%;
  }
  .two-column-layout .img-side-content {
    margin-top: 20px;
    padding: 0;
  }
}

/* icon and content grid */
.grid-icon-content-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .grid-icon-content-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-icon-content-wrapper p {
  font-weight: 300;
  margin-top: 0;
}

.masonary {
  margin-bottom: 0;
}
.masonary.equal-height.no-hover {
  pointer-events: none;
}
.masonary.equal-height .vc_gitem-zone-a {
  height: 280px;
}
.masonary.equal-height .vc_gitem-zone-b {
  display: none;
}

/* List */
.nested-ordered-list {
  padding-left: 15px;
}
[dir=rtl] .nested-ordered-list {
  padding-left: 0;
  padding-right: 15px;
}
.nested-ordered-list > li {
  font-weight: 300 !important;
  margin-bottom: 25px;
}
.nested-ordered-list > li ul {
  padding-left: 20px;
}
[dir=rtl] .nested-ordered-list > li ul {
  padding-left: 0;
  padding-right: 20px;
}
.nested-ordered-list > li ul li {
  list-style-type: disc;
  font-weight: normal !important;
}

.single-image-banner img {
  width: 100%;
  border-radius: 7px;
}
@media (max-width: 992px) {
  .single-image-banner img {
    object-fit: cover;
    width: auto;
    height: 213px;
  }
}
.single-image-banner .wpb_wrapper {
  position: relative;
}
.single-image-banner .contact-pg-title {
  position: absolute;
  bottom: 0;
  color: var(--white);
  padding: 10px 30px;
}
.single-image-banner .contact-pg-title h2 {
  color: var(--white);
  margin-bottom: 0;
  line-height: 1;
  font-weight: inherit;
}
.single-image-banner .contact-pg-title p {
  line-height: 1;
}

hr {
  border: 0;
  border-bottom: 1px solid var(--grey-alt5);
}

.link, .vc_pageable-load-more-btn .vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat {
  color: var(--primary) !important;
  text-decoration: none;
}
.link:hover, .vc_pageable-load-more-btn .vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:hover {
  text-decoration: underline;
}
.link:after, .vc_pageable-load-more-btn .vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:after {
  content: "";
  background: url("../images/icon-arrow-right-purple.svg") center center no-repeat;
  position: absolute;
  width: 24px;
  height: 24px;
  margin: 0 10px;
}
.rtl .link:after, .rtl .vc_pageable-load-more-btn .vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:after, .vc_pageable-load-more-btn .rtl .vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:after {
  transform: rotate(180deg);
}

/* search block */
.search-block {
  display: none;
}
.search-block input {
  color: var(--grey-alt28);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border: solid 1px var(--grey-alt27) !important;
  border-radius: 8px !important;
  padding: 10px 70px 10px 14px !important;
  outline: none !important;
  background-color: var(--white) !important;
}
.search-block .search-icon {
  position: absolute;
  top: 10px;
  right: 15px;
}

.list-searchresults {
  list-style: none;
  padding: 0;
}
.list-searchresults li, .list-searchresults a {
  width: 100%;
}
.list-searchresults li + li {
  margin-top: 15px;
}
.list-searchresults li a {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 16px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-searchresults .well {
  background: #F4F3FF;
  color: var(--primary);
  height: auto;
  text-decoration: none;
  padding: 4px 8px;
  line-height: 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 300;
}

.custom-file-label {
  background: var(--primary) !important;
}

.get-intouch-callout {
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  padding: 28px 20px 24px;
}
.get-intouch-callout h4, .get-intouch-callout p {
  font-size: 20px;
}
.get-intouch-callout h4 {
  margin-top: 25px;
  margin-bottom: 0;
}
.get-intouch-callout p {
  color: var(--grey-alt20);
  margin: 10px 0 0;
}

.dda-header-container .skip-to-main:focus {
  background: var(--white);
}

/* Discover Dubai start */
.discoverDubaiWrap {
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0px 4px 7px 4px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.discoverDubaiInnerContent {
  padding: 25px;
}
.discoverDubaiInnerContent .vc_column-inner {
  padding-top: 0 !important;
}
.discoverDubaiInnerContent h2 {
  color: var(--blue);
  font-size: 32px;
  font-weight: 100;
  text-transform: capitalize;
  margin: 0;
}
.discoverDubaiInnerContent p {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 0;
}
.discoverDubaiInnerContent .wpb_content_element {
  margin-bottom: 0 !important;
}

.discoverDubaiImageSection .vc_column-inner {
  padding-top: 0 !important;
}
.discoverDubaiImageSection .wpb_content_element {
  margin-bottom: 0 !important;
}
.discoverDubaiImageSection .wpb_content_element figure {
  display: block;
}
.discoverDubaiImageSection .wpb_content_element figure .vc_single_image-wrapper {
  width: 100%;
}
.discoverDubaiImageSection .wpb_content_element figure img {
  width: 100%;
  height: 100%;
}

.discoverDubaiButton {
  margin-top: 25px;
}

.discoverDubaiImg * {
  height: 100%;
}
.discoverDubaiImg .discoverDubaiImg img {
  object-fit: cover;
}

/* Load more */
.vc_pageable-load-more-btn .vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat {
  background: transparent !important;
  font-size: 18px;
  font-weight: 500;
}
.vc_pageable-load-more-btn .vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:after {
  transform: rotate(90deg) !important;
}

.vc_gitem-zone {
  border-radius: 8px;
}

.icon-wrapper div {
  display: flex;
  padding: 7px;
  background: #F3F3F7;
  border-radius: 12px;
}

.destination-wrapper {
  width: calc(100% - 30px);
  padding-left: 15px;
}
.rtl .destination-wrapper {
  padding-left: 0;
  padding-right: 15px;
}

.vc_gitem-zone-b .vc_gitem-row-position-bottom,
.vc_gitem_row .vc_gitem-col,
.vc_custom_1418995080777 {
  height: 100%;
}

.vc_gitem_row .vc_gitem-col {
  background-color: transparent !important;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
}

/* Masonary card overlay */
.vc_gitem-animated-block,
.vc_gitem-animated-block a {
  color: var(--white);
}

.vc_grid.vc_row.vc_grid-gutter-15px .vc_grid-item {
  margin-top: 10px;
}

.vc_gitem-animated-block .vc_gitem-col {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.vc_gitem-animated-block .vc_gitem-col .vc_custom_heading, .vc_gitem-animated-block .vc_gitem-col .type-textarea {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vc_gitem-animated-block .vc_gitem-col .vc_custom_heading {
  font-size: 30px;
}
.rtl .vc_gitem-animated-block .vc_gitem-col .vc_custom_heading > div {
  text-align: right !important;
}
.vc_gitem-animated-block .vc_gitem-col .type-textarea {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Discover Dubai end */
.new_faq .vc_tta-container {
  margin: 0;
}
.new_faq .wpb_content_element {
  margin-bottom: 15px;
}
.new_faq .vc_tta-panels .vc_tta-panel-heading {
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.04);
  padding: 0 !important;
}
.new_faq .vc_tta-panels .vc_tta-panel-heading h2 a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #36394A;
  position: relative;
  padding: 16px 16px !important;
}
.new_faq .vc_tta-panels .vc_tta-panel-heading h2 a:after {
  position: absolute;
  right: 10px;
  top: 13px;
  content: "î¤„";
  font-family: icomoon;
  font-size: 28px;
  transform: rotate(90deg);
}
.new_faq .vc_tta-panels .vc_tta-panel-heading h2 i {
  display: none;
}
.new_faq .vc_tta-panel {
  margin-bottom: 10px;
}
.new_faq .vc_tta-panels .vc_active .vc_tta-panel-heading h2 a {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 4px 4px 0px 0px;
}
.new_faq .vc_tta-panels .vc_active .vc_tta-panel-heading h2 a:after {
  color: var(--white);
  transform: rotate(-90deg);
}
.new_faq .vc_tta-panels .vc_tta-panel-body {
  border-radius: 0px 0px 4px 4px;
  background: var(--white);
  box-shadow: 0px 4px 7px 4px rgba(0, 0, 0, 0.04);
  margin: 0;
  padding: 16px 16px !important;
}
.new_faq .vc_tta-panels .vc_tta-panel-body img {
  max-height: 1600px;
  width: auto;
}
.new_faq .vc_tta-panels .vc_tta-panel-body figure {
  display: flex;
  justify-content: center;
}
.new_faq .post-title strong {
  font-size: 32px;
  color: var(--secondary);
  font-weight: 100;
  text-transform: capitalize;
}

.faq-left, .faq-right {
  width: 100% !important;
}

.faq-left h3 {
  margin: 0px 0 20px 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.faq-bottom {
  padding: 0px 0px 0px 0 !important;
}
.faq-bottom a.faq-close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  font-size: 0;
  text-decoration: none;
}
.faq-bottom a.faq-close-btn:before {
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  cursor: pointer;
  font-size: 20px;
  color: #606782;
}

.faq-right p {
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.faq-right .grp {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}
.faq-right .grp button.faq-answer-btn {
  background: transparent;
  border: 1px solid #7D8091;
  border-radius: 4px;
  padding: 6px 10px;
  width: 100%;
  max-width: 56px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.faq-right .grp button.faq-answer-btn:hover {
  color: var(--white);
  background: #36394A;
}
.faq-right .grp a.faq-answer-btn {
  background: transparent;
  border: 1px solid #7D8091;
  border-radius: 4px;
  padding: 6px 10px;
  width: 100%;
  max-width: 56px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #36394A;
  transition: all 0.3s ease-in-out;
}
.faq-right .grp a.faq-answer-btn:hover {
  color: var(--white);
  background: #36394A;
}

.a.faq-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  font-size: 16px;
}

.newsFaqwrap .col-sm-12 {
  width: 100%;
  margin-bottom: 25px;
}

.aboutDubaiHistoric {
  position: relative;
  background: var(--white);
  padding: 10px;
  border-radius: 8px;
}

.aboutDubaiIcons {
  position: absolute;
  top: 23%;
  left: 0;
}

.education-section-left.left_discover_dubai.aboutDubaiRightContent {
  background: transparent;
  padding: 20px 10px !important;
}

.aboutDubaiLeft .vc_column-inner {
  height: auto !important;
  border-radius: 8px;
  min-height: 355px;
}

.menu-survey-department-menu-container .menu a, .ras-khor-submenu ul a {
  transition: all 0.5s ease-in-out;
}

.aboutDubaiButtons .vc_btn3.vc_btn3-color-white.vc_btn3-style-modern {
  border: 1px solid var(--black);
  border-radius: 8px;
  box-shadow: 0px 4px 7px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.5s ease-in-out;
  color: var(--grey-alt3);
  padding: 6px 36px;
  font-size: 16px;
}
.aboutDubaiButtons .vc_btn3.vc_btn3-color-white.vc_btn3-style-modern:hover {
  background: var(--grey-alt3);
  color: var(--white);
}

.aboutDubaiRightContent .vc_column-inner {
  padding-left: 15px;
}
.aboutDubaiRightContent h2 {
  color: var(--blue);
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  font-weight: 100;
}
.aboutDubaiRightContent p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  margin-right: 40px;
}
[dir=rtl] .aboutDubaiRightContent p {
  margin-right: 0;
}

.contactUsWrap {
  padding-left: 45px;
}
.contactUsWrap .contact-us-title {
  color: var(--grey-alt26);
  font-size: 32px;
  font-weight: 100;
}
.contactUsWrap .telephone, .contactUsWrap .hours, .contactUsWrap .location {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 40px 0 0 0;
}
.contactUsWrap .telephone .telephone-info span {
  color: var(--grey-alt26);
  font-size: 16px;
}
.contactUsWrap .telephone .telephone-info p.orange-small-label {
  color: var(--white);
  font-size: 16px;
}
.contactUsWrap .hours-info strong {
  color: var(--grey-alt26);
}
.contactUsWrap p.orange-small-label {
  color: var(--white);
  margin: 8px 0 8px 0;
}

.contact_get_in_touch.bunyan_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 16px;
  background-color: var(--white);
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.11);
  padding: 40px 32px;
  margin: 0px -10px;
}
.contact_get_in_touch.bunyan_form.spacing_remove {
  margin: 0px 0px;
}
.contact_get_in_touch .wpcf7-form-control-wrap {
  clear: both;
}
.contact_get_in_touch .wpcf7-form-control-wrap .error {
  color: #f00;
}
.contact_get_in_touch h2 {
  margin: 0 !important;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 20px;
}
.contact_get_in_touch label {
  display: block;
  font-size: 16px;
  font-weight: 400;
}
.contact_get_in_touch p {
  clear: both;
  margin: 0;
  font-size: 16px;
}
.contact_get_in_touch p label {
  position: relative;
}
.contact_get_in_touch p input[type=checkbox] {
  width: 20px;
  height: 20px;
  position: relative !important;
  margin: 0 5px !important;
  cursor: pointer;
  appearance: none;
}
.contact_get_in_touch p input[type=checkbox]:before, .contact_get_in_touch p input[type=checkbox]:after {
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}
.contact_get_in_touch p input[type=checkbox]:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 2px solid #8190B9;
  display: block;
  background-color: transparent;
}
.contact_get_in_touch p input[type=checkbox]:checked:before {
  border-color: var(--primary) !important;
  background-color: var(--primary) !important;
}
.contact_get_in_touch p input[type=checkbox]:checked:after {
  content: "L";
  color: var(--white);
  width: 11px;
  margin: -1px 3px;
  font-family: arial;
  -ms-transform: scaleX(-1) rotate(-42deg); /* IE 9 */
  -webkit-transform: scaleX(-1) rotate(-42deg); /* Chrome, Safari, Opera */
  transform: scaleX(-1) rotate(-42deg);
}
.contact_get_in_touch p span.wpcf7-list-item {
  margin: 0;
}
.contact_get_in_touch .contact_form_box .vc_col-sm-6 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.contact_get_in_touch input.feedbackBtnEnquiry, .contact_get_in_touch p input.wpcf7-form-control.wpcf7-submit {
  margin: 20px 0 0;
  display: flex;
  border-radius: 6px;
  background-color: var(--primary) !important;
  color: var(--white);
  border-width: 1px;
  padding: 10px 26px 10px 26px;
  line-height: normal;
  height: auto;
  position: relative;
  font-size: 16px;
  min-width: inherit;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  justify-content: center;
  width: 165px;
  border-color: var(--primary) !important;
}
.contact_get_in_touch input.feedbackBtnEnquiry[disabled], .contact_get_in_touch p input.wpcf7-form-control.wpcf7-submit[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #585858 !important;
  pointer-events: none;
}
.contact_get_in_touch input.feedbackBtnEnquiry, .contact_get_in_touch p input.wpcf7-form-control.wpcf7-submit.active {
  background-color: var(--grey-alt4) !important;
  border-color: var(--grey-alt4) !important;
}
.contact_get_in_touch input.feedbackBtnEnquiry:hover, .contact_get_in_touch p input.wpcf7-form-control.wpcf7-submit:hover {
  background-color: transparent !important;
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

body .contact_get_in_touch p {
  border: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  font-size: 16px !important;
  margin: 0 !important;
}

/*Sites and Buildings, Architectural Heritage and Antiquities, Collections start*/
.category_banner h2.main_h2_head, .category_banner p {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px 0;
}
.category_banner p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.topSearchButtonSection input.search-field {
  border: none !important;
}

.post-content .post-grid i.fa-long-arrow-right:before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 12px;
  margin-left: 3px;
}

.post-title strong {
  color: var(--grey-alt3);
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

.entry-content .ras-khor-submenu {
  margin-bottom: 0px;
}

.post-grid a {
  transition: all 0.5s ease-in-out !important;
}
.post-grid a:hover {
  color: var(--primary) !important;
}

.sitesBuildingsContentWrap > .vc_column-inner > .wpb_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: calc(100% - 100px);
  padding: 0px 35px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/*Dubai Beaches start*/
.imageContentWrap .vc_column-inner {
  padding: 0 !important;
}
.imageContentWrap .turtleImageContent {
  position: relative;
  padding-left: 120px;
}

.turtleImageContent p {
  font-size: 16px;
}

.turtleImage {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.dubaiBeachSection .vc_column-inner {
  background: var(--white);
  border: 1px solid #DEE6F0;
  border-radius: 8px;
  position: relative;
}
.dubaiBeachSection .vc_column-inner:hover {
  position: relative;
  bottom: 5px;
}
.dubaiBeachSection .vc_column-inner:hover:after {
  content: "";
  position: absolute;
  background-color: #7CB9FF;
  bottom: 0;
  height: 4px !important;
  width: 100% !important;
  left: 0 !important;
  top: inherit !important;
  border-radius: 0 0 8px 8px;
}
.dubaiBeachSection .finder-img img {
  width: auto;
  max-height: 60px;
  margin-bottom: 20px;
}
.dubaiBeachSection .wpb_content_element {
  margin-bottom: 0px;
}
.dubaiBeachSection .beach-page .vc_col-sm-4 {
  width: 100%;
}
.dubaiBeachSection .beach-page .vc_col-sm-4 h3 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 400;
  transition: all 0.5s ease-in;
  text-transform: capitalize;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}
.dubaiBeachSection .beach-page .vc_col-sm-4 a:hover {
  color: var(--grey-alt3);
}
.dubaiBeachSection .beach-page .vc_col-sm-4 p {
  margin: 0px !important;
  color: var(--primary);
  font-size: 17px;
  text-transform: capitalize;
}
.dubaiBeachSection .vc_col-sm-4 a {
  text-decoration: none;
  transition: all 0.5s ease-in;
}

.dubaiBeachesMainColoum .dubaiBeachSection > .vc_column-inner > .wpb_wrapper {
  padding: 50px 0;
}

.dubaiBeachesMainColoum.vc_row.vc_column-gap-10 {
  margin: 0;
}

[dir=rtl] .turtleImageContent {
  padding-right: 120px;
  padding-left: 0;
}
[dir=rtl] .turtleImage {
  right: 0;
  left: inherit;
}

/*Dubai Beaches ends*/
/*Beach Finder start*/
.dm_inner_pages_content.beach-finder {
  display: block;
}

.beach-finder .selectfilter ul li {
  background-color: var(--grey-alt29);
  width: auto;
  float: left;
  font-size: 15px;
  padding: 5px 10px;
  margin: 0px 5px;
}

.beachFinderRightContent {
  text-align: end;
}

.beachFinderColoum p.weatherp {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0;
}

.beachFinderAccordian i.vc_tta-icon::before {
  content: none;
}

.beachFinderFilter button.btn_filter_beach {
  border: none;
  border-radius: 50px;
  color: var(--primary);
  background-color: var(--grey-light);
  padding: 10px 10px;
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 130px;
  justify-content: space-around;
  cursor: pointer;
}

.new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs {
  padding: 10px 0px;
}
.new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs label {
  position: relative;
  padding-left: 30px;
}
.new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs input {
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
.new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs input ~ span.checkmark:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: solid 2px var(--grey-alt31);
  border-radius: 4px;
}
.new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs input ~ span.checkmark:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  display: inline-block;
  transform: rotate(45deg);
  height: 13px;
  width: 7px;
  opacity: 0;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs input:checked ~ span.checkmark:before {
  background-color: var(--primary);
  border-color: var(--primary);
}
.new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs input:checked ~ span.checkmark:after {
  opacity: 1;
}

.filter-options span {
  order: 1;
  padding-left: 10px;
}

.beachFinderNoteSection p {
  text-align: right;
}

.blue_flag_cont .filter-options {
  display: flex;
}
.blue_flag_cont .filter-options label {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}
.blue_flag_cont .filter-options label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
.blue_flag_cont .filter-options label input:checked ~ span.checkmark:before {
  background-color: var(--primary);
  border-color: var(--primary);
}
.blue_flag_cont .filter-options label input:checked ~ span.checkmark:after {
  opacity: 1;
}
.blue_flag_cont .filter-options label span.checkmark:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 20px;
  height: 20px;
  border: solid 2px #8190B9;
  border-radius: 4px;
}
.blue_flag_cont .filter-options label span.checkmark:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  display: inline-block;
  transform: rotate(45deg);
  height: 13px;
  width: 7px;
  opacity: 0;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.beachFinderAccordianMap .vc_col-sm-4 {
  background: var(--white);
  padding: 20px;
}
.beachFinderAccordianMap .vc_tta-panel .vc_tta-panel-heading {
  background: var(--white) !important;
  box-shadow: none !important;
}
.beachFinderAccordianMap span.map-text-mobile {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}

.beachFinderMap .wpgmza-infowindow p.wpgmza_infowindow_link {
  margin: 0px !important;
}
.beachFinderMap .wpgmza-infowindow p.wpgmza_infowindow_link a {
  transition: all 0.5s ease-in;
}
.beachFinderMap .wpgmza-infowindow p.wpgmza_infowindow_link a:hover {
  text-decoration: none;
}
.beachFinderMap .wpgmza-infowindow p.wpgmza_infowindow_title {
  margin: 0px 0 !important;
}
.beachFinderMap .wpgmza-modern-directions-box .wpgmza-directions-options__section {
  background: var(--grey-alt3) !important;
}
.beachFinderMap .wpgmza-modern-directions-box input.wpgmaps_get_directions {
  background: var(--grey-alt3) !important;
  border: 1px solid transparent;
  cursor: pointer;
}
.beachFinderMap .wpgmza-modern-directions-box input.wpgmaps_get_directions:hover {
  background: var(--white) !important;
  color: var(--grey-alt3);
  border: 1px solid var(--grey-alt3);
}
.beachFinderMap .wpgmza-modern-directions-box .wpgmaps_directions_outer_div .wpgmaps_add_waypoint {
  color: rgba(0, 0, 0, 0.5) !important;
}
.beachFinderMap .wpgmza-modern-directions-box .wpgmaps_directions_outer_div .wpgmaps_add_waypoint:hover {
  color: #000 !important;
}
.beachFinderMap .wpgmza-modern-directions-box .wpgmza-directions-box__title,
.beachFinderMap .wpgmza-modern-directions-box .wpgmaps_directions_outer_div .wpgmza-directions-box-inner .wpgmza-directions-actions,
.beachFinderMap .wpgmza-modern-directions-box .wpgmaps_directions_outer_div .wpgmza-directions-box-inner .wpgmza-directions-actions input {
  background: #F4F8FC !important;
  color: var(--grey-alt3) !important;
}
.beachFinderMap .wpgmaps_add_waypoint i {
  color: rgba(0, 0, 0, 0.5) !important;
}
.beachFinderMap .fa-filter:before {
  content: "\f00d";
}

[dir=rtl] .map-container {
  padding-left: 0px;
  padding-right: 35px;
}
[dir=rtl] .new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs input {
  left: inherit;
  right: 0;
}
[dir=rtl] .new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs input ~ span.checkmark:before {
  left: inherit;
  right: 0;
}
[dir=rtl] .new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs input ~ span.checkmark:after {
  right: 6px;
  left: inherit;
}
[dir=rtl] .new_faq .vc_tta-panels .vc_tta-panel-body .filter-inputs label {
  padding-left: 0;
  padding-right: 30px;
}
[dir=rtl] .beachFinderAccordianMap span.vc_tta-title-text {
  margin-left: 0;
  margin-right: 14px;
}

/*Beach Finder end*/
/*beach finder inner pages start*/
.new_faq .cpb_container {
  background: var(--white);
  padding: 20px;
}
.new_faq .cpb_accordion_contianer {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #36394A;
  position: relative;
  margin: 0 0 10px 0;
}
.new_faq .cpb_accordion {
  padding: 16px 16px !important;
}
.new_faq .cpb_accordion_contianer .cpb_active {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 4px 4px 0px 0px;
}
.new_faq .cpb_panel {
  display: none;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  padding: 15px 0px;
}
.new_faq .cpb_panel p {
  padding: 10px 10px;
  margin: 0;
  border: none;
}
.new_faq button.vc_btn3.vc_btn3-size-md {
  font-size: 16px;
  padding: 5px 20px;
  transition: all 0.5s ease;
}
.new_faq button.vc_btn3.vc_btn3-size-md:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary);
}
.new_faq button.cpb_accordion {
  border-radius: 4px 4px 0px 0px;
  border: 1px solid var(--grey-light) !important;
  background: var(--white);
  color: #666;
}
.new_faq .cpb_accordion:before {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-size: 18px;
  color: #666;
  position: absolute;
  top: 15px;
  right: 5%;
}
.new_faq .cpb_active:before {
  content: "\f077";
  font-family: "Font Awesome 5 Pro";
  color: var(--white);
}
.new_faq p.service_icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.beachFinderInnerPagesCol .socialicon {
  text-align: right;
}
.beachFinderInnerPagesCol .socialicon a img {
  transition: all 0.5s ease-in;
}
.beachFinderInnerPagesCol .socialicon a:is(:hover, :focus-within) img {
  filter: invert(21%) sepia(18%) saturate(843%) hue-rotate(193deg) brightness(94%) contrast(86%);
}
.beachFinderInnerPagesCol .partners .vc_col-sm-3 {
  width: 100% !important;
}
.beachFinderInnerPagesCol .slick-next {
  right: 2%;
  left: inherit;
}
.beachFinderInnerPagesCol .slick-prev {
  left: 2%;
  z-index: 1;
}
.beachFinderInnerPagesCol .slick-prev:before {
  content: "\f053";
}
.beachFinderInnerPagesCol .slick-next:before, .beachFinderInnerPagesCol .slick-prev:before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 30px;
  font-weight: 500;
}
.beachFinderInnerPagesCol .bxslider img {
  width: 100%;
  height: auto;
}

.dm_inner_pages_content .vc_row.partners {
  margin-left: -15px;
  margin-right: -15px;
}

.partner-images {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
  align-items: center;
}
.partner-images img {
  width: 100% !important;
  max-width: 25% !important;
  padding: 10px !important;
  height: 100% !important;
}

[dir=rtl] .new_faq button.cpb_accordion::before {
  left: 5%;
  right: inherit;
}
[dir=rtl] .new_faq button.cpb_accordion {
  text-align: right;
}

.survery-links .vc_column-inner {
  padding: 35px 0;
}
.survery-links .wpb_wrapper {
  background-color: #e4eaf9;
  padding: 20px;
}
.survery-links .wpb_wrapper .vc_column-inner {
  padding: 0;
}
.survery-links .wpb_wrapper .survey_link_box-row .wpb_wrapper {
  padding: 0;
  background-color: transparent;
}
.survery-links .wpb_wrapper .survey-box-holder-row {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.survery-links .wpb_wrapper .survey-box-holder-row:before {
  display: none;
}
.survery-links .wpb_wrapper .survey-box-holder-row .survey_link_box {
  padding: 5px;
  width: 100%;
}
.survery-links .wpb_wrapper .survey-box-holder-row .survey_link_box .vc_column-inner {
  background-color: var(--white);
  padding: 0 20px;
  margin: 0;
  border-radius: 10px;
  min-height: 98px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.survery-links .wpb_wrapper .survey-box-holder-row .survey_link_box .vc_column-inner .wpb_content_element {
  margin-bottom: 0;
}
.survery-links .wpb_wrapper .survey-box-holder-row .survey_link_box .vc_column-inner p {
  margin: 0;
  background: transparent;
  font-size: 16px;
}

.survey_link_box .wpb_wrapper {
  padding: 0;
  background-color: transparent;
}

.contact-section {
  padding: 15px 0;
}
.contact-section p {
  color: var(--grey-alt3);
}
.contact-section .vc_column-inner {
  margin-top: 0;
}
.contact-section .vc_column-inner .wpb_content_element {
  margin-bottom: 0;
}

.contact-details {
  background-color: var(--white);
  border: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  padding: 10px;
  width: 46%;
  border-radius: 5px;
  margin: 10px;
  height: 100px;
  align-items: center;
  display: flex;
}
.contact-details .vc_column-inner .wpb_wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.contact-details .vc_column-inner .wpb_wrapper .contact-icon {
  margin-bottom: 0;
}
.contact-details .vc_column-inner .wpb_wrapper .contact-icon .vc_icon_element-size-md {
  width: 35px;
  height: 35px;
}
.contact-details .vc_column-inner .wpb_wrapper .contact-icon .vc_icon_element-inner .vc_icon_element-icon:before {
  font-size: 28px;
  color: var(--grey-alt3);
}
.contact-details .vc_column-inner .wpb_wrapper .contact-content {
  width: 100%;
  margin-bottom: 0;
}
.contact-details .vc_column-inner .wpb_wrapper .contact-content p {
  margin: 0;
  color: var(--grey-alt3);
}
.contact-details .vc_column-inner .wpb_wrapper .contact-content .wpb_wrapper {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
.contact-details .vc_column-inner .wpb_wrapper .contact-content .wpb_wrapper p label {
  font-weight: bold;
}
.contact-details .vc_column-inner .wpb_wrapper .contact-content .wpb_wrapper .text {
  padding-top: 5px;
  color: var(--grey-alt3);
  font-size: 16px;
}

.work-time {
  width: 100%;
  padding: 10px;
}

.according_section.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a {
  background-color: var(--grey-alt3) !important;
  color: var(--white) !important;
  border-radius: 4px 4px 0px 0px;
}
.according_section.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a .vc_tta-controls-icon::before {
  border-color: var(--white);
}
.according_section.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .view_more_btn > a {
  background-color: var(--grey-alt3) !important;
  border-radius: 6px !important;
  border: 2px solid transparent !important;
  color: var(--white) !important;
  background-image: none !important;
  line-height: unset !important;
  margin-right: 10px;
  padding-right: 25px;
}
.according_section.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .view_more_btn > a:hover {
  background-color: var(--white) !important;
  color: var(--grey-alt3) !important;
  border: 2px solid var(--grey-alt3) !important;
  background-image: none !important;
}
.according_section.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .view_more_btn > a .fa-long-arrow-right {
  display: none;
}
.according_section.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .mediaitem-slider .slick-slide img {
  width: 100%;
}

.shake_btn {
  display: inline-block;
  margin-top: 15px;
  vertical-align: top;
}
.shake_btn a {
  font-size: 16px;
  background-color: var(--grey-alt3) !important;
  border-radius: 6px !important;
  border: 2px solid transparent !important;
  color: var(--white) !important;
  background-image: none !important;
  line-height: unset !important;
  margin-top: 20px;
  margin-right: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  padding-left: 20px;
  padding-right: 20px;
}
.shake_btn > a:hover {
  background-color: var(--white) !important;
  color: var(--grey-alt3) !important;
  border: 2px solid var(--grey-alt3) !important;
  background-image: none !important;
}

.investmentLeasingContentWrap .payment-channel-card {
  max-width: 100%;
}
.investmentLeasingContentWrap .invest-card-box {
  margin: 10px;
}

/*======================= Survay Department Page Css End ===================*/
.gallary-section .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.gallary-section .gallery .gallery-item {
  margin: 0;
  width: calc(20% - 10px);
}
.gallary-section .gallery .gallery-item .gallery-caption {
  padding: 10px 0;
}
.gallary-section .gallery .gallery-item .gallery-icon a {
  width: 100%;
  position: relative;
  display: block;
  padding-top: 100%;
}
.gallary-section .gallery .gallery-item .gallery-icon a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

/* Hatta */
.hatta-mountain-container {
  border-radius: 16px;
  height: 500px;
  overflow: hidden;
}
.hatta-mountain-container > .leftcolumn {
  padding: 20px;
  align-items: end !important;
  background-image: url(/wp-content/uploads/2019/12/background-layer.png);
}
.hatta-mountain-container > .leftcolumn > div {
  position: relative;
}
.hatta-mountain-container > .rightcolumn {
  color: var(--white);
  background-color: rgba(0, 6, 29, 0.8);
  padding: 20px;
}
.hatta-mountain-container > .rightcolumn p {
  font-size: 20px;
}

.weatherData table.stats {
  background: var(--grey-alt19);
  padding: 20px 10px;
  border-collapse: separate;
  margin-bottom: 10px;
}

.weather_cams table td > .hatta-td {
  padding: 30px 0;
  display: flex;
  gap: 10px;
}
.weather_cams table td > .hatta-td > img {
  height: 100%;
}
.weather_cams table td > .hatta-td h2 {
  margin-top: 0;
}
.weather_cams h2 {
  color: var(--blue);
  font-size: 32px;
  font-weight: 100;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.hatta-location iframe, .weather_cams iframe {
  width: 100%;
  border: none;
}

.hatta-location {
  border-radius: 16px;
  overflow: hidden;
}

#hatta-status-bar {
  margin-top: 20px;
}
@media (max-width: 992px) {
  #hatta-status-bar {
    display: none;
  }
}

/* ---- dubai-municipality-app --- Page Css Start ---- */
.content_middle_section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.content_middle_section .boxSlider {
  overflow: hidden;
  width: calc(33.33333333% - 60px);
}
.content_middle_section .boxSlider .slick-slider {
  position: relative;
}
.content_middle_section button.slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background-color: #e7e8e9;
  border: none;
  border-radius: 100%;
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
.content_middle_section button.slick-arrow.slick-prev:after {
  border-top: 3px solid var(--grey-alt32);
  border-left: 3px solid var(--grey-alt32);
  border-bottom: 0;
  border-right: 0;
  left: 8px;
}
.content_middle_section button.slick-arrow:hover {
  background-color: #2C2E3F;
}
.content_middle_section button.slick-arrow.slick-next {
  right: 8px;
  left: inherit;
}

.content_middle_section button.slick-arrow.slick-next {
  right: 8px;
  left: inherit;
}
.content_middle_section button.slick-arrow:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 18px;
  height: 18px;
  border-bottom: 3px solid var(--grey-alt32);
  border-right: 3px solid var(--grey-alt32);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
  top: 20px;
}
.content_middle_section button.slick-arrow:before {
  display: none;
}
.content_middle_section button.slick-arrow:hover:after, .content_middle_section button.slick-arrow.slick-prev:hover:after {
  border-color: var(--white);
}

.category_block_part {
  padding: 10px;
  box-sizing: border-box;
}

.middle_section_row {
  display: flex;
}
.middle_section_row .vc_column-inner, .middle_section_row .vc_column-inner .wpb_wrapper, .middle_section_row .vc_column-inner .wpb_wrapper .category_block_inner {
  height: 100%;
}

.category_block_inner {
  background-color: var(--white);
  padding: 20px;
  box-sizing: border-box;
  margin: 0px;
  box-shadow: 0px 0px 7px 4px rgba(0, 0, 0, 0.0392156863);
  border-radius: 8px;
}
.category_block_inner h3 {
  margin: 0;
  color: var(--secondary);
  font-size: 32px;
  font-weight: 100;
  padding-bottom: 10px;
}
.category_block_inner p, .category_block_inner li {
  margin: 0;
  color: var(--secondary);
  padding: 5px 0px;
  word-break: break-word;
}
.category_block_inner ul {
  margin: 0;
  padding: 0px 20px;
}

.download-apps-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.download-apps-icons h2 {
  width: 100%;
  margin: 0;
  color: var(--secondary);
  padding-bottom: 20px;
  font-weight: 100;
  font-size: 32px;
  line-height: normal;
}
.download-apps-icons a {
  box-shadow: 0px 310.894744873px 86.8421020508px 0px rgba(17, 25, 74, 0);
  background-color: var(--primary);
  width: 100%;
  padding: 10px 25px 10px 50px;
  color: var(--white);
  border-radius: 8px;
  max-width: calc(50% - 5px);
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  font-size: 16px;
  font-weight: bold;
}
.download-apps-icons a i.fab {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
}
.download-apps-icons a i.fab.fa-android {
  font-size: 18px;
}
.download-apps-icons a span {
  font-size: 10px;
  line-height: normal;
  color: #ccc;
  display: block;
  width: 100%;
}

.top_imgae_section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top_imgae_section p {
  color: var(--secondary);
  margin: 0;
}
.top_imgae_section h3 {
  margin: 0;
  padding-bottom: 10px;
  color: var(--secondary);
}

.content_middle_section .boxSlider .buttonsPlayPauseHome {
  display: none;
}

.page_inner_content footer.entry-footer {
  margin-top: 10px;
}

/* ---- dubai-municipality-app --- Page Css End ---- */
/*sample-news-start*/
.newsContentWrapper.vc_row {
  margin: 0;
}

.newsContentWrapper {
  display: flex;
  flex-wrap: wrap;
}
.newsContentWrapper h2 {
  font-size: 24px;
  color: var(--primary);
  font-weight: 100;
  text-transform: capitalize;
  line-height: 1.3;
  margin: 0 0 15px 0;
}
.newsContentWrapper p {
  font-size: 16px;
  color: var(--secondary);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.newsImagesection {
  position: relative;
}
.newsImagesection .wpb_content_element figure img {
  width: 100%;
  height: 60%;
  max-width: 765px;
  min-height: 431px;
  border-radius: 8px;
}
.newsImagesection .vc_images_carousel {
  height: auto;
  padding-bottom: 40px;
}
.newsImagesection .vc_images_carousel .vc_carousel-indicators {
  position: absolute;
  bottom: 0;
  height: auto;
}
.newsImagesection .vc_images_carousel .vc_carousel-inner {
  border-radius: 8px;
}
.newsImagesection .vc_carousel-control {
  background: var(--white);
  height: 40px !important;
  width: 40px !important;
  border-radius: 50%;
  margin: 0 10px;
}

#news-content-container h2 {
  margin: 0;
}
#news-content-container .date {
  margin: 0 0 10px;
}

.news-content .related {
  margin: 0px -15px;
}
.news-content .related h3 {
  margin: 0;
  padding: 0px 20px 15px;
}

.relatedWrap .menu li a {
  transition: all 0.5s ease-in;
}
.relatedWrap .related {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid #eee;
  margin-top: 40px;
}
.relatedWrap .col-sm-12 {
  width: 100%;
  margin-bottom: 15px;
}

.dm_inner_pages_content {
  flex-wrap: wrap;
}
.dm_inner_pages_content .vc_row {
  margin: 0;
}

.new_faq {
  width: 100%;
}

.full-news-content {
  display: flex;
  flex-wrap: wrap;
}
.full-news-content .img-content {
  width: 50%;
}
.full-news-content .img-content img {
  width: 100%;
}
.full-news-content .news-content {
  width: 50%;
  padding: 0 30px 0 0;
}
.full-news-content .news-content .wpb_column {
  width: 100%;
}

.img-content {
  width: 50%;
}
.img-content img {
  border-radius: 8px;
}

.newsFaqwrap .category-filter-section {
  background: #E2E2E5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 32px 40px;
  position: relative;
}

/* Rasid */
.larger-header-slide > div {
  height: 20dvh;
  border-radius: 16px;
  margin-bottom: 50px;
}

.wasteManagementDepartmentWrap h2 {
  margin: 0 !important;
}

.rasidManagementWraper {
  padding: 12px 30px !important;
}
.rasidManagementWraper .vc_column-inner {
  padding-top: 0px !important;
}
.rasidManagementWraper h2 {
  margin: 0 !important;
}

.wst-mgmnt-bg-img > div {
  height: 100%;
  border-radius: 0 15px 15px 0;
  padding-top: 0 !important;
  background-position: inherit !important;
  background-repeat: round !important;
  background-size: cover !important;
}

.rasid-card-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0;
}
.rasid-card-row .grey_box_column {
  width: 100%;
}
.rasid-card-row .grey_box_column .vc_column-inner {
  padding-top: 0 !important;
}
.rasid-card-row .wpb_content_element {
  margin-bottom: 0;
}

.rasid-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 0 0;
  height: 340px;
  width: 100%;
}
.rasid-card > .rasid-card-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rasid-card > .rasid-card-title {
  display: flex;
  align-items: center;
  justify-content: start;
}
.rasid-card > .rasid-card-title > * {
  display: inline-block;
  font-size: 19px;
}
.rasid-card > .rasid-card-title > img {
  width: 50px;
  margin-right: 10px;
}

.rasid-useful-links h2 {
  margin: 0;
  color: #5C5E7C;
}

.useful-links .useful-pics-links a > img {
  border-radius: 6px;
  margin: 0 auto;
  width: 200px;
}

.useful-links .useful-pics-links > div > div > div {
  margin-bottom: 0;
}

.useful-links .useful-pics-links .buttonsPlayPauseHome {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 35px;
}

.useful-links .useful-pics-links .buttonsPlayPause button.active,
.useful-links .useful-pics-links .buttonsPlayPauseHome button.active {
  display: block;
}

.useful-links .useful-pics-links .buttonsPlayPauseHome button {
  display: none;
  border: none;
  cursor: pointer;
  background: var(--grey-alt3);
  color: var(--white);
}

.rasid-card-menu a {
  display: inline-block;
  padding-left: 12px;
  position: relative;
}
.rasid-card-menu a i.fa-angle-right {
  position: absolute;
  left: 0;
  top: 2px;
}

.headingTitle h2 {
  font-size: 21px;
  color: var(--primary);
  font-weight: 600;
  text-transform: capitalize;
}

.rasid-form-contact-row {
  margin-top: 0 !important;
}
.rasid-form-contact-row > div {
  padding: 30px;
}

.left.rasid-contact-us > div > div > * {
  padding-left: 20px;
}

.rasid-contact-us-inner-row {
  display: flex;
  justify-content: flex-start;
}

.rasid-contact-us-card {
  padding: 20px 13px;
  width: auto;
  height: auto;
  background: var(--white);
  border-radius: 8px;
  margin: 20px 20px 20px 0;
}
.rasid-contact-us-card > div {
  display: inline-block;
  position: relative;
  margin-right: 10px;
}
.rasid-contact-us-card > div > img {
  position: relative;
  top: 0;
  left: 0;
}
.rasid-contact-us-card p {
  margin: 0;
}

.contact-us-full-row {
  width: 100%;
}
.contact-us-full-row .rasid-contact-us-card > div:first-of-type {
  top: -12px !important;
}

.rasid-working-hours {
  position: relative;
  padding: 0 0 10px 28px;
}
.rasid-working-hours > img {
  position: absolute;
  left: 0;
  top: 0;
}

.rasid-form-col > div,
.left.rasid-contact-us > div {
  padding-top: 0 !important;
}

.rasid-form-col .rasid_form > div {
  padding-left: 0 !important;
}
.rasid-form-col form input, .rasid-form-col form select {
  border: 1px solid var(--grey-alt29);
  color: #74889F;
  padding: 10px 15px !important;
  border-radius: 8px;
  margin-top: 10px;
  line-height: normal;
  background-color: var(--white) !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.rasid-form-col .rasid_form textarea, .rasid-form-col .contact_form_box textarea {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--grey-alt29);
  color: #74889F;
  padding: 15px;
  border-radius: 8px;
}
.rasid-form-col .rasid_form .check_boxes > p, .rasid-form-col .contact_form_box .check_boxes > p {
  margin: 0;
}

.rasid-form-col .rasid_form input[type=submit],
.rasBtn.cmp-reg,
.rasid-form-col form input[type=submit] {
  border-radius: 8px;
  border: 1px solid var(--primary);
  background: var(--primary) !important;
  color: var(--white);
  padding: 15px;
  width: 200px;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.5s ease-in;
}
.rasid-form-col .rasid_form input[type=submit]:hover,
.rasBtn.cmp-reg:hover,
.rasid-form-col form input[type=submit]:hover {
  color: var(--grey-dark);
  border: 1px solid var(--primary);
  background: var(--white) !important;
}

.logged-in admin-bar .rasid_form .rasid-form-col form input[type=submit]:hover {
  color: var(--white) !important;
  border: 1px solid var(--grey-dark) !important;
  background: var(--grey-dark) !important;
}

.rasBtn.cmp-reg {
  display: block;
  margin: 10px 0;
  width: 250px;
  text-decoration: none;
}

.rasid_tables table .table-title {
  background: var(--primary);
  color: var(--white);
}
.rasid_tables table .table-title > td {
  padding: 10px 10px !important;
}
.rasid_tables table .table-title > td > h2 {
  margin: 0;
}

.rasid-form-col.contact-rasid-tab-form .wpb_content_element {
  margin: 0;
}
.rasid-form-col.contact-rasid-tab-form span.ajax-loader {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* Dubai Protected Area - HOME */
.overflow-hidden {
  overflow: hidden;
}

.plan-visit-right.right_discover_dubai-protected-area {
  padding: 0 35px;
}
.plan-visit-right.right_discover_dubai-protected-area h2 {
  color: var(--blue);
}

.plan-visit-left.left_discover_dubai-protected-area > div {
  padding-bottom: 35px !important;
}

.plan-visit-icons {
  margin-bottom: 0;
}
.plan-visit-icons ul[class=ul-no-style] {
  float: right;
  margin: 0 20px;
  background: var(--grey-dark);
  color: var(--white);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 10px 0;
}
.plan-visit-icons ul > li > a {
  margin: 5px 15px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  align-items: center;
  font-size: 14px;
}
.plan-visit-icons ul > li > a > img {
  width: 20px;
}

[dir=rtl] .plan-visit-icons ul[class=ul-no-style] {
  float: left;
}

.education-icons.plan-visit-icons {
  float: left !important;
}

.education-section-right.right_discover_dubai > div {
  height: 350px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.conservation-section {
  color: var(--white);
  font-size: 18px;
}
.conservation-section > div > div {
  position: relative;
  /* height: 400px; */
  display: block;
}

.conversation-content {
  padding: 10px;
  background: var(--grey-dark);
  border-radius: 8px;
}
.conversation-content .view_more_btn-outline {
  margin-bottom: 0;
}

.view_more_btn-outline > a, .wpb-js-composer .vc_tta.vc_general .vc_active .view_more_btn-outline a {
  background-color: transparent !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 6px !important;
  padding: 10px 10px !important;
  width: 170px !important;
  text-align: center !important;
  background-image: none !important;
  text-decoration: none;
}

.planvisit-inner-row-guide-tour a.vc_btn3-shape-square, .view_more_btn-outline-light > a {
  background-color: transparent !important;
  color: var(--white) !important;
  border: 2px solid var(--white) !important;
  border-radius: 6px !important;
  padding: 10px 10px !important;
  width: 170px !important;
  text-align: center !important;
  background-image: none !important;
}

.view_more_btn-outline > a > i, .view_more_btn-outline-light > a > i {
  display: none !important;
}

.view_more_btn-outline > a:hover, .view_more_btn-outline-light > a:hover, .wpb-js-composer .vc_tta.vc_general .vc_active .view_more_btn-outline a:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 6px !important;
  background-image: none !important;
}

.planvisit-inner-row-guide-tour a.vc_btn3-shape-square:hover, .planvisit-inner-row-guide-tour a.vc_btn3-shape-square:focus {
  background-color: #252939 !important;
  border: 1px solid var(--white) !important;
  background-image: none !important;
}

.planvisit-inner-row-guide-tour a.vc_btn3-shape-square:focus, .planvisit-inner-row-guide-tour a.vc_btn3-shape-square:focus-visible {
  outline: 3px solid var(--white) !important;
  outline-offset: 3px !important;
}

.protect-category {
  position: relative;
  height: 250px;
  overflow: hidden;
  margin-bottom: 0px;
  background: var(--secondary);
  margin: 10px 5px 5px;
}
.protect-category > h2 {
  position: absolute;
  color: var(--white);
  font-size: 1rem;
  text-align: center;
  top: 35%;
  width: 100%;
  transition: transform 0.35s, -webkit-transform 0.35s;
  transition-timing-function: cubic-bezier(0.12, 0.845, 0.305, 1);
  z-index: 1;
}
.protect-category img {
  opacity: 0.5;
}
.protect-category.wpb_single_image .vc_single_image-wrapper {
  height: 250px;
  object-fit: cover;
}
.protect-category.wpb_single_image img {
  height: 250px;
  max-width: 100%;
  vertical-align: top;
}

a.vc_single_image-wrapper:focus, a.vc_single_image-wrapper:focus-visible {
  padding: 3px;
  outline: 3px solid var(--black) !important;
  outline-offset: 3px !important;
}

.saruq-al-hadid .row-museum-experience {
  border-radius: 8px;
}
.saruq-al-hadid .slider_blck .vc_column-inner {
  padding-top: 0px !important;
}

/* Dubai Protected Area - PLAN YOUR VISIT */
.planvisit-main-row .planvisit-main-row_col2 > div {
  min-height: 550px;
}
.planvisit-main-row .planvisit-main-row_col1 > div > div > * {
  margin-bottom: 15px !important;
}
.planvisit-main-row .planvisit-main-row_col1 .timing-section {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #D9E0EB;
  padding: 10px 20px;
  border-radius: 4px;
}

.timing-section > .timing-title {
  flex-grow: 1;
}
.timing-section > .timing-content {
  flex-grow: 2;
}
.timing-section > .timing-content > div {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}

.planvisit-main-row {
  padding-top: 20px;
}
.planvisit-main-row .planvisit-main-row_col1 * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
}

.planvisit-main-row_col1,
.planvisit-main-row_col2 {
  padding: 15px;
}

.timing-section hr {
  border: none;
  height: 1px;
  background: var(--white);
}

.planvisit-tab-view ul > li > a {
  padding: 10px 0 !important;
  border: none !important;
  border-radius: 0 !important;
}

.planvisit-main-row .planvisit-tab-view .vc_tta-panels-container .vc_tta-panels {
  min-height: 250px;
  border-radius: 10px !important;
  background: var(--white) !important;
  border: 0 !important;
}

.planvisit-main-row .planvisit-main-row-360-view-buttons .thdeg-but {
  display: inline-flex;
  gap: 20px;
  margin-top: 10px !important;
  flex-wrap: wrap;
}

.planvisit-main-row-360-view-buttons .thdeg-but .view_more_btn-outline {
  height: 40px;
}

.planvisit-inner-row-map .wpb_map_wraper, .img-section .wpb_single_image .vc_single_image-wrapper {
  border-radius: 15px;
  overflow: hidden;
}

.planvisit-inner-row-guide-tour {
  border-top-left-radius: 15px;
  overflow: hidden;
  border-top-right-radius: 15px;
}
.planvisit-inner-row-guide-tour > div > div {
  min-height: 400px;
  color: var(--white);
  /* padding: 20px !important; */
  position: relative;
}
.planvisit-inner-row-guide-tour .vc_column-inner > .wpb_wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 230px;
  padding: 0 20px;
  background: var(--secondary);
}

.planvisit-inner-row-img {
  padding: 20px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
  color: var(--white);
  background: rgb(34, 34, 34);
  background: -moz-linear-gradient(left, rgb(34, 34, 34) 0%, rgb(41, 137, 216) 50%, rgb(32, 124, 202) 50%, rgb(19, 145, 208) 100%);
  background: -webkit-linear-gradient(left, rgb(34, 34, 34) 0%, rgb(41, 137, 216) 50%, rgb(32, 124, 202) 50%, rgb(19, 145, 208) 100%);
  background: linear-gradient(to right, rgb(34, 34, 34) 0%, rgb(41, 137, 216) 40%, rgb(32, 124, 202) 100%, rgb(19, 145, 208) 100%);
}
.planvisit-inner-row-img .planvisit-inner-row-img1 > * {
  margin: 0 5px;
}

.planvisit-inner-row-img1 .vc_col-sm-6 h3 {
  margin: 0;
}
.planvisit-inner-row-img1 .row-googlepay-image img, .planvisit-inner-row-img1 .row-appstore-image img {
  width: 130px;
  height: 45px;
}

.protected-area-details-section .wpb_single_image * {
  width: 100%;
}
.protected-area-details-section .wpb_single_image img {
  border-radius: 15px;
}

.tab_sections.planvisit-tab-view .vc_single_image-wrapper {
  text-align: center;
}
.tab_sections.planvisit-tab-view .vc_single_image-wrapper > img {
  border-radius: 15px;
}
.tab_sections.planvisit-tab-view .wpb_image_grid_ul {
  display: flex;
}

.tab_sections .vc_tta-panels {
  background-color: var(--white) !important;
  border-radius: 8px !important;
  border: 0 !important;
}

.wpb-js-composer .vc_tta.vc_general .vc_active a[class=no-background] {
  background-color: transparent !important;
}

.white-tab-content {
  background-color: var(--white) !important;
  border-radius: 8px !important;
  border: 0 !important;
  padding: 15px;
  margin-top: 15px;
}

html[dir=rtl] .block_section .block_descreption h4 img, html[dir=rtl] .block_section .block_descreption li:first-child img {
  left: unset;
  right: 0;
}
html[dir=rtl] .block_section .block_descreption h4 {
  padding-left: 0;
  padding-right: 23px;
}
html[dir=rtl] .block_section .block_descreption li:first-child {
  padding-left: 0;
  padding-right: 28px;
}
html[dir=rtl] .serviceCenterContact pre, html[dir=rtl] .map_section_block pre {
  left: 0;
  right: 24px;
}
html[dir=rtl] .serviceCenterContact h5, html[dir=rtl] .serviceCenterContact p {
  padding-left: 0px;
  padding-right: 50px;
}
html[dir=rtl] .map_section_block p, html[dir=rtl] .map_section_block h5, html[dir=rtl] .map_section_block ul {
  padding-left: 0;
  padding-right: 40px;
}

/*making dubai more start 11-10-23*/
.making-dubai-more .entry-content {
  padding: 0;
}
.making-dubai-more h1 {
  display: none;
}
.making-dubai-more .vc_column_container {
  padding-left: 0;
  padding-right: 0;
}

.makingDubaiMainWraper {
  position: relative;
}
.makingDubaiMainWraper:before {
  content: "";
  position: absolute;
  display: block !important;
  width: 100%;
  height: calc(50% + 100px);
  z-index: 0;
  background-color: var(--secondary);
  left: 0;
  right: 0;
  top: 0;
}

.makingDubaiMainTitle {
  margin: 56px 0px;
}
.makingDubaiMainTitle h2 {
  font-size: 52px;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  margin: 0;
  background-color: var(--grey-alt3) !important;
}
.makingDubaiMainTitle .wpb_content_element {
  margin: 0;
}
.makingDubaiMainTitle p {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 16px 0px 0px 0px;
  background-color: var(--grey-alt3) !important;
}

.makingDubaiColoumWrappers {
  margin-bottom: 40px;
}

.makingDubaiMoreColWrap {
  background: var(--white);
  border-radius: 8px;
  padding: 100px 40px 40px 40px;
  min-height: 95%;
  box-shadow: 0px 4px 7px 4px rgba(0, 0, 0, 0.04);
}

.headingAndContent h2 {
  font-size: 32px;
  font-weight: 200;
  margin: 24px 0 24px 0;
}
.headingAndContent h2.beautifulHeading {
  color: #4C00D5;
}
.headingAndContent h2.sustainableHeading {
  color: #DB4E6D;
}
.headingAndContent h2.livableHeading {
  color: #267e74;
}
.headingAndContent h2.pioneeringHeading {
  color: #c46a37;
}
.headingAndContent p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 !important;
}

.makingDubaiColoumWrappers {
  margin-left: -5px;
  margin-right: -5px;
}
.makingDubaiColoumWrappers .vc_column-inner .wpb_wrapper {
  min-height: 100%;
  width: 100%;
}
.makingDubaiColoumWrappers .vc_column-inner .wpb_wrapper .wpb_content_element {
  min-height: 100%;
  display: flex;
}
.makingDubaiColoumWrappers .vc_col-sm-3 {
  padding: 0px 25px 0 0;
}

.makingDubaiMoreLinks {
  margin-top: 24px;
}
.makingDubaiMoreLinks a {
  text-decoration: none;
  transition: all 0.5s ease-in;
  padding: 5px 26px;
  border-radius: 50px;
  border: 1px solid var(--primary);
  background: var(--white);
}
.makingDubaiMoreLinks a:hover {
  color: var(--white);
  background: #696f8a;
}
.makingDubaiMoreLinks a:hover:after {
  color: var(--white);
}
.makingDubaiMoreLinks a:after {
  content: "\f054";
  color: var(--primary);
  font-family: "Font Awesome 5 Pro";
  margin-left: 8px;
  position: relative;
  font-size: 11px;
  top: 0;
}
[dir=rtl] .makingDubaiMoreLinks a:after {
  content: "\f053";
  margin-left: 0px;
  margin-right: 8px;
}

/*making dubai more end*/
/** For Laws and Legislation page **/
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs {
  margin-top: 40px;
  position: relative;
  z-index: 0;
}
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs .vc_tta-tabs-list {
  border: 0;
  margin: 0 !important;
  display: flex !important;
  justify-content: center;
  align-items: stretch;
}
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs .vc_tta-tab.vc_active a,
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs .vc_tta-tab.vc_active a:hover,
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs .vc_tta-tab a:hover {
  box-shadow: 0px 0px 0px 0px rgba(171, 171, 171, 0.1), 0px 12px 26px 0px rgba(171, 171, 171, 0.1), 0px 46px 46px 0px rgba(171, 171, 171, 0.09), 0px 104px 63px 0px rgba(171, 171, 171, 0.05), 0px 186px 74px 0px rgba(171, 171, 171, 0.01), 0px 290px 81px 0px rgba(171, 171, 171, 0) !important;
  /* transition: padding-top 0.2s linear; */
  position: relative;
  /* height: 100%; */
}
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs .vc_tta-tab {
  margin: 0;
  vertical-align: top;
  width: 20%;
  max-width: 190px;
  /* height: 100%; */
  align-items: stretch;
  margin-right: 15px !important;
  position: relative;
}
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs .vc_tta-tab a {
  border: 1px solid var(--grey-alt12) !important;
  border-radius: 8px !important;
  font-weight: bold;
  text-align: center;
  padding: 40px 20px !important;
  width: 100%;
  position: relative;
  background: var(--grey-alt12) !important;
  color: var(--white) !important;
  height: 100%;
}
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs .vc_tta-tab a:hover {
  box-shadow: 0px 0px 5px #dae9f6 !important;
  color: var(--grey-alt3) !important;
}
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs .vc_tta-tab.vc_active a {
  background: aliceblue !important;
  border-color: #d9e4ee !important;
  color: var(--grey-alt3) !important;
  pointer-events: none;
}
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs .vc_tta-panels,
.wpb-js-composer .vc_tta-tabs.legislationlaw-tabs .vc_tta-panel-body {
  background: none !important;
  border: 0 !important;
  padding: 15px 0 !important;
  height: auto !important;
}

/** END For Laws and Legislation page **/
[dir=rtl] .slick-slider {
  direction: rtl;
}

.item-slider {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  transition: height 0.3s ease; /* Smooth transition when height changes */
}
.item-slider .carousel-cell {
  width: 100%;
  height: auto;
}
.item-slider .carousel-cell img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.slider-nav-thumbnails {
  width: 100%;
}

.slider-nav-thumbnails .carousel-cell {
  margin-right: 10px;
  width: 90px;
}
.slider-nav-thumbnails .carousel-cell img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
}

.slider-nav-thumbnails .flickity-viewport {
  padding-top: 10px;
  min-height: 100px;
  padding-bottom: 5px;
}

.item-slider .carousel-cell img {
  display: block;
  max-width: 100%;
  height: auto; /* Allow images to retain their original aspect ratio */
}

.slider-nav-thumbnails .is-selected img {
  border: 2px solid var(--black); /* Highlight selected thumbnail */
}

@media screen and (max-width: 1300px) {
  .slider-nav-thumbnails .carousel-cell {
    margin-right: 5px;
    width: 25px;
  }
  .slider-nav-thumbnails .carousel-cell img {
    width: 20px;
    height: 20px;
    margin: 0px 3px;
  }
  .slider-nav-thumbnails .flickity-viewport {
    padding-top: 5px;
    min-height: 35px;
    padding-bottom: 3px;
  }
}
/* Common styles here */
body {
  background: #f5f5f5;
  color: var(--secondary);
}

/* Card */
.custom-card, .payment-channel-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 30px;
  margin-right: 15px;
  background: var(--white);
  border-radius: 9px;
  border: 0.293px solid var(--grey-alt2);
  padding: 1rem;
  width: 100%;
  max-width: 22rem;
  min-height: 26rem;
  margin: 0 auto;
}
.custom-card img, .payment-channel-card img {
  height: 34px;
  width: auto;
}
.custom-card *, .payment-channel-card * {
  margin-bottom: 10px;
  color: var(--secondary);
}
.custom-card h2, .payment-channel-card h2 {
  margin: 10px 0 0;
  display: block;
}
.custom-card h2 + p, .payment-channel-card h2 + p {
  margin-top: 10px;
}

.custom-card-action {
  background-color: var(--primary);
  min-height: 49px;
  display: flex;
  justify-content: center;
  border-radius: 6px;
}
.custom-card-action a {
  align-self: center;
  color: var(--white);
  text-decoration: none;
}

.card-action {
  background-color: transparent;
  min-height: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 6px;
  border: 2px solid var(--primary);
  align-content: center;
  color: var(--primary);
  text-decoration: none;
}
.card-action:hover, .card-action:focus {
  background-color: var(--primary);
  color: var(--white);
}

/* Layout with sidebar */
.dm_inner_pages_content {
  justify-content: space-between;
  margin-top: 40px;
  max-width: 100% !important;
  display: flex;
}
.dm_inner_pages_content .subpage-right-content {
  width: 100%;
  max-width: calc(100% - 380px);
}
.dm_inner_pages_content .subpage-right-content p a {
  color: var(--secondary);
}
.dm_inner_pages_content .subpage-right-content ul {
  font-size: 16px;
}
.dm_inner_pages_content .widget-area .widget_nav_menu {
  padding: 0px;
  box-sizing: border-box;
  width: 100%;
}
.dm_inner_pages_content .widget-area ul.menu {
  margin: 0 !important;
  padding: 10px 15px !important;
  display: block !important;
  background: var(--white);
  border: 0 !important;
}
.dm_inner_pages_content .widget-area ul.sub-menu {
  display: none;
  padding: 10px 10px;
}
.dm_inner_pages_content .widget-area li {
  list-style: none;
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  border-bottom: 1px solid var(--grey-alt10);
}
.dm_inner_pages_content .widget-area li:last-child {
  border-bottom: 0;
}
.dm_inner_pages_content .widget-area li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  right: 20px;
  top: -8px;
  color: var(--grey-alt2);
  margin: 30px auto;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid var(--grey-alt2);
  border-right: 1px solid var(--grey-alt2);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.dm_inner_pages_content .widget-area li.menu-item-has-children.minus > a:after {
  transform: rotate(223deg);
  top: -6px;
}
.dm_inner_pages_content .widget-area li:last-child {
  margin-bottom: 0;
}
.dm_inner_pages_content .widget-area li a:hover {
  background-color: var(--grey-alt11) !important;
  display: block;
  color: var(--primary);
}
.dm_inner_pages_content .widget-area a:focus {
  background-color: transparent !important;
}

.body-content .dm_inner_pages_content .widget-area a {
  text-decoration: none;
  text-align: left;
  line-height: 1.2;
  font-weight: normal;
  color: var(--secondary) !important;
  font-size: 16px;
  padding: 14px 10px;
  display: block;
  background-color: transparent !important;
}

aside#secondary {
  width: 350px;
  margin-bottom: 40px;
  background: var(--white);
  position: relative;
  z-index: 1;
}

[dir=rtl] .dm_inner_pages_content .widget-area li.menu-item-has-children > a:after {
  left: 20px;
  right: inherit;
  transform: rotate(130deg);
}

#secondary .current-menu-ancestor > .sub-menu {
  display: block;
}

[dir=rtl] .body-content .dm_inner_pages_content .widget-area a {
  text-align: right;
}

/* some common styles */
.vc_row.container, .vc_column_container.container {
  margin: 0 auto !important;
  float: none;
}

.simple-link {
  margin: -30px 0 30px !important;
}
.simple-link a {
  color: var(--primary) !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  font-weight: 400 !important;
  font-size: 16px !important;
}
.simple-link a i {
  color: var(--primary);
}
.simple-link a:hover {
  text-decoration: underline !important;
}

/* Pages CSS */
/* Specific to theme global classes */
.pdfIconColor, .downloadIconColor {
  color: var(--primary);
  margin-right: 5px;
}

.entry-content {
  padding: 30px 0;
}

/* .entry-content li, .about-dm-content li{
    font-size: 14px!important;
}
*/
.document-file-properties {
  overflow-x: auto;
  padding: 30px 0 0;
}

/* PDF link font */
a[href="http://www.adobe.com/products/acrobat/readstep2.html"] span {
  font-family: "Dubai" !important;
}

.body-content a[title=readstep2]:hover, a.click-here:hover {
  text-decoration: none;
}

[dir=rtl] .slick-slider {
  direction: ltr;
}

.check-pay-tabContent-form div {
  display: flex;
  justify-content: center;
}

.vc_btn3-container.vc_btn3-inline.hide {
  display: none !important;
}

.copyright__section {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  border-top: 1px solid var(--grey-alt5);
}
.copyright__section p {
  color: var(--secondary);
  margin: 10px 0;
}

@media (max-width: 992px) {
  .copyright__section {
    width: 100%;
  }
  .copyright__section p {
    text-align: center !important;
  }
}
/* for zooming devices */
@media (max-width: 400px) and (max-height: 200px) {
  .dda-footer, .dda-side-nav__footer {
    position: relative;
  }
  .dda-side-nav div.pa-8 {
    padding-top: 0;
  }
  .dda-side-nav {
    top: 60px;
  }
  table {
    width: 100% !important;
    border-collapse: collapse;
  }
  th, td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }
  tr {
    display: block;
    margin-bottom: 10px;
  }
}
.vc_tta-panel-body .vc_row.vc_column-gap-10 {
  margin-left: 0;
  margin-right: 0;
}

/*project-start*/
.topSearchButtonWrap {
  width: 100%;
  margin-top: 40px;
}

.projectsPageSection {
  margin-top: 40px;
}
.projectsPageSection .menu li:hover a, .projectsPageSection .menu li.current-menu-item a {
  transition: all 0.5s ease-in;
}

.btn-send {
  background-color: var(--primary) !important;
  color: var(--white);
  font-size: 16px !important;
  margin: 0 10px !important;
  border-radius: 35px;
  padding: 6px 15px;
  text-align: center;
  text-decoration: none;
  display: block;
  width: calc(100% - 20px);
}

.serviceCenterContact {
  margin-bottom: 25px;
  padding: 0px 0px 0px 10px;
}
.serviceCenterContact .vc_column-inner {
  border-radius: 8px;
}
.serviceCenterContact .vc_row {
  padding: 0 14px;
  display: flex;
}

.contactsWrapper .vc_row.vc_column-gap-15 {
  margin: 0;
}

span.serviceCenterDetail {
  display: block;
  color: var(--grey-alt17);
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 5px;
}

small.serviceCenterTitle {
  color: var(--grey-alt17);
  font-weight: 400;
  font-size: 16px;
}

.locationDetailsWrap > .vc_column-inner > .wpb_wrapper {
  display: flex;
}
.locationDetailsWrap h4, .locationDetailsWrap p {
  margin: 0;
}
.locationDetailsWrap .wpb_content_element {
  margin-bottom: 0;
  margin-left: 16px;
}
.locationDetailsWrap .vc_column-inner {
  border-radius: 8px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  padding: 24px;
}

.mapDetailsWrap {
  margin-bottom: 16px;
}

.contact-pg-title {
  margin-bottom: 30px;
}
.contact-pg-title h2 {
  color: var(--secondary);
  font-size: 32px;
  font-weight: 100;
  text-transform: capitalize;
}
.contact-pg-title ul li {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.headOfficeTitle h2, .headOfficeTitle p {
  color: var(--secondary);
}
.headOfficeTitle p {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.serviceCenterContact {
  padding: 0px 5px;
}
.serviceCenterContact .wpb_content_element {
  margin: 0;
}
.serviceCenterContact a {
  text-decoration: none;
  color: var(--grey-alt17);
}
.serviceCenterContact pre {
  position: absolute;
  left: 24px;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
}
.serviceCenterContact .wpb_content_element .wpb_wrapper {
  background-color: var(--grey-alt16);
  display: flex;
  flex-wrap: wrap;
  padding: 18px;
  border-radius: 6px;
  color: var(--white);
  align-items: center;
  position: relative;
}
.serviceCenterContact h5 {
  margin: 0;
  width: 100%;
  padding-left: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.serviceCenterContact p {
  margin: 0;
  width: 100%;
  padding-left: 50px;
}

.map_section {
  margin: 0 0px 0 0 !important;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 22.5px);
  padding: 0;
}
.map_section .vc_row {
  display: flex;
  flex-wrap: wrap;
}
.map_section figure.wpb_wrapper.vc_figure {
  margin: 0px;
  box-shadow: 0px 0px 3px 2px rgba(215, 215, 215, 0.11);
  border-radius: 8px;
  padding: 5px;
}
.map_section iframe {
  border-radius: 16px;
}

.map_section_section {
  margin: 0px -8px;
}

.qr_code_block {
  padding-left: 8px;
}

/*service-center-end*/
.accordionAward h3 {
  color: #353f56; /*from #647794*/
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.ui-accordion-icons::after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(104, 140, 186, 0.3);
  margin-left: 17px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -1px;
}
[dir=rtl] .ui-accordion-icons::after {
  margin-left: 0;
  margin-right: 9px;
  transform: rotate(175deg);
}

/*project-inner-page-start*/
.projectPages .vc_row {
  display: flex;
  flex-wrap: wrap;
}
.projectPages h2, .projectPages h3, .projectPages h4 {
  font-size: 18px;
  color: var(--secondary);
  font-weight: 300;
  text-transform: capitalize;
  margin: 0 0 5px 0;
  width: 100%;
}
.projectPages h2 {
  color: var(--secondary);
}
.projectPages h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary);
}
.projectPages h4 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
}
.projectPages p {
  font-size: 16px;
  color: var(--secondary);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
.projectPages .related {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid #eee;
  margin-top: 40px;
}
.projectPages .related .related h2 {
  font-size: 24px;
  font-weight: 100;
  color: var(--primary);
  padding: 40px 0 20px 0;
}
.projectPages .sprt {
  margin-bottom: 15px;
}
.projectPages .proj_date.sprt {
  margin-bottom: 40px;
}
.projectPages .menu li a {
  transition: all 0.5s ease;
}
.projectPages .vc_column_container .vc_column-inner {
  padding-left: 0;
}
.projectPages button.slick-prev {
  left: 20px;
  color: var(--white);
}
.projectPages button.slick-prev:before {
  color: var(--white);
  font-size: 20px;
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  transition: all 0.5s ease;
}
.projectPages button.slick-next {
  right: 20px;
  color: var(--white);
}
.projectPages button.slick-next:before {
  color: var(--white);
  font-size: 20px;
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  transition: all 0.5s ease;
}
.projectPages .slick-arrow {
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  color: var(--white);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 43%;
  display: block;
  border-radius: 50%;
  z-index: 1;
}
.projectPages .slick-arrow:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--primary);
}
.projectPages .slick-arrow:hover:before {
  color: var(--primary);
}
.projectPages .buttonsPlayPauseHome {
  width: fit-content;
  margin: 0 auto;
  margin-top: 10px;
}
.projectPages .buttonsPlayPauseHome button {
  opacity: 1;
  border: 0;
  appearance: none;
  cursor: pointer;
  display: none;
}
.projectPages .buttonsPlayPauseHome button:hover, .projectPages .buttonsPlayPauseHome button:focus {
  color: var(--black);
}
.projectPages .buttonsPlayPauseHome button.active {
  display: block;
}
.projectPages .playSlider.active, .projectPages .pauseSlider.active {
  background: transparent;
  color: var(--primary);
  padding: 10px;
}
.projectPages .slick-dots {
  display: none !important;
  opacity: 1;
}

#project_images .slick-slide img {
  min-height: 400px;
  object-fit: cover;
}

.relatedWrap .related h3 {
  padding: 30px 0 10px 0;
  font-size: 24px;
  font-weight: 100;
}

.surveyLeftSection h2.title {
  margin: 0 0 20px 0;
}

.surveyRightSection .vc_single_image-wrapper img {
  border-radius: 8px;
}

.surveySectionWrapper .vc_row.vc_column-gap-10 {
  margin: 0;
}

.inner_img {
  margin-bottom: 40px;
  border-radius: 16px;
}
.inner_img h2 {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  bottom: inherit;
  font-size: 50px;
  font-family: "Dubai";
  line-height: 1.2;
  color: var(--white);
  max-width: 330px;
  font-weight: 400;
}

.conversation-content.sitesBuildingsContent {
  padding: 0 35px;
}

.sitesBuildingsContent h2 {
  font-size: 24px;
  font-weight: 500;
}

.mapFrame .vc_column-inner {
  padding-top: 0px !important;
}

.row-museum-about.saruq-slider {
  background-color: var(--white);
  padding: 5px;
  box-sizing: border-box;
  border-radius: 16px;
}
.row-museum-about.saruq-slider .left_discover_dubai.sah-about-content {
  background-color: transparent;
  padding: 20px;
}
.row-museum-about.saruq-slider .vc_column-inner {
  height: auto;
  min-height: 200px;
  border-radius: 16px 0px 0px 16px;
  padding: 0 !important;
}
.row-museum-about.saruq-slider .about-firstpara {
  margin: 0;
}
.row-museum-about.saruq-slider .about-secondpara {
  margin: 0px 0px 20px 0px;
}

.common_descreption h2 {
  margin: 0;
  font-size: 32px;
  font-style: normal;
  font-weight: 100;
  color: var(--blue);
  line-height: 1.2;
}
.common_descreption p {
  margin: 0;
  padding: 5px 0px;
  line-height: normal;
  color: var(--black);
}

body .view_more_btn > a {
  border-radius: 6px !important;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  text-transform: capitalize;
  padding-right: 25px !important;
}
body .view_more_btn > a i.fa-long-arrow-right:before {
  display: none;
}

[dir=rtl] body .view_more_btn > a {
  margin-right: 0 !important;
  margin-left: 25px !important;
}

.row-dubai-historical .view_more_btn {
  margin-top: 30px;
}

.sah-museum-collection-row {
  background-color: var(--white);
  border-radius: 16px;
  gap: 0 !important;
  margin-bottom: 40px;
}
.sah-museum-collection-row .col1-museum-collection {
  padding-right: 30px;
  padding-left: 30px;
}
.sah-museum-collection-row .img-card-zoomin > figure {
  border-radius: 0;
  margin: 0 !important;
}
.sah-museum-collection-row .img-card-zoomin > figure a, .sah-museum-collection-row .img-card-zoomin > figure a img {
  border-radius: 0;
}
.sah-museum-collection-row .sah-museum-collection-second-col h2.wpb_singleimage_heading {
  top: inherit;
  bottom: 10px;
  font-size: 24px;
  font-weight: 100;
  text-transform: capitalize;
}
.sah-museum-collection-row .sah-museum-collection-second-col .al-hadid-site-row-2 {
  padding-top: 10px;
}
.sah-museum-collection-row .sah-museum-collection-second-col .vc_col-sm-6 > .vc_column-inner, .sah-museum-collection-row .sah-museum-collection-second-col .al-hadid-block {
  padding: 0px 5px;
}
.sah-museum-collection-row .col1-museum-collection .wpb_content_element {
  margin: 0;
}
.sah-museum-collection-row .col1-museum-collection .view_more_btn {
  margin: 30px 0px 0px 0px;
}
.sah-museum-collection-row .sah-museum-collection-third-col {
  padding-left: 5px;
}
.sah-museum-collection-row .sah-museum-collection-third-col .view_our_collection a {
  border: solid 1px var(--white) !important;
  border-radius: 6px;
  color: var(--white) !important;
  font-weight: bold;
}
.sah-museum-collection-row .sah-museum-collection-third-col .view_our_collection a:hover {
  background-color: #3B3E54 !important;
  border-color: #3B3E54 !important;
}

body .sah-museum-collection-third-col > div > div {
  background: rgba(58, 63, 87, 0.5);
  opacity: 1;
}

.right-historical-contact * {
  height: 100%;
}

.row-main-publication {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.row-main-publication .col1-museum-collection {
  padding-right: 30px;
}
.row-main-publication .col-right-publication {
  padding: 0px 10px;
}
.row-main-publication .col-right-publication .vc_col-sm-4 {
  padding: 5px;
}
.row-main-publication .col-right-publication figure {
  border-radius: 0;
}
.row-main-publication .col-right-publication h2 {
  font-size: 24px;
  font-weight: 100;
  text-transform: capitalize;
}

.plan-visit-right.right_discover_dubai {
  background-color: rgba(37, 37, 38, 0.8);
  opacity: 1;
}
.plan-visit-right.right_discover_dubai .vc_column-inner {
  padding: 0;
}
.plan-visit-right.right_discover_dubai .vc_column-inner h2 {
  color: #b79663;
  font-weight: 400;
}
.plan-visit-right.right_discover_dubai .wpb_content_element {
  margin: 0;
}
.plan-visit-right.right_discover_dubai .wpb_content_element p {
  color: var(--white);
}

.subrow-main-faq .faq-img-column, .subrow-main-faq .faq-column {
  padding: 0;
  margin: 0;
}
.subrow-main-faq h2 a {
  padding: 10px 0 !important;
}
.subrow-main-faq h2 a span {
  color: var(--white);
  font-size: 16px;
  text-decoration: underline;
  font-weight: 400;
}
.subrow-main-faq .vc_tta-container, .subrow-main-faq .wpb_content_element {
  margin: 0;
}
.subrow-main-faq a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
}
.subrow-main-faq .wpb_content_element p {
  margin: 0;
  padding: 10px 0;
}
.subrow-main-faq .wpb_content_element h2 {
  color: var(--blue);
  font-size: 24px;
  margin: 0px;
  padding-bottom: 10px;
  font-weight: 400;
}
.subrow-main-faq .faq-left-icon {
  margin-top: 20px;
}
.subrow-main-faq .wpb_content_element.above-social a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none !important;
}

.plan-visit.row-museum-about.row-dubai-historical.saruq-icons .ul-no-style li a {
  margin: 0;
  font-size: 16px;
}
.plan-visit.row-museum-about.row-dubai-historical.saruq-icons .ul-no-style li a img {
  margin-bottom: 10px;
}

.row-main-publication.common_descreption .col1-museum-collection h2 {
  font-weight: 400;
  color: #b79663;
}

.row-main-faq.subrow-main-faq .faq-img-column {
  width: 20%;
}
.row-main-faq.subrow-main-faq .faq-img-column img {
  width: 100%;
  height: auto;
}

.row-main-faq.subrow-main-faq .enq-feedback-column {
  padding: 0;
  margin-top: 0px !important;
}

.row-main-faq.subrow-main-faq .faq-accordian-item {
  padding-left: 50px;
  position: relative;
}

.row-main-faq.subrow-main-faq .faq-accordian-item:before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 32px;
}

[dir=rtl] .row-main-faq.subrow-main-faq .faq-accordian-item:before {
  left: inherit;
  right: 0px;
}

[dir=rtl] .faqsEnquiriesServiceRequest .vc_tta-panel-heading {
  margin-right: 20px;
}

.row-main-faq.subrow-main-faq .faq-accordian-item.vc_active .vc_tta-panel-heading h2 a span {
  background-color: transparent;
  color: var(--blue);
}

.row-main-faq.subrow-main-faq .faq-accordian-item .vc_tta-panel-heading h2 a {
  background-color: transparent !important;
}

.subrow-main-faq .wpb_content_element.above-social a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none !important;
}

.subrow-main-faq .wpb_content_element .saruq a {
  padding: 0px 10px;
  font-size: 32px;
}

.row-main-faq.subrow-main-faq .faq-column p {
  margin: 0;
}

.row-museum-about.row-dubai-historical .plan-visit-right.right_discover_dubai > .vc_column-inner {
  max-width: 550px;
}

.row-museum-about.row-dubai-historical .plan-visit-right.right_discover_dubai > .vc_column-inner .heritage-button.find-out-button {
  margin-top: 30px;
}

[dir=rtl] .mue-section-slider {
  padding: 0px !important;
}

.row-museum-about.row-dubai-historical .plan-visit-right.right_discover_dubai > .vc_column-inner .heritage-button.find-out-button a {
  border: solid 1px var(--white) !important;
}

.download_section .vc_column-inner {
  padding: 0 !important;
}

.download_section .vc_column-inner .wpb_content_element {
  margin: 0;
}

.download_section p {
  margin: 0;
}

.row-main-faq.subrow-main-faq .vc_column-inner {
  padding: 0 !important;
}

.contact_get_in_touch .contact_form_box {
  margin: 0px -15px;
}

*[dir=rtl] .contact_get_in_touch .contact_form_box {
  text-align: right;
}

*[dir=rtl] .contact_get_in_touch .contact_form_box input, *[dir=rtl] .contact_get_in_touch .contact_form_box select {
  text-align: right;
}

/* .contact_get_in_touch p label input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 4px;
    width: auto;
} */
.bunyan-descreption_section {
  padding-bottom: 40px;
}
.bunyan-descreption_section h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}
.bunyan-descreption_section h4 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  padding-top: 10px;
}
.bunyan-descreption_section .wpb_content_element {
  margin: 0;
}
.bunyan-descreption_section .vc_row-o-content-bottom {
  padding-top: 20px;
}

.exciting-image {
  margin: 0;
}

.row-museum-experience.common_descreption.slider_section .slider_blck .slick-slider {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
.row-museum-experience.common_descreption.slider_section .wpb_content_element {
  margin: 0;
}
.row-museum-experience.common_descreption.slider_section .main_h2_head {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.2;
}
.row-museum-experience.common_descreption.slider_section .text-content p {
  color: var(--white);
  font-size: 16px;
}
.row-museum-experience.common_descreption.slider_section .content-info {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}
.row-museum-experience.common_descreption.slider_section .slick-slide {
  padding: 0 5px 0 5px;
  box-sizing: border-box;
}
.row-museum-experience.common_descreption.slider_section .slick-slide a.saruq-section {
  position: relative;
}
.row-museum-experience.common_descreption.slider_section .slick-slide a.saruq-section img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.row-museum-experience.common_descreption.slider_section .slick-slide h2 {
  display: none;
}
.row-museum-experience.common_descreption.slider_section .slick-slide .saruq-section-name {
  padding: 10px 10px;
  background-color: rgba(45, 83, 87, 0.5);
  font-family: "Dubai";
}
.row-museum-experience.common_descreption.slider_section span.saruq-section-name-inner {
  font-size: 16px;
}
.row-museum-experience.common_descreption.slider_section button.slick-arrow:before {
  color: var(--white) !important;
  content: "\f105";
  font-family: "Font Awesome 5 Pro" !important;
}

[dir=rtl] .row-museum-experience.common_descreption.slider_section .slider_blck .slick-slider {
  justify-content: flex-start;
}

.saruq-al-hadid .slick-list.draggable {
  order: -1;
}
.saruq-al-hadid .slick-slider .slick-arrow {
  margin-left: 10px;
}

[dir=rtl] .row-museum-experience .vc_column-inner {
  border-radius: 8px;
}

[dir=rtl] .row-museum-experience.common_descreption.slider_section button.slick-arrow:before {
  font-family: "Font Awesome 5 Pro" !important;
}

body #mue-section-slider .slick-arrow:hover:hover {
  background-color: rgb(45, 83, 87) !important;
}

.contact-form form p:last-of-type label.sr-only {
  position: absolute;
  right: 0;
  top: 0;
}

.topSearchButtonSection .reducedpadding {
  padding: 0 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topSortBy label.topSortBymain,
.topSortBy label.topSortBymain select.newsortfield {
  width: 100%;
}

.News_block {
  margin-left: -15px;
  margin-right: -15px;
}

/*arabic lang pages start*/
[dir=rtl] .topSearchButtonSection input.search-field {
  padding: 0px 15px 0 60px;
}

*[dir=rtl] .aboutDubaiIcons {
  position: absolute;
  top: 23%;
  left: inherit;
  right: 0;
}

[dir=rtl] .aboutDubaiRightContent .vc_column-inner {
  padding-right: 20px;
  padding-left: 0px;
}

*[dir=rtl] .education-section-left.left_discover_dubai.aboutDubaiRightContent {
  background: transparent;
  padding: 20px 25px !important;
}

*[dir=rtl] .posts-link a.btn::after {
  margin-right: 15px;
  margin-left: 0;
  transform: rotate(180deg);
}

*[dir=rtl] .full-news-content .news-content {
  padding: 0px 0px 0px 30px;
}

*[dir=rtl] .full-news-content .news-content h3 {
  font-size: 16px;
  font-weight: 400;
  color: #000000; /*7D88A2;*/
}

*[dir=rtl] .topSearchButtonSection .searchBtnSubmit {
  right: inherit;
  left: 20px;
}

*[dir=rtl] .faq-bottom a.faq-close-btn {
  right: inherit;
  left: 20px;
}

*[dir=rtl] .new_faq .vc_tta-panels .vc_tta-panel-heading h2 a {
  text-align: right;
}

[dir=rtl] .new_faq .vc_tta-panels .vc_tta-panel-heading h2 a:after {
  left: 10px;
  right: inherit;
}

[dir=rtl] .right-historical-contact * {
  height: 100%;
}

[dir=rtl] .contactUsWrap .vc_column-inner {
  padding-right: 50px;
}

[dir=rtl] .right-historical-contact * {
  height: 100%;
}

[dir=rtl] .investmentLeasingContentWrap .payment-channel-card img {
  transform: scaleX(-1);
}

[dir=rtl] .post-content .post-grid i.fa-long-arrow-right:before {
  content: "\f053";
}

/*arabic lang pages end*/
/*bugs css starts*/
.document-file-table td {
  padding: 17px 0 17px 0;
}
.document-file-table td a {
  font-weight: 700;
  text-transform: capitalize;
}

.tableLayoutWrap h2 {
  color: #2C2E3F;
  font-size: 16px !important;
  font-weight: 400;
  text-transform: capitalize;
}

.entry-content .vc_btn3.vc_btn3-color-inverse,
.entry-content .vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat {
  background: var(--primary);
  border-radius: 6px;
}

.antiquitiesWrap .view_more_btn {
  display: none;
}

.conversation-row > .vc_column-inner {
  padding: 0 !important;
  min-height: 100%;
  border-radius: 8px;
}

[dir=rtl] .plan-visit.row-museum-about.row-dubai-historical.saruq-icons .ul-no-style li a {
  padding: 20px 0;
}

/*bugs css ends*/
.discoverDubaiTopTitle p {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 35px 0 !important;
}

.mainTitle h2, .mainTitle p {
  color: var(--secondary);
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0;
}
.mainTitle h2 {
  text-transform: capitalize;
}
.mainTitle p {
  font-weight: 400;
  font-size: 16px;
}
.mainTitle li {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contactUsCardWrap h2 {
  color: var(--secondary);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.contactUsCardContent h2, .contactUsCardContent p {
  margin: 0 0 5px 0 !important;
}
.contactUsCardContent p {
  line-height: 1.3;
}

.News_block .wpb_content_element p {
  color: var(--secondary);
}

[dir=rtl] .row-dubai-historical {
  border-radius: 8px;
  overflow: hidden;
}

.row-main-faq.subrow-main-faq {
  padding: 40px 5%;
  display: flex;
}

[dir=rtl] .row-main-faq.subrow-main-faq {
  margin-top: 40px;
  border-radius: 8px;
  padding: 40px 5%;
  display: flex;
  flex-wrap: nowrap;
}

@media screen and (max-width: 1920px) {
  .row-museum-experience.common_descreption.slider_section:before {
    max-width: 81.5%;
  }
}
.page-template-dubaimore .page-header {
  display: none;
}

.making-dubai-more .page-header {
  display: none;
}

.architectural-heritage-and-antiquities .row-historical-contact {
  border-radius: 8px;
}

.saruq-al-hadid .row-main-faq {
  border-radius: 8px;
}

.listofServicesWrap p {
  padding: 0;
  margin: 0;
  color: var(--white);
}

.saruq-al-hadid .sah-right-discover-dubai.vc_col-sm-5 {
  border-radius: 8px;
}

.arrivalWelcomeWrap > .vc_column-inner {
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: inherit;
  justify-content: center;
}

.dubai-protected-areas .education-icons ul.educationItems {
  background: var(--grey-dark);
  padding: 15px 0;
  border-radius: 8px;
}

[dir=rtl] .dubai-protected-areas .education-icons ul.educationItems {
  padding: 15px 0;
  border-radius: 8px;
}

.dubai-protected-areas .plan-visit-icons ul.educationItems > li > a {
  margin: 15px 8px;
  font-size: 14px !important;
  gap: 5px;
  line-height: 1.3;
}

.educationItems span {
  display: block;
}

.excitingVisitorLeft .vc_single_image-wrapper img {
  border-radius: 8px;
}

.arrivalWelcomeWrap {
  border-radius: 8px;
}

.discoverDubaiWrap .wpb_single_image {
  margin: 0 !important;
}

/*project-inner-page-end*/
/*======================= Survay Department Page Css Start ===================*/
.survey_dpment {
  padding-top: 30px;
}

.surveySectionWrapper .surevy_section_tabs {
  padding-left: 15px;
}

.surevy_section_tabs.vc_tta.vc_tta-spacing-1 .vc_tta-tab {
  margin-left: 0;
  margin-top: 0;
}

.surevy_section_tabs .vc_tta-panels {
  background-color: transparent !important;
  border-color: transparent !important;
}

.surevy_section_tabs.vc_tta-tabs:not([class*=vc_tta-gap]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top .vc_tta-tab > a {
  border-radius: 0;
  border: 0;
}

.survey_subpages_content ul li, .survey_subpages_content p, .survey-fog-text p, .survey_projects_slide p {
  color: #000000; /*7D88A2;*/
}

ul.m_surveySubList li {
  color: #000000; /*7D88A2;*/
}

.survey_dpment p, .surevy_section_tabs p {
  font-size: 16px;
  margin: 0;
  color: #000000; /*7D88A2;*/
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
}

.surevy_section_tabs p {
  padding: 5px 0;
}

.projects-links a {
  font-size: 16px;
  line-height: 18px;
}

.surveySectionWrapper .geodesy-text {
  padding-top: 20px;
}
.surveySectionWrapper .geodesy-text p {
  padding-right: 15px;
}

.openingHours p {
  margin: 10px 0px;
}

h4.sub_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.survey-services-text .title {
  margin-bottom: 20px;
}

.survey-services-text p {
  margin: 0;
  font-size: 16px;
  color: #000000; /*7D88A2;*/
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  padding: 5px 0;
}

.survery-links .wpb_wrapper .survey-box-holder-row .survey_link_box .vc_column-inner p:after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  color: var(--grey-alt3);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.survey_services_container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.survey_services_container .image_with_title_small_boxes {
  margin: 0 5px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}
.survey_services_container .image_with_title_small_boxes:before {
  display: none;
}
.survey_services_container .image_with_title_small_boxes .image_with_title_box {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}
.survey_services_container .image_with_title_small_boxes .image_with_title_box h2 {
  color: var(--grey-alt3);
  font-size: 16px;
  padding: 15px 10px;
  margin: 0;
  min-height: 72px;
  background-color: var(--white);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.survey_services_container .image_with_title_small_boxes .image_with_title_box figure a {
  height: 180px;
  padding-top: 180px;
  position: relative;
  width: 100%;
}
.survey_services_container .image_with_title_small_boxes .image_with_title_box figure a img {
  position: absolute;
  object-fit: cover;
  margin: auto;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 10px 10px 0 0;
}

.survey_project_container .survey_projects_slide .slick-track {
  display: inline-flex;
}
.survey_project_container .survey_projects_slide .slick-track .slick-slide {
  padding: 0 75px;
}

.slider-title .wpb_content_element {
  margin-bottom: 0;
}
.slider-title .wpb_content_element .title {
  font-size: 32px;
  color: var(--grey-alt3);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 100;
}
.slider-title .wpb_content_element .sub_title {
  font-size: 23px;
  color: var(--grey-alt3);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 500;
}

.according_section .according_title {
  margin-bottom: 20px;
  box-shadow: 0px 4px 7px 4px rgba(0, 0, 0, 0.04);
  border-color: transparent !important;
}
.according_section .according_title .vc_tta-panel-heading {
  border: 0 !important;
}
.according_section .according_title h2 {
  border: 0 !important;
}
.according_section .according_title.vc_active .vc_tta-panel-heading a {
  border-color: transparent !important;
  border-radius: 4px 4px 0 0 !important;
}
.according_section .according_title .vc_tta-panel-heading a .vc_tta-title-text {
  font-size: 18px;
}
.according_section .according_title .vc_tta-panel-heading a {
  background-color: var(--white) !important;
  border-color: transparent !important;
  border-radius: 4px !important;
}
.according_section .according_title .vc_tta-panel-body {
  background-color: var(--white) !important;
  border-color: transparent !important;
}

.surevy_section_tabs .vc_tta-panel.vc_active .vc_tta-panel-body {
  background-color: var(--white) !important;
  border-color: transparent !important;
  border-radius: 6px !important;
}

.survey_projects_slide button.slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 999;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #e7e8e9;
  border: none;
  border-radius: 100%;
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
.survey_projects_slide button.slick-arrow.slick-prev {
  right: inherit;
  left: 0px;
}
.survey_projects_slide button.slick-arrow.slick-prev:after {
  border-top: 3px solid rgba(0, 0, 0, 0.5);
  border-left: 3px solid rgba(0, 0, 0, 0.5);
  border-bottom: 0;
  border-right: 0;
  left: 8px;
  top: 14px;
}
.survey_projects_slide button.slick-arrow.slick-next {
  right: 0px;
  left: inherit;
}
.survey_projects_slide button.slick-arrow:after {
  content: "";
  position: absolute;
  left: 0;
  right: 4px;
  margin: 0 auto;
  width: 11px;
  height: 11px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.5);
  border-right: 3px solid rgba(0, 0, 0, 0.5);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
  top: 15px;
}

.survey_projects_slide button.slick-arrow:after {
  content: "";
  position: absolute;
  left: 0;
  right: 4px;
  margin: 0 auto;
  width: 11px;
  height: 11px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.5);
  border-right: 3px solid rgba(0, 0, 0, 0.5);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
  top: 15px;
}

.survey_projects_slide button.slick-arrow.slick-prev:after {
  border-top: 3px solid rgba(0, 0, 0, 0.5);
  border-left: 3px solid rgba(0, 0, 0, 0.5);
  border-bottom: 0;
  border-right: 0;
  left: 8px;
  top: 14px;
}

.survey_projects_slide button.slick-arrow.slick-prev:before,
.survey_projects_slide button.slick-arrow.slick-next:before,
.survey_projects_slide .buttonsPlayPauseHome {
  display: none;
}

/* Arabic Css Start */
*[dir=rtl] .search-results-left {
  padding-left: 15px;
  padding-right: 0;
}

*[dir=rtl] ul.search-results-suggestions-list {
  padding-right: 25px;
  padding-left: 0;
}

*[dir=rtl] .search-result-result-info {
  padding-right: 1rem;
}

/* ================ Prashant Pages Arabic CSs start =======================*/
/*********** Collection Page Start *************/
*[dir=rtl] .search-sort-page-size-bar .topSearchButtonSection .topSortBy {
  display: flex;
}

*[dir=rtl] .single_animal_details_right table tr td:first-child {
  border-radius: 0 8px 8px 0;
}

*[dir=rtl] .single_animal_details_right table tr td:last-of-type {
  border-radius: 8px 0px 0px 8px;
}

.innerMenu .menu li a {
  display: grid !important;
  place-items: center;
}

/*********** Collection Page End *************/
/*********** Discover Dubai Start **********/
/*********** Site And Buildings Start **********/
/********* Proetction area css start **********/
.protected-area-details-section .vc_tta-panel-body {
  background-color: var(--white) !important;
  border: 0 !important;
  border-radius: 8px !important;
}

/*********** Site And Buildings End **********/
/* legal metrology verification Start */
.error_msg {
  color: red;
}

/*========== Bug Solved Css End ============= */
/*=========== Making Dubai and More Inner pages Css Start ============ */
body.page-template-dubaimore {
  /*To remove four tabs from inner pages for making dubai more*/
  /*To remove the h1 title from breedcumbs */
}
body.page-template-dubaimore .vc_custom_heading {
  margin: 30px 0 40px;
  padding: 0px 0 25px;
  font-size: 43px;
  font-weight: 100;
}
body.page-template-dubaimore a.title {
  font-size: 16px;
  font-weight: 500;
}
body.page-template-dubaimore .dubai-more-box-bg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}
body.page-template-dubaimore .dubai-more-box {
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0px 0px 5px 0px rgba(144, 137, 137, 0.15);
  padding: 24px;
  position: relative;
  width: 100%;
  margin: 0px;
  height: 220px;
}
body.page-template-dubaimore .dubai-more-box p {
  color: var(--grey-alt3);
  font-weight: 300;
}
body.page-template-dubaimore .dubai-more-box .wpb_wrapper {
  padding-top: 26px;
  transition: all 0.5s ease-in-out;
}
body.page-template-dubaimore .dubai-more-box .wpb_wrapper .wpb_content_element {
  margin-bottom: 0;
}
body.page-template-dubaimore .dubai-more-box .wpb_wrapper .wpb_content_element .wpb_wrapper {
  padding-top: 0;
}
body.page-template-dubaimore .media_section .title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}
body.page-template-dubaimore .display-posts-listing {
  margin-left: 0;
  margin-right: 0;
}
body.page-template-dubaimore .sustainablePageSection, body.page-template-dubaimore h1 {
  display: none;
}

/*css for making dubai more inner pages*/
.page-template-dubaimore .makingDubaiMainTitle p {
  font-size: 20px;
}

body.page-template-dubaimore .makingDubaiMainTitle {
  margin: 30px 0px;
}
body.page-template-dubaimore .makingDubaiMainWraper::before {
  height: calc(50% + 12px);
}
body.page-template-dubaimore .makingDubaiMoreColWrap.currentPageActive {
  border-bottom: solid 5px var(--primary);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
body.page-template-dubaimore .display-posts-listing .vc_col-md-4 {
  padding: 0 25px 0 0;
}

[dir=rtl] body.page-template-dubaimore .display-posts-listing .vc_col-md-4 {
  padding: 0 0 0 25px;
}

[dir=rtl] .makingDubaiColoumWrappers .vc_col-sm-3 {
  padding: 0px 0px 0 25px;
}

/* ---- about-dubai-municipality --- Page Css Start ---- */
.top_imgae_section span {
  white-space: normal;
}

img {
  max-width: 100%;
  height: auto;
}

.awards-certificates .about_descreption h2 {
  font-size: 49px;
  margin: 0;
  line-height: 1.4;
}
.awards-certificates .about_descreption p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.TabsSectionAwards .vc_tta-panels {
  border: none !important;
}
.TabsSectionAwards .vc_tta-panel-body {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 !important;
  margin-top: 15px;
  border: none !important;
  gap: 20px;
}
.TabsSectionAwards .vc_tta-panels .tabRowSec {
  width: calc(33.33333% - 15px);
  box-shadow: 0px 4px 7px 4px rgba(0, 0, 0, 0.04);
  background: var(--white);
  border-radius: 8px;
  padding: 0px;
  box-sizing: border-box;
  margin: 15px 0;
  padding: 20px;
}
.TabsSectionAwards .vc_tta-panels .tabRowSec p {
  margin: 0;
}
.TabsSectionAwards .vc_tta-panels .tabRowSec p strong {
  margin: 0;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
}
.TabsSectionAwards .vc_tta-panels .tabRowSec .wpb_column {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--secondary);
}
.TabsSectionAwards li a {
  padding: 18px 18px !important;
  border: none !important;
  background-color: #F4F8FC !important;
  line-height: normal;
  font-size: 16px;
  border-radius: 0 !important;
}
.TabsSectionAwards li a:after, .TabsSectionAwards li a:before {
  display: none !important;
}
.TabsSectionAwards li.vc_active a {
  background-color: #D9E0EB !important;
}
.TabsSectionAwards .paddles {
  display: none;
}

.page_inner_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
}
.page_inner_content article {
  width: 100%;
  max-width: calc(100% - 388px);
  order: 1;
}
.page_inner_content h1.entry-title {
  margin: 0px;
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--primary);
}
.page_inner_content .entry-content {
  padding: 0;
}
.page_inner_content .entry-content p {
  margin: 0px;
  padding: 5px 0px;
  color: var(--primary);
}
.page_inner_content .entry-meta {
  margin: 0;
  padding-bottom: 20px;
  font-size: 16px;
}
.page_inner_content a {
  color: #7CB9FF;
}
.page_inner_content a:hover {
  color: #e30024;
}
.page_inner_content .post-thumbnail img {
  width: 100%;
}
.page_inner_content nav.navigation.post-navigation {
  width: 100%;
  margin-bottom: 20px;
  font-size: 16px;
}
.page_inner_content nav.navigation.post-navigation a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  text-transform: capitalize;
  font-size: 16px;
}

.TabsSectionAwards .vc_tta-panel-heading {
  margin-bottom: 10px !important;
  display: block;
}

.Pioneering_top_section h2 {
  margin: 0px;
  color: var(--secondary);
  padding-bottom: 10px;
}
.Pioneering_top_section p {
  margin: 0px;
  padding-bottom: 5px;
  color: var(--secondary);
  padding-top: 5px;
}
.Pioneering_top_section ul li, .Pioneering_top_section ol li {
  color: var(--secondary);
}
.Pioneering_top_section .about_descreption {
  margin-bottom: 10px;
}

/* --- bug list css start --- */
.category-filter.left-section {
  padding: 10px;
}
.category-filter.left-section li {
  padding-left: 30px;
  position: relative;
}
.category-filter.left-section li input {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.category-filter.left-section li span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: solid 1px var(--grey-alt3);
  border-radius: 5px;
}
.category-filter.left-section li span:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  display: inline-block;
  transform: rotate(45deg);
  height: 13px;
  width: 7px;
  opacity: 0;
  border-bottom: 2px solid #78b13f;
  border-right: 2px solid #78b13f;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.category-filter.left-section li input:checked ~ span:after {
  opacity: 1;
}
.category-filter.left-section button {
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 16px;
}
.category-filter.left-section > .category-title {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0px;
}

.rasid-form-col.contact-rasid-tab-form p span.wpcf7-form-control-wrap {
  padding-left: 30px;
  position: relative;
}
.rasid-form-col.contact-rasid-tab-form p span.wpcf7-form-control-wrap input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px !important;
  height: 20px;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  min-height: inherit;
  margin: 0;
}
.rasid-form-col.contact-rasid-tab-form p span.wpcf7-form-control-wrap label {
  position: static;
}
.rasid-form-col.contact-rasid-tab-form p span.wpcf7-form-control-wrap label span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: solid 3px #8190B9;
  border-radius: 4px;
}
.rasid-form-col.contact-rasid-tab-form p span.wpcf7-form-control-wrap label span:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  display: inline-block;
  transform: rotate(45deg);
  height: 13px;
  width: 7px;
  opacity: 0;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.rasid-form-col.contact-rasid-tab-form p span.wpcf7-form-control-wrap label input:checked ~ span:after {
  opacity: 1;
}
.rasid-form-col.contact-rasid-tab-form p span.wpcf7-form-control-wrap label input:checked ~ span:before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.body-content .menu li a.active {
  background-color: #D9E0EB !important;
}

.contact_get_in_touch.bunyan_form form.init p span.wpcf7-form-control-wrap {
  padding-left: 30px;
}
.contact_get_in_touch.bunyan_form form.init p span.wpcf7-form-control-wrap label {
  padding-left: 0;
  position: static;
}

.download_makani_app {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.download_makani_app .row-download-image-left {
  width: 100%;
  max-width: 80px;
  margin: 0;
}
.download_makani_app .row-content-middel {
  width: 100%;
  max-width: 55%;
  margin: 0;
}
.download_makani_app .download_app {
  width: 100%;
  max-width: 26%;
  margin: 0;
}
.download_makani_app .download_app .wpb_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.planvisit-inner-row-img {
  position: relative;
}
.planvisit-inner-row-img .second-col {
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 100%;
  max-width: 33%;
}
.planvisit-inner-row-img .second-col .row-phone-banner {
  margin: 0;
}

.planvisit-inner-row-guide-tour a.vc_btn3-shape-square {
  background-color: #830625 !important;
  border-radius: 0px !important;
  border-color: var(--white) !important;
}
.planvisit-inner-row-guide-tour .view_more_btn-outline-light, .planvisit-inner-row-guide-tour .wpb_content_element {
  margin: 0;
}

.sitesBuildingsContentWrap .heritage-button a {
  background-color: #830625 !important;
  border-radius: 0px !important;
  border-color: #830625 !important;
}

.post-content ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
}
.post-content ul > li a {
  text-decoration: none;
}

.useful-pics-links .vc_column-inner {
  padding: 0 !important;
}

.rasid-useful-links .links {
  padding: 0;
}

.useful-pics-links {
  margin-bottom: 50px;
}
.useful-pics-links .buttonsPlayPauseHome {
  display: none;
}
.useful-pics-links button.slick-arrow {
  display: none !important;
}

.rasid_form-error-color .rasid_form span.required {
  color: red;
}

.search-results-right {
  width: 75%;
  flex-wrap: wrap;
}

[dir=rtl] .search-results-filters.thin-bottom-border label {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .search-results-filters.thin-bottom-border label input, [dir=rtl] .search-results-filters.thin-bottom-border label input ~ span.checkmark:before {
  left: inherit;
  right: 0;
}
[dir=rtl] .search-results-filters.thin-bottom-border label input ~ span.checkmark:after {
  left: inherit;
  right: 6px;
}

[dir=rtl] .search-filter-documents-lbl, [dir=rtl] .search-filter-content-lbl, [dir=rtl] .search-filter-services-lbl, [dir=rtl] .search-filter-all-lbl, [dir=rtl] .search-sort-services-lbl, [dir=rtl] .search-sort-content-lbl {
  padding-left: 0px;
  padding-right: 10px;
}

[dir=rtl] .search-top-input input {
  border-left: 0;
  border-right: 1px solid var(--grey-alt2);
  padding-left: 0;
  padding-right: 10px;
}

.search-results-panel * {
  white-space: normal;
  word-break: break-word;
}

#search-paging-perpage-input {
  padding: 6px;
  padding-right: 28px;
  border: 2px solid #688cba;
  border-radius: 7px;
}

[dir=rtl] #search-paging-perpage-input {
  padding-right: 6px;
  padding-left: 28px;
}

[dir=rtl] .search-top-input {
  padding-left: 0;
  padding-right: 5px;
}

.Pioneering_top_section {
  padding-bottom: 20px;
}
.Pioneering_top_section h2.padding_remove {
  padding: 0;
}
.Pioneering_top_section table {
  margin-bottom: 10px;
}
.Pioneering_top_section table th {
  background: rgba(59, 63, 84, 0.7);
  color: var(--white);
  font-weight: 400;
  padding: 15px !important;
}
.Pioneering_top_section table tbody tr {
  border: solid 1px var(--grey-alt1);
}
.Pioneering_top_section table tbody tr td {
  border: none !important;
  padding: 15px;
}
.Pioneering_top_section table tbody tr td p {
  padding: 0;
}
.Pioneering_top_section table tbody tr td p strong {
  color: var(--white);
  font-weight: 400;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1;
}
.Pioneering_top_section .wptb-table-container-matrix {
  overflow: auto;
}
.Pioneering_top_section .wpb_content_element {
  margin: 0;
  line-height: 1;
}
.Pioneering_top_section ul, .Pioneering_top_section ol {
  margin: 0;
  padding-left: 20px;
}
.Pioneering_top_section.contact_get_in_touch.bunyan_form {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  margin: 0;
}
.Pioneering_top_section.contact_get_in_touch.bunyan_form form {
  margin: 20px -15px 0 -15px;
}
.Pioneering_top_section.contact_get_in_touch.bunyan_form form span.ajax-loader {
  position: absolute;
  bottom: -30px;
  left: 0;
}
.Pioneering_top_section.contact_get_in_touch.bunyan_form form p {
  padding: 0px 15px !important;
}
.Pioneering_top_section.contact_get_in_touch.bunyan_form form p input[type=checkbox] {
  top: 2px;
  width: 20px;
  height: 20px;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  min-height: inherit;
  margin: 0;
}
.Pioneering_top_section.contact_get_in_touch.bunyan_form form p label span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: solid 3px #8190B9;
  border-radius: 4px;
}
.Pioneering_top_section.contact_get_in_touch.bunyan_form form p label span:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  display: inline-block;
  transform: rotate(45deg);
  height: 13px;
  width: 7px;
  opacity: 0;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.Pioneering_top_section.contact_get_in_touch.bunyan_form form p label input:checked ~ span:before {
  background-color: var(--primary);
  border-color: var(--primary);
}
.Pioneering_top_section.contact_get_in_touch.bunyan_form form p label input:checked ~ span:after {
  opacity: 1;
}

.about_img_block .vc_col-sm-3 {
  padding-left: 10px;
}

.contact_get_in_touch p label {
  background-color: transparent;
}

.rasid_tables {
  overflow: auto;
}

.rasid-form-col .rasid_form textarea, .rasid-form-col .contact_form_box textarea, .rasid-form-col .rasid_form select, .rasid-form-col .contact_form_box select, .rasid-form-col .rasid_form input, .rasid-form-col .contact_form_box input {
  box-shadow: none;
}

/* --- bug list css End --- */
/* --- sitemap css Start ----*/
.sitemap_row_section .sitemap_block {
  padding-left: 15px;
  padding-right: 15px;
}

/* --- sitemap css End ----*/
/* Easy Payment - Payment Channels */
.service-center-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.check-and-pay-container {
  display: flex;
  flex-direction: column;
}

.white-background {
  background-color: var(--white);
}

.cyf-sub-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
.cyf-sub-menu > * {
  padding: 0px;
}
.cyf-sub-menu ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  align-content: end;
  border: none !important;
  margin: 0px 0px 5px 0px;
}
.cyf-sub-menu ul li {
  background-color: #F4F8FC !important;
  border: 1px solid #ccd7e3;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px;
  background: #f4f8fc;
  margin: 0 5px;
  cursor: pointer;
  min-width: 80px;
}
.cyf-sub-menu ul li:hover, .cyf-sub-menu ul .active {
  background-color: var(--grey-dark) !important;
  color: var(--white);
}

.pay-header-tabs .title-header {
  text-align: center;
}
.pay-header-tabs .title-header h3 {
  margin: 20px 0 0;
  font-size: 32px;
}
.pay-header-tabs .title-header p {
  margin: 10px 0 30px;
}

.cyf-sub-menu-button {
  line-height: 1 !important;
  color: var(--white) !important;
  align-self: center;
  border: 2px solid var(--grey-dark);
  border-radius: 8px !important;
  background: var(--grey-dark);
  padding: 15px !important;
  width: 200px !important;
  cursor: pointer !important;
  margin: 30px auto 0 !important;
  display: flex !important;
  justify-content: center !important;
}
.cyf-sub-menu-button:hover {
  background-color: white !important;
  color: var(--grey-dark) !important;
  cursor: pointer;
}

.check-pay-tabContent-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
.check-pay-tabContent-form div {
  align-self: center;
  width: 100%;
}
.check-pay-tabContent-form input {
  border: 1px solid var(--grey-alt29);
  background: var(--secondary, #fff);
  border-radius: 0;
  color: #74889F;
  padding: 15px !important;
  width: 100% !important;
  max-width: 100%;
  margin: 10px auto 0;
  border-radius: 8px;
}
.check-pay-tabContent-form input:first-child {
  border-radius: 8px 0 0 8px;
}
.check-pay-tabContent-form input:first-child:last-child {
  border-radius: 8px;
  width: 500px;
}
.check-pay-tabContent-form input + input {
  border-radius: 0 8px 8px 0;
}
.check-pay-tabContent-form input.single-input {
  border-radius: 8px !important;
}
.check-pay-tabContent-form input[class*=single-item] {
  width: 30rem;
}

#checkPaytab3 input {
  min-width: 200px;
}

.contact-us-cards {
  width: 95%;
  min-height: 20rem;
  /*background: #F4F8FC;*/
  background: var(--white);
  border: 0.293px solid #c5cdd9;
}

.payment-channel-card.contact-us-cards > div > * {
  margin-bottom: 10px;
}

.paymentFacility .payment-channel-card {
  min-height: 33rem;
}

/* Service Centers */
.dubaiMainOffice {
  padding: 15px;
  background: #ad9964;
  margin-bottom: 50px;
}
.dubaiMainOffice .mainMap iframe {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  height: 345px;
}
.dubaiMainOffice .mainMap .vc_column-inner {
  padding-top: 5px;
}

.dubaiMainOfficeContent {
  color: var(--white);
  margin-left: 20px;
}
.dubaiMainOfficeContent h2 {
  text-transform: capitalize;
  margin: 0;
}
.dubaiMainOfficeContent .locationQRCode {
  position: absolute;
  right: 20px;
  top: 0;
  width: 100px;
}
.dubaiMainOfficeContent .con-details {
  display: inline-block;
  width: 53%;
  vertical-align: top;
  padding-right: 20px;
  background: rgba(0, 0, 0, 0.01);
}
.dubaiMainOfficeContent .con-details span {
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 3px;
  border: 1px solid var(--white);
  border-radius: 100%;
  text-align: center;
}
.dubaiMainOfficeContent .con-details p {
  display: inline-block;
  margin: 0;
  padding: 0 10px;
  width: calc(100% - 25px);
}
.dubaiMainOfficeContent .con-details div {
  margin-bottom: 8px;
  padding: 4.5px 4px;
}
.dubaiMainOfficeContent .work-details {
  display: inline-block;
  background: rgba(0, 0, 0, 0.01);
  width: 46%;
  vertical-align: top;
  margin-top: -13px;
}
.dubaiMainOfficeContent .work-details * {
  margin: 0;
}
.dubaiMainOfficeContent .work-details h3 {
  color: var(--white);
  font-weight: 600;
  margin-top: 10px;
}

.centre-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  box-shadow: 1px 1px 5px #dedede;
  border-radius: 20px;
  padding: 15px 10px;
  min-height: 600px;
  position: relative;
  margin: 10px;
}
.centre-card > * {
  margin: 0 10px;
}
.centre-card h2 {
  color: var(--primary);
  font-size: 32px;
}
.centre-card h3 {
  color: var(--primary);
  margin: 15px 0 8px;
}
.centre-card h3 + p {
  padding: 0;
  margin: 0;
}
.centre-card hr {
  margin: 5px 0;
}
.centre-card .mapHolder {
  box-shadow: 0 1px 5px #ababab;
  max-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 10px 0;
}
.centre-card .mapHolder img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
}
.centre-card a:hover {
  text-decoration: none;
  color: var(--grey-dark);
}

.centre-card p a, .centre-card-content {
  margin: 0;
}

.centre-card-content h2 {
  color: var(--primary);
  margin: 5px 0 15px;
}

.ul-no-style {
  list-style-type: none;
  padding: 0;
}

.bottom-divider-ul li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-dark);
}

.discoverDubaiTabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .vc_column_container, .discoverDubaiTabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .vc_column-inner .wpb_wrapper, .discoverDubaiTabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .vc_column-inner .wpb_wrapper .wpb_content_element,
.discoverDubaiTabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .vc_column-inner .wpb_wrapper .wpb_content_element .wpb_wrapper {
  height: 100%;
}

.reduced-height-mapHolder {
  max-height: 164px !important;
}

.center-card-landscape {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  box-shadow: 0px 0px 3px 2px rgba(215, 215, 215, 0.11);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  position: relative;
  height: 100%;
}
.center-card-landscape > div {
  flex-grow: 1;
  width: 50%;
}
.center-card-landscape h2 {
  margin: 0;
  color: var(--secondary);
  font-size: 16px;
}
.center-card-landscape h3 {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  color: var(--secondary);
  padding: 0 23px;
  position: relative;
  padding-bottom: 3px;
}
.center-card-landscape h3 > img {
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
}
.center-card-landscape h3 > img[class*=wp-image-342039] {
  top: 5px !important;
}
.center-card-landscape .mapHolder {
  overflow: hidden;
  border-radius: 8px;
  margin-top: 10px;
  max-height: 264px;
}
.center-card-landscape .mapHolder > iframe {
  border: 0;
  width: 100%;
  pointer-events: none;
}

html[dir=rtl] .center-card-landscape h3 > img {
  left: unset;
  right: 0;
}

.vc_general.vc_tta.discoverDubaiTabs .center-card-landscape > div > a {
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--primary);
  padding: 10px 20px;
  font-size: 16px;
  color: var(--primary);
  position: relative;
  transition: all 1s ease-out;
  bottom: 0;
  background: var(--white) !important;
  display: inline-block;
}

html[dir=rtl] .vc_general.vc_tta.discoverDubaiTabs .center-card-landscape > div > a {
  padding: 10px 20px 10px 20px;
}

.discoverDubaiTabs.tab-menu-container .wpb_content_element {
  margin: 0;
}

.vc_general.vc_tta.discoverDubaiTabs .center-card-landscape > div > a:hover {
  background-color: var(--primary) !important;
  color: var(--white);
}

.vc_general.vc_tta.discoverDubaiTabs .center-card-landscape > div > a:after {
  content: "\f061";
  width: 18px;
  height: 18px;
  font-size: 12px;
  line-height: normal;
  font-family: "Font Awesome 5 Pro";
  margin-left: 8px;
  background-color: #979797;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 48%;
  transform: translateY(-50%);
  display: none;
}

html[dir=rtl] .vc_general.vc_tta.discoverDubaiTabs .center-card-landscape > div > a:after {
  content: "\f060";
  margin-right: 8px;
  margin-left: 0px;
  right: unset;
  left: 18px;
  display: none;
}

.discoverDubaiTabs > .vc_tta-panels-container .vc_column-gap-20 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.discoverDubaiTabs .center-card-landscape p {
  margin: 5px 0;
  color: var(--secondary);
  font-size: 16px;
}

.discover_the_city-template-default.single.single-discover_the_city .wpb_wrapper .vc_row.wpb_row.vc_inner {
  display: flex;
  flex-wrap: wrap;
}

/*Visit Saruq Al Hadid*/
.planvisit-inner-row {
  margin-top: 30px;
  padding: 0 10px;
}
.planvisit-inner-row img {
  background-size: cover;
  background-repeat: no-repeat;
  height: 480px;
  border-radius: 10px;
}

.timing-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #D9E0EB;
  border-radius: 8px;
  padding: 15px;
  margin: 0 15px 10px 0;
}
.timing-block * {
  padding: 0;
  margin: 0;
}
.timing-block ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--white);
  padding: 5px 0;
}
.timing-block ul li:last-of-type {
  border-bottom: none;
}

.timing-block-subtext {
  background: #F9FAFC;
  border-radius: 6px;
  font-size: 12px;
  text-align: center;
}

.planYourVisitWrap p.timing-block-subtext {
  color: var(--primary);
  font-size: 12px;
  font-weight: 400;
  padding: 7px;
}

.timing-content {
  width: 70%;
}

.view_more_btn > a {
  background-color: var(--primary) !important;
  border-radius: 6px !important;
  border: 2px solid transparent !important;
  color: var(--white) !important;
  background-image: none !important;
  line-height: unset !important;
  margin-right: 10px;
}
.view_more_btn > a:hover {
  background-color: var(--white) !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
  background-image: none !important;
}

.conversation-row {
  height: 500px;
}

.converstaion-content {
  position: absolute;
  color: var(--white);
  padding: 0 50px;
  bottom: 0;
}
.converstaion-content p {
  margin: 0;
}

.guideline-container {
  text-align: center;
  margin: 50px 30px;
}
.guideline-container h1 {
  font-weight: unset;
}
.guideline-container li {
  text-align: left;
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
}

/*arabic css for plan your visit start 20-09-23*/
.planYourVisitWrap h2 {
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 12px;
}
.planYourVisitWrap p {
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
  margin: 0px;
}

.timing-block h3 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}

.planVisitMap .vc_column-inner {
  padding-top: 0 !important;
}

.iconWithText {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-left: 21px;
}
.iconWithText h2 {
  color: var(--primary);
  font-size: 32px;
}

[dir=rtl] .planVisitContent {
  margin-right: 17px;
}
[dir=rtl] .guideline-container li {
  text-align: right;
}
[dir=rtl] .iconWithText {
  padding-right: 21px;
}

.vc_general.vc_tta.discoverDubaiTabs .center-card-landscape > div > a:after {
  content: none;
}

.row-information-school .wpb_content_element {
  margin: 0;
}

.main-row-map.main-row-maploc {
  padding-bottom: 20px;
}
.main-row-map.main-row-maploc .wpb_content_element {
  margin: 0;
  padding-bottom: 20px;
}

.conservationImgWrap .vc_custom_1697705872374:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  border-radius: 8px;
}
.conservationImgWrap .wpb_wrapper {
  position: relative;
  z-index: 1;
}

/*arabic css for plan your visit end*/
/* Feedback page */
.contact-form {
  padding-top: 0px !important;
}
.contact-form form {
  background: var(--white);
  padding: 30px 15px;
  float: left;
  width: 100%;
}
.contact-form form > div {
  margin-bottom: 10px;
}
.contact-form form > div > div > label {
  display: block;
  margin-bottom: 5px;
}
.contact-form form > div > div input, .contact-form form > div > div textarea {
  width: 100%;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #C3C3C9;
}
.contact-form form p:last-of-type {
  display: flex;
  justify-content: end;
  flex-direction: row-reverse;
  width: 100%;
  margin: 0;
}
.contact-form form p:last-of-type > input[type=submit] {
  border-radius: 6px !important;
  border: 2px solid transparent !important;
  color: var(--white) !important;
}
.contact-form form > p {
  border-radius: 8px;
  padding: 0 15px;
}
.contact-form form > p:last-of-type > input[type=submit]:hover {
  background-color: var(--white) !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
}
.contact-form form > p:first-of-type > span > span > span {
  margin-left: 0px;
}
.contact-form p:first-of-type + p {
  margin: 0 15px 15px 15px;
  background: #eee;
  padding: 5px 10px;
  font-size: 16px;
  border: 1px solid #d2d1d1;
}

[dir=rtl] .contact-form form {
  direction: rtl;
}

.wpcf7-form-control-wrap {
  margin-bottom: 10px;
  display: block;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

/* Saruq Al Hadid */
.education-section-right.right_discover_dubai > div {
  padding-top: 0 !important;
}

.img-title {
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  filter: brightness(1);
}
.img-title div {
  height: 100%;
}
.img-title h2 {
  width: 40%;
  position: absolute;
  bottom: 10px;
  left: 25px;
}

.sah-about-content {
  padding: 60px;
  background: #E4EAF9;
}

.sah-museum-collection-row {
  margin-top: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sah-museum-collection-first-col > div > div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.sah-museum-collection-second-col > div > div > * {
  width: 100%;
}

.al-hadid-site, .al-hadid-site-row-2 {
  margin: 0 !important;
}

.al-hadid-site img {
  border-radius: 8px;
}

.row-3-col-2 {
  padding: 30px;
}

.row-2-col-3-btn-row a {
  margin: 10px;
}

.col-left-publication > div > div {
  padding: 0 50px;
  padding-bottom: 65px;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  margin: 0 10px;
}
.col-left-publication h2 {
  margin-top: 160px;
}
.col-left-publication p {
  margin-top: 50px;
}

.img-card-zoomin {
  margin-bottom: 0 !important;
  overflow: hidden;
  position: relative;
}
.img-card-zoomin > figure img {
  transform: scale(1);
  transition: all 0.3s linear;
}
.img-card-zoomin:hover > figure img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.img-card-zoomin > h2 {
  position: absolute;
  height: fit-content;
  bottom: 10px;
  left: 10px;
  color: var(--white);
  z-index: 2;
  margin: 0;
  padding: 0;
}
.img-card-zoomin > figure {
  border-radius: 8px;
  margin: 2px !important;
  overflow: hidden;
}

.sah-museum-collection-second-col > div > div > div:first-of-type > h2 {
  top: 190px;
  bottom: unset;
}

.plan-visit-row {
  background-repeat: no-repeat;
  background-size: auto;
}
.plan-visit-row ul[class=ul-no-style] {
  float: right;
  margin-right: 20px;
  background: var(--grey-dark);
  color: var(--white);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  justify-content: space-around;
}
.plan-visit-row ul[class=ul-no-style] > li {
  padding: 20px 0;
  width: 70%;
}
.plan-visit-row ul[class=ul-no-style] > li > a {
  margin: 10px 5px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  align-items: center;
}

.sah-right-discover-dubai {
  background-color: rgb(100, 116, 139);
  color: var(--white);
  opacity: 0.7;
  padding: 80px;
}
.sah-right-discover-dubai a {
  border: 1px solid var(--primary) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  background: var(--primary) !important;
  opacity: 1 !important;
}
.sah-right-discover-dubai a:hover {
  border: 1px solid var(--white) !important;
  background: transparent !important;
  color: var(--white) !important;
}

.faq-img-column {
  margin-top: 40px;
  padding: 40px;
}
.faq-img-column figure img {
  border-radius: 8px;
}

.faq-column {
  margin-top: 40px;
  padding: 20px;
  color: var(--white);
}

.enq-feedback-column {
  margin-top: 40px;
  padding: 40px;
  color: var(--white);
  margin-left: 40px !important;
}

.faq-accordian-item > div {
  background: transparent !important;
  color: var(--white);
}

div[class*=faq-accordian-item] > div > h2 > a {
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: var(--white);
}

.sah-museum-collection-third-col > div {
  margin: 0 !important;
  padding: 0 !important;
}
.sah-museum-collection-third-col > div > div {
  background: var(--primary);
  opacity: 0.6;
  padding: 20% 10%;
}
.sah-museum-collection-third-col > div > div > h2 {
  margin: 0 !important;
}
.sah-museum-collection-third-col > div > div p {
  margin: 0 !important;
  color: var(--white);
}

/* Sites and Building */
.category_banner {
  margin-top: 40px;
}

.post-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.post-content .pagination {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.post-content ul {
  display: flex;
  list-style-type: none;
  padding-right: 34px;
}
.post-content ul > li {
  margin: 0 2px;
  padding: 5px 10px;
  background: var(--white);
  border-radius: 8px;
}
.post-content ul > li[class=active] {
  border: 2px solid var(--grey-alt1);
  border-radius: 8px;
}

.post-grid {
  height: 300px;
  width: 300px;
  margin: 10px 0 20px 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.post-grid a {
  color: var(--grey-alt3) !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  font-weight: 400 !important;
  font-size: 16px !important;
}

.post-image {
  height: 60%;
  overflow: hidden;
  border-radius: 8px;
}
.post-image img {
  border-radius: 8px;
  width: 100%;
}

.post-text-content {
  margin-top: 20px;
}
.post-text-content > * {
  margin-bottom: 20px;
}

.search-sort-page-size-bar {
  width: 100%;
  display: inline-grid;
  grid-template-columns: 77% 23%;
}
.search-sort-page-size-bar > .showperpage-dropdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 0px;
}
.search-sort-page-size-bar > .topSearchButtonSection > .reducedpadding {
  padding-left: 0 !important;
}

.category-filter-lr-container {
  display: flex;
  margin-top: 40px;
}

.category-filter.left-section {
  width: 300px;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
}
.category-filter.left-section ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.category-filter.left-section ul > li {
  margin-bottom: 10px;
}
.category-filter.left-section > .category-title {
  margin: 10px 0;
}

/* Details Page */
.single_animal_details_left img {
  border-radius: 10px;
}

.single_animal_details_right table {
  padding: 10px;
}
.single_animal_details_right table tr {
  background: #D9E0EB;
  border-bottom: 2px solid var(--white);
}
.single_animal_details_right table tr td {
  padding: 10px;
  background: #D9E0EB;
  margin-bottom: 10px;
}
.single_animal_details_right table tr td:first-child {
  border-radius: 8px 0px 0px 8px;
}
.single_animal_details_right table tr td:last-of-type {
  text-align: end;
  border-radius: 0 8px 8px 0;
}

.single-sites_and_buildings .title-section h2,
.single-collections .title-section h2 {
  margin-top: 0;
  margin-bottom: 30px;
}

/* Architectural Heritage */
.background-ul-icon-li {
  background: var(--primary);
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: var(--white);
  list-style: none;
  padding: 0;
  border-radius: 8px;
  margin-left: 20px;
}
.background-ul-icon-li > li {
  margin: 20px;
}
.background-ul-icon-li > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.education-section-left.left_discover_dubai {
  background: #C3C3C9;
  padding: 20px 40px;
}

.row-antiquities.antiquities-inner-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.row-antiquities.row-ornament.ornament-inner-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-card-zoomin.historical-images {
  margin-bottom: 0 !important;
  text-align: center;
}

.col3-museum-collection > div {
  padding: 0 !important;
}

.row-margin-top {
  margin-top: 40px;
}

/* Service Center - Single  Discover city */
.single-discover_the_city .site-inner-2 > .container > div {
  margin-bottom: 35px;
}
.single-discover_the_city .site-inner-2 > .container > div div[class=vc_column-inner] {
  padding-top: 0 !important;
}
.single-discover_the_city .site-inner-2 > .container > div > div h2 {
  color: var(--secondary);
}
.single-discover_the_city .site-inner-2 > .container > div > div iframe {
  border-radius: 12px;
}
.single-discover_the_city .site-inner-2 > .container .dtc-page-title-holder h2 {
  margin-top: 0;
}
.single-discover_the_city .item-slider > .slick-list {
  border-radius: 6px;
}
.single-discover_the_city .item-slider .bs-overlay.slick-slide > img {
  width: 100%;
}

.sand-sep .vc_separator .vc_sep_holder .vc_sep_line,
.fog-sep .vc_separator .vc_sep_holder .vc_sep_line {
  display: none !important;
}

.padding-lft-rtl {
  padding-right: 10px;
  padding-left: 10px;
}

html[dir=rtl] .block_section .block_descreption p a {
  padding: 2px 13px 3px 49px;
}
html[dir=rtl] .block_section .block_descreption p a:after {
  content: "\f060";
  margin-right: 8px;
  margin-left: 0px;
  right: unset;
  left: 18px;
}

body .topSortBy > label.topSortBymain {
  height: 55px;
  color: var(--grey-alt3); /*688CBA;*/
  text-transform: capitalize;
  font-size: 16px;
}

.payment-tabs-combined .vc_active .payment-channel-card > a.card-action {
  color: var(--white);
  background-color: var(--primary) !important;
}
.payment-tabs-combined .vc_active .payment-channel-card > a.card-action:hover {
  background-color: var(--white) !important;
  color: var(--primary);
}
.payment-tabs-combined .vc_tta-panels {
  border: none !important;
  background-color: transparent !important;
}
.payment-tabs-combined .payment-facilities-section .payment-channel-card {
  min-height: 33rem;
}
.payment-tabs-combined ul.vc_tta-tabs-list > li.vc_tta-tab {
  margin: 0 !important;
}
.payment-tabs-combined ul.vc_tta-tabs-list > li.vc_tta-tab > a {
  border-radius: 0 !important;
  border: none !important;
}
.payment-tabs-combined .vc_active.check-pay-section .tabs-container > a {
  background-color: var(--primary) !important;
  width: 200px !important;
  height: 50px !important;
  border-radius: 8px;
  border: 2px solid var(--primary);
  color: var(--white);
  cursor: pointer;
  padding: 15px;
}
.payment-tabs-combined .vc_active.check-pay-section .tabs-container > a:hover {
  background: var(--white) !important;
  color: var(--primary);
}

.check-pay-section .tabs-container {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  align-items: center;
  margin-bottom: 30px;
}

html[dir=rtl] .payment-tabs-combined .vc_active.check-pay-section .tabs-container > a {
  height: 60px !important;
}

.selector-layout {
  flex-basis: 25%;
}

.input-section {
  flex-basis: 75%;
}

.fines-selector-layout > div.fines-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.fines-selector-layout .input-section input, .fines-selector-layout .selector-layout > select {
  border: 1px solid var(--grey-alt29) !important;
  border-radius: 0;
  color: var(--grey-alt3) !important;
  padding: 15px !important;
  flex-grow: 1;
  margin: 10px 0;
}
.fines-selector-layout #ip-vehicle input, .fines-selector-layout #ip-vehicle select {
  width: 25%;
}
.fines-selector-layout .selector-layout > select {
  border-radius: 8px 0 0 8px;
  width: 100%;
  line-height: 1.15;
  padding: 10px;
  background-color: #D9E0EB;
  color: var(--grey-alt3);
}
.fines-selector-layout .selector-layout > select > option {
  background-color: #F9FAFC;
}

.input-section > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.input-section > div > input:last-of-type {
  border-radius: 0px 8px 8px 0px !important;
}

.input-section div#ip-company > input {
  min-width: 100%;
}

.pay-instant-header .error_msg {
  text-align: center;
}

html[dir=rtl] .fines-selector-layout .selector-layout > select {
  border-radius: 0 8px 8px 0;
}

html[dir=rtl] .input-section > div > input:last-of-type {
  border-radius: 8px 0 0 8px !important;
}

.dsp-gone {
  display: none !important;
}

.dsp-block {
  display: block !important;
  width: 700px;
  margin: 0 auto;
}

.dsp-flex {
  display: flex !important;
}

.payments-header-layout {
  text-align: center;
  margin-bottom: 10px;
}
.payments-header-layout h3 {
  font-size: 32px;
  font-weight: 300;
  margin: 16px 15px 10px;
}
.payments-header-layout p {
  margin: 0;
}

.contact-pg-title a.vc_btn3 {
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--primary);
  padding: 5px 15px 5px 15px;
  font-size: 16px;
  color: var(--primary);
  position: relative;
  transition: all 1s ease-out;
}
.contact-pg-title a.vc_btn3:hover {
  background-color: var(--primary);
  color: var(--white);
}

a.serviceName {
  background: transparent !important;
}

/* End Covid*/
/*DM Services*/
.service-listing {
  padding: 15px;
  border: 1px solid #dbdada;
  border-left: 0;
  border-right: 0;
}
.service-listing :nth-child(even) {
  background: #eeeeee;
}
.service-listing p {
  font-size: 14px;
  margin-bottom: 10px;
}
.service-listing a {
  background: var(--grey-dark);
  text-decoration: none;
  display: inline-block;
  border-radius: 30px;
  padding: 5px 20px;
  color: var(--white);
}
.service-listing a :hover {
  opacity: 0.8;
}

.dataTables_wrapper .dataTables_filter {
  width: 100%;
}

.dataTables_wrapper .dataTables_filter input, #mysearchcontainer select {
  background-color: var(--white) !important;
  border: 1px solid #ddd;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  padding: 15px !important;
  border-radius: 0;
  width: 100%;
  margin-left: 0;
}

#mysearchcontainer {
  margin-left: 0;
  margin-right: 0;
}

#mysearchcontainer select {
  padding: 9px 15px;
}

#mysearchcontainer button {
  border: 1px solid var(--grey-dark) !important;
}

.reducedpadding {
  padding: 2px !important;
}

.reducedpadding button {
  width: 100%;
}

#mysearchcontainer {
  background: #eee;
  padding: 10px;
  border: 1px solid #d7d4d4;
}
#mysearchcontainer button {
  border-radius: 8px;
  background: var(--grey-dark);
  color: var(--white);
  padding: 15px;
  width: 200px;
  cursor: pointer;
  border-width: 2px;
}
#mysearchcontainer button:hover, #mysearchcontainer button:active {
  color: var(--grey-dark);
  border-color: var(--grey-dark) !important;
  background: var(--white) !important;
}

[dir=rtl] #mysearchcontainer button {
  /*margin-right: -35%;*/
  margin-left: inherit;
}

/*END DM Services*/
/* Code after go live */
.page .sectionChildrenCity .right_discover_dubai {
  padding: 0 !important;
}
.page .wpcf7-form-control.wpcf7-acceptance span {
  display: flex;
  align-items: baseline;
}
.page .contact_get_in_touch p label input[type=checkbox] {
  margin: 0 5px !important;
}

table tr.wptb-row:first-child {
  background-color: var(--grey-dark) !important;
}

/**  Translation missing msg   **/
.no-translate-msg {
  display: none;
  background: var(--white);
  padding: 20px;
  position: absolute;
  top: 55px;
  border: 2px solid #ddd;
  border-top: none;
  text-align: left;
  z-index: 1;
  width: 220px;
  max-width: 350px;
}
.no-translate-msg > b {
  margin-bottom: 10px;
  display: block;
}
.no-translate-msg > a {
  padding: 8px 10px 8px 20px;
  background-color: var(--primary);
  color: var(--white) !important;
  border: 1px solid var(--primary);
  stroke: var(--primary);
  width: 100%;
  display: block;
  text-align: center;
}

@media (max-width: 768px) {
  .no-translate-msg {
    top: 38px;
  }
}
#no-translate-msg > a:hover {
  color: var(--primary) !important;
  background: var(--white);
}

.finesTab.container button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}

/** Added for Accessibility**/
/**For PDF Viewer**/
div.pdfemb-toolbar div {
  color: var(--white) !important;
}

div.pdfemb-toolbar {
  background-color: #585858 !important;
}

.makingDubaiMainTitle h2, .makingDubaiMainTitle p {
  background-color: var(--grey-alt3) !important;
}

@media screen and (max-width: 1300px) {
  .rtl .dda-sub-header__actions {
    gap: 10px;
  }
  .rtl .dda-sub-header__locale, .addsearch-searchfield input[type=search], .dda-sub-header__btn {
    font-size: 14px;
  }
  .rtl .dda-sub-header__profile-btn {
    gap: 1px;
  }
  .rtl .menu {
    zoom: 0.95;
  }
}
/*Hide wpml banner*/
.otgs-development-site-front-end {
  display: none !important;
}

/* Home */
.home .body-content {
  padding-top: 0;
}
.home .carousel-layers {
  z-index: 2;
  position: relative;
  color: var(--white);
  /*top: 250px;*/
  top: calc(50% - 130px);
}
.home .home-slider {
  width: 100%;
  /* Banner Animation */
}
@media (min-height: 700px) {
  .home .home-slider {
    height: calc(100vh - 60px);
  }
}
.home .home-slider .flickity-viewport {
  height: 100% !important;
}
.home .home-slider .carousel-cell {
  width: 100%;
  text-align: center;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url(https://stgportalnew.dm.gov.ae/wp-content/themes/dubaimunicipality/assets/images/banners/Banner-2024.jpg);
  background-size: cover;
  position: absolute;
  left: 0px;
  transform: translateX(0%);
}
.home .home-slider .carousel-cell video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
}
.home .home-slider .carousel-cell:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.home .home-slider h1 span.slider_text1, .home .home-slider h1 span.slider_text2 {
  font-size: 32px;
  font-weight: 100;
  margin: 0;
  line-height: 1.2;
  visibility: visible;
}
.home .home-slider h1 span.slider_text1 {
  visibility: inherit;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  width: 0;
  display: block;
  /*border-right: 0.1em solid orange;  caret */
  animation: typing 3s steps(70, end) 1s forwards, blink-caret 0.75s step-end 5;
  animation-delay: 1s, 4s; /* blink starts after typing finishes */
  animation-fill-mode: forwards, forwards;
}
@media (max-width: 768px) {
  .home .home-slider h1 span.slider_text1 {
    animation: typing 2.5s steps(40, end) 1s forwards, blink-caret 0.75s step-end 5;
    animation-delay: 1s, 3.5s;
    animation-fill-mode: forwards, forwards;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home .home-slider h1 span.slider_text1 {
    animation: none !important;
    border-right: none;
    width: auto;
  }
}
.home .home-slider h1 span.slider_text2 {
  visibility: inherit;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  width: 0;
  display: block;
  animation: typing 2s steps(50, end) 1.5s forwards, pushDown 1.5s 2s forwards;
}
@media (max-width: 768px) {
  .home .home-slider h1 span.slider_text2 {
    animation: typing 4s steps(30, end) 1.5s forwards, pushDown 1.5s 2s forwards;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home .home-slider h1 span.slider_text2 {
    animation: none !important;
    width: auto; /* reveal text immediately */
    margin-top: 90px;
  }
}
.home .home-slider h1 span.slider_maintext {
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 auto;
  line-height: 1;
  font-size: 90px;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  visibility: hidden;
  animation: preHide 2.5s both;
}
.home .home-slider h1 span.slider_maintext:nth-of-type(2) {
  animation: fadeInStayOut 2.5s both;
  animation-delay: 2.5s;
}
.home .home-slider h1 span.slider_maintext:nth-of-type(3) {
  animation: fadeInStayOut 2.5s both;
  animation-delay: 5s;
}
.home .home-slider h1 span.slider_maintext:nth-of-type(4) {
  animation: fadeInStayOut 2.5s both;
  animation-delay: 7.5s;
}
.home .home-slider h1 span.slider_maintext:nth-of-type(5) {
  animation: fadeInStay 0.5s both;
  animation-delay: 10s;
}
.home .home-slider .carousel-cell a {
  position: relative;
  top: 16px;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  visibility: inherit;
  animation: showTxt 1s;
  opacity: 0;
  -webkit-animation-delay: 4s;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 4s;
  animation-fill-mode: forwards;
}
.home .home-slider .carousel-cell a:hover {
  text-decoration: underline;
}
.home .home-slider .carousel-cell a:after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 10px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .home .home-slider .carousel-cell a {
    -webkit-animation: showTxt 1s;
    -webkit-animation-delay: 6s;
    -webkit-animation-fill-mode: forwards;
    animation: showTxt 1s;
    animation-delay: 6s;
    animation-fill-mode: forwards;
  }
}

[dir=rtl] .home .home-slider .carousel-cell a:after {
  content: "\f053";
}

/* Search */
.homeSearch {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  /*top: 420px;*/
  top: calc(50% + 60px);
  z-index: 2;
}
.homeSearch .wpb_content_element {
  margin-bottom: 0 !important;
}

#searchmaincontainer {
  width: 45%;
  margin: 0 auto;
  position: relative;
}
#searchmaincontainer a {
  color: #656565;
  position: absolute;
  top: 14px;
  z-index: 10;
  font-size: 16px;
}
#searchmaincontainer.expanded {
  width: 550px;
  transition: width 0.5s linear;
}
@media (max-width: 1200px) {
  #searchmaincontainer {
    width: 700px;
  }
}

a.search-btn-mic {
  left: 15px;
}
a.searchNewBtn {
  right: 15px;
}

.altSearch a {
  cursor: pointer;
  color: #333;
  text-decoration: none;
}
.altSearch .searchBox {
  pointer-events: none;
}
.altSearch a:before {
  content: "Search Services, News, Information, Circulars...";
  padding: 0 15px;
  padding-top: 14px;
}
.altSearch .search-btn-mic {
  float: left;
  padding-top: 14px;
}

.altSearch .search-btn-mag {
  float: right;
  padding-top: 14px;
}

.rtl .altSearch .search-btn-mic {
  float: right;
}
.rtl .altSearch .search-btn-mag {
  float: left;
}
.rtl .altSearch a:before {
  display: none;
}
.rtl .altSearch a:after {
  content: "Search Services, News, Information, Circulars...";
  text-align: right;
  padding: 0 15px;
  padding-top: 1px;
  float: right;
}

.home .search-header-area-home {
  display: block !important;
  margin: 0 auto;
  padding: 0 14px;
  width: 800px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  height: 48px;
}

.search-header-area-inner {
  width: 100%;
  margin: 0 0px 0 70px;
}

.searchmaincontainer_AR {
  text-align: inherit;
}

#autocomplete {
  position: relative;
  z-index: 999999;
}
#autocomplete .addsearch-autocomplete {
  margin-top: 0px;
}
#autocomplete .autocomplete-item {
  display: flex;
}
#autocomplete .autocomplete-item:hover {
  background: #f3f3f3;
}
#autocomplete .autocomplete-item .main-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
  height: 100px;
  margin-right: 1em;
  overflow: hidden;
  width: 100px;
  border: 1px solid #dedede;
}
#autocomplete .autocomplete-item .main-image.noimage {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMzIiIHdpZHRoPSIzMiI+PGRlZnM+PGNsaXBQYXRoIGlkPSJhIiBjbGlwUGF0aFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTTAgMjRoMjRWMEgweiIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNhKSIgdHJhbnNmb3JtPSJtYXRyaXgoMS4zMzMzMyAwIDAgLTEuMzMzMzMgMCAzMikiPjxwYXRoIGQ9Ik0yMC41IDUuNXMuMy4xLjQuMmMuMi4yLjMuNS4zLjd2MTAuMmMwIC42LS41IDEuMS0xLjEgMS4xaC0yLjhMMTQuOCAyMGMtLjIuMi0uNC4zLS42LjNIMTBjLS4zIDAtLjUtLjEtLjctLjNsLTEuNy0xLjVNNCAxNy43Yy0uNiAwLTEuMS0uNS0xLjEtMS4xVjYuNWMwLS42LjUtMS4xIDEuMS0xLjFoMTIuNyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGVkZWRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjxwYXRoIGQ9Ik0xNCA4Yy0uNi0uMy0xLjItLjQtMS45LS40LTIuNCAwLTQuNCAyLTQuNCA0LjQgMCAuNy4yIDEuMy40IDEuOU0xMC4yIDE1LjljLjYuMyAxLjIuNCAxLjguNCAyLjQgMCA0LjQtMiA0LjQtNC40IDAtLjYtLjEtMS4yLS40LTEuOE0yLjEgMjEuOUwyMS45IDIuMSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGVkZWRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjwvZz48L3N2Zz4=");
}

#searchfield {
  z-index: 3 !important;
  display: block !important;
  position: relative;
  margin: 0 auto;
  padding: 0 14px;
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  height: 50px;
}
#searchfield .addsearch-searchfield input[type=search] {
  height: 50px !important;
  background: transparent !important;
  width: 340px !important;
  color: #000;
}
#searchfield .addsearch-searchfield input[type=search].icon {
  padding: 0 7px 2px 25px !important;
}
#searchfield .addsearch-searchfield input[type=search]::placeholder {
  color: #000;
}
#searchfield .addsearch-searchfield input[type=search]:focus {
  border-radius: 0;
  box-shadow: none;
}

#searchmaincontainer.expanded .addsearch-searchfield input[type=search] {
  width: 490px !important;
}

.addsearch-searchfield {
  width: 95% !important;
  max-width: 100% !important;
}
.addsearch-searchfield input[type=search], .addsearch-searchfield .search-field-wrapper {
  width: 95% !important;
  max-width: 100% !important;
}

/* Services */
.home.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
  background: var(--white);
}

.serivces-tabs-row {
  position: relative;
  z-index: 1;
}
.serivces-tabs-row .vc_tta-tab a + p {
  display: none;
}

.home-section-title {
  color: var(--secondary);
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  /* text-transform: capitalize; */
  margin: 0;
  margin-top: 25px;
}

.home-section-descr {
  color: #3A3F57;
  text-align: center;
  font-weight: 100;
  line-height: 1.6;
  font-size: 18px;
  text-transform: capitalize;
}

.wpb-js-composer .vc_tta-tabs.servTabs {
  margin-top: 40px;
  position: relative;
  z-index: 0;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tabs-list {
  border: 0;
  margin: 0 !important;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab {
  margin: 0 10px;
  vertical-align: top;
  width: 25%;
  /* height: 100%; */
  align-items: stretch;
  margin-right: 15px !important;
  position: relative;
}

[dir=rtl] .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab {
  margin-right: 0 !important;
  margin-left: 15px !important;
}

.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab:nth-of-type(4) {
  margin-right: 0 !important;
}

[dir=rtl] .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab:nth-of-type(4) {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-panels, .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-panel-body {
  background: none !important;
  border: 0 !important;
  padding: 15px 0 !important;
  height: auto !important;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tabs-list {
  display: flex !important;
  justify-content: space-around;
  align-items: flex-start;
  align-items: stretch;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a {
  border: 1px solid #f1f1f1 !important;
  border-radius: 8px;
  text-align: left;
  padding: 50px 30px 20px !important;
  min-width: 220px;
  position: relative;
  background: var(--white) !important;
  height: 100%;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active a {
  border: 1px solid #f1f1f1 !important;
  border-radius: 8px;
  text-align: left;
  padding: 20px 30px 20px !important;
  min-width: 220px;
  box-shadow: 0px 0px 0px 0px rgba(171, 171, 171, 0.1), 0px 12px 26px 0px rgba(171, 171, 171, 0.1), 0px 46px 46px 0px rgba(171, 171, 171, 0.09), 0px 104px 63px 0px rgba(171, 171, 171, 0.05), 0px 186px 74px 0px rgba(171, 171, 171, 0.01), 0px 290px 81px 0px rgba(171, 171, 171, 0) !important;
  background: var(--white) !important;
  /* transition: padding-top 0.2s linear; */
  position: relative;
  /* height: 100%; */
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active a:hover {
  border: 1px solid #f1f1f1 !important;
  border-radius: 8px;
  text-align: left;
  padding: 20px 30px 20px !important;
  min-width: 220px;
  box-shadow: 0px 0px 0px 0px rgba(171, 171, 171, 0.1), 0px 12px 26px 0px rgba(171, 171, 171, 0.1), 0px 46px 46px 0px rgba(171, 171, 171, 0.09), 0px 104px 63px 0px rgba(171, 171, 171, 0.05), 0px 186px 74px 0px rgba(171, 171, 171, 0.01), 0px 290px 81px 0px rgba(171, 171, 171, 0) !important;
  background: var(--white) !important;
  /* transition: padding-top 0.2s linear; */
  position: relative;
  /* height: 100%; */
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a:hover {
  border: 1px solid #f1f1f1 !important;
  border-radius: 8px;
  text-align: left;
  padding: 20px 30px 20px !important;
  min-width: 220px;
  box-shadow: 0px 0px 0px 0px rgba(171, 171, 171, 0.1), 0px 12px 26px 0px rgba(171, 171, 171, 0.1), 0px 46px 46px 0px rgba(171, 171, 171, 0.09), 0px 104px 63px 0px rgba(171, 171, 171, 0.05), 0px 186px 74px 0px rgba(171, 171, 171, 0.01), 0px 290px 81px 0px rgba(171, 171, 171, 0) !important;
  background: var(--white) !important;
  /* transition: padding-top 0.2s linear; */
  position: relative;
  /* height: 100%; */
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active a {
  background: aliceblue !important;
  border-color: #d9e4ee !important;
  pointer-events: none;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a:hover {
  box-shadow: 0px 0px 5px #dae9f6 !important;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active a:after {
  content: "";
  background-color: var(--primary);
  position: absolute;
  bottom: 0;
  height: 4px !important;
  width: 100% !important;
  left: 0 !important;
  top: inherit !important;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a i {
  display: block;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a i:before {
  content: "";
  background-size: contain;
  display: block;
  height: 40px;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a i.fa-handshake-o:before {
  content: "";
  background-image: url(../images/icon-individual.svg);
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-icon.fa-handshake-o:before {
  content: "";
  background-image: url(../images/icon-individual.svg);
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a i.fa-envelope-open:before, .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-icon.fa-envelope-open:before {
  content: "";
  background-image: url(../images/icon-business.svg);
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a i.fa-envelope-open-o:before, .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-icon.fa-envelope-open-o:before {
  content: "";
  background-image: url(../images/icon-government.svg);
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a i.fa-linode:before, .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-icon.fa-linode:before {
  content: "";
  background-image: url(../images/icon-emirati.svg);
}

/* individual */
/* business */
/* govt */
/* emarati */
/* new icons*/
i.serviceItem-icon:before, .fa-scrollindicator:before, .fa-arrow-title:before, .fa-arrow-title-alt:before {
  content: "";
  background-size: contain;
  display: block;
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}

/* buildings */
.serviceItem-icon.fa-buildings:before {
  background-image: url(../images/home/iconBuildings.svg);
}

.serviceItem:hover .serviceItem-icon.fa-buildings:before {
  background-image: url(../images/home/iconBuildings-hover.svg);
}

/* foodproducts */
.serviceItem-icon.fa-foodproducts:before {
  background-image: url(../images/home/iconHandSoap.svg);
}

.serviceItem:hover .serviceItem-icon.fa-foodproducts:before {
  background-image: url(../images/home/iconHandSoap-hover.svg);
}

/* training */
.serviceItem-icon.fa-training:before {
  background-image: url(../images/home/iconGraduationCap.svg);
}

.serviceItem:hover .serviceItem-icon.fa-training:before {
  background-image: url(../images/home/iconGraduationCap-hover.svg);
}

/* pestcontrol */
.serviceItem-icon.fa-pestcontrol:before {
  background-image: url(../images/home/iconBug.svg);
}

.serviceItem:hover .serviceItem-icon.fa-pestcontrol:before {
  background-image: url(../images/home/iconBug-hover.svg);
}

/* allcategories */
.serviceItem-icon.fa-allcategories:before {
  background-image: url(../images/home/iconAllCategories.svg);
}

.serviceItem:hover .serviceItem-icon.fa-allcategories:before {
  background-image: url(../images/home/iconAllCategories-hover.svg);
}

/* arrow-title */
/* arrow-title */
.fa-arrow-title:before {
  background-image: url(../images/icon-arrowright-primary.svg);
  width: 20px;
  height: 15px;
  margin: 0;
}

.fa-arrow-title-alt:before {
  background-image: url(../images/icon-arrowright-white.svg);
  width: 20px;
  height: 15px;
  margin: 0;
}

[dir=rtl] .fa-arrow-title:before, [dir=rtl] .fa-arrow-title-alt:before {
  transform: rotate(180deg);
}

/* mouse */
.fa-scrollindicator:before {
  background-image: url(../images/home/iconMouse.svg);
}

.scrollindicator {
  width: 16px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid var(--white);
  opacity: 0.6;
  padding: 2px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 15px;
}
.scrollindicator::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 0;
  left: calc(50% - 3px);
  background: var(--white);
  -webkit-animation: move-mouse 2s cubic-bezier(0.54, 0, 0.15, 0.98) 5;
  animation: move-mouse 2s cubic-bezier(0.54, 0, 0.15, 0.98) 5;
  content: "";
  display: block;
  position: absolute;
}
.scrollindicator::after {
  content: "";
  display: block;
  position: absolute;
}

.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-title-text {
  color: #3A3F57;
  font-size: 32px;
  font-weight: 100;
  line-height: 1.2;
  display: block;
  text-transform: capitalize;
  text-align: left;
  margin: 0 !important;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-title-text span.myh3, .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-title-text h3, .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-title-text > b {
  color: #647794;
  font-size: 16px;
  display: block;
  line-height: 1.4;
  margin: 0;
  font-weight: normal;
  padding-top: 5px;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active .vc_tta-title-text > b {
  color: #3A3F57;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-title-text h3 + h3, .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-title-text p {
  display: none;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a + h3 {
  display: none;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active .vc_tta-title-text h3, .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active a:hover .vc_tta-title-text h3 {
  display: none;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a:hover .vc_tta-title-text h3 {
  display: none;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active .vc_tta-title-text h3 + h3, .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active a:hover .vc_tta-title-text h3 + h3 {
  display: block;
}
.wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a:hover .vc_tta-title-text h3 + h3 {
  display: block;
}

.serviceCards {
  align-items: top;
}

.single-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #3A3F57;
  border: 1px solid #DEE6F0;
  border-radius: 6px;
  min-height: 80px;
  margin: 10px 0;
  background: var(--white) !important;
  padding: 20px 8px;
  max-height: 100px;
}
.single-card:hover .inner-flex-link {
  display: flex;
  width: 100%;
}

.serviceCardHome a, .wpb-js-composer .vc_tta.vc_general .vc_active .serviceCardHome a {
  background: none !important;
  font-size: 13px;
  text-decoration: none;
  margin-right: 40px;
  position: relative;
}

.serviceCardHome a:hover:after {
  content: "";
  height: 0.5px;
  width: calc(100% + 15px);
  position: absolute;
  left: 0;
  background: #688CBA;
  bottom: 0;
}
.serviceCardHome a:before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  right: -15px;
  position: absolute;
  float: right;
  font-weight: normal;
  font-size: 10px;
  margin-left: 10px;
  top: 2px;
}
.serviceCardHome span img {
  height: 30px;
}
.serviceCardHome p {
  margin: 0;
  line-height: 1.2;
}
.serviceCardHome .inner-flex-link {
  display: none;
  padding-top: 10px;
}
.serviceCardHome .img-icon {
  width: 70px;
  padding: 0 17px;
  position: relative;
  top: 0px;
  height: 85px;
  background: #F9FAFC;
  vertical-align: middle;
  display: flex;
  margin-right: 10px;
  border-radius: 8px;
}
.serviceCardHome .img-icon + div {
  width: calc(100% - 70px);
}

[dir=rtl] .serviceCardHome a:hover:after {
  right: 0;
}

.view-more-services .vc_btn3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 12px !important;
  width: 200px;
  text-decoration: none !important;
  border: 2px solid var(--primary) !important;
}
.view-more-services .vc_btn3.vc_btn3-size-md.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon {
  right: 30px;
  font-size: 10px;
  line-height: 16px;
  display: none;
}
.view-more-services .vc_btn3:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
  text-decoration: none !important;
  border: 2px solid var(--primary) !important;
}
.view-more-services .vc_btn3.vc_btn3-icon-right .vc_btn3-icon {
  position: relative;
  right: inherit !important;
  top: 7px !important;
  padding: 0 5px;
}

/* [dir="rtl"] .view-more-services .vc_btn3.vc_btn3-icon-right .vc_btn3-icon{
    top: -1px!important;
    transform: none!important;
    left: inherit!important;
}
[dir="rtl"] .view-more-services .vc_btn3 .fa-chevron-right:before{
    content:"\f053";
} */
/* Dubai More */
.dubai-more {
  background: var(--white);
}

.dubai-more-box {
  border: 1px solid #DEE6EE;
  background: var(--white);
  border-radius: 8px;
  margin: 15px 7.5px;
  position: relative;
  padding: 10px 25px 10px;
  min-height: 220px;
  display: flex;
  margin-bottom: -20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
}
.dubai-more-box.active {
  background: #F2EBFF;
}
.dubai-more-box:hover {
  box-shadow: 0px 0px 5px #DEE6F0 !important;
}
.dubai-more-box h2.dubaimore-title {
  font-size: 32px;
  font-weight: 100;
  margin: 0;
  line-height: 1.2;
  padding-top: 10px;
}
.dubai-more-box p {
  margin: 0;
  color: #3A3F57;
  padding-top: 2px;
}
.dubai-more-box a {
  color: var(--primary);
  line-height: 1;
  text-decoration: none;
  display: none;
  font-weight: 300;
  margin-top: 5px;
}
.dubai-more-box a:after {
  content: "\e904";
  color: var(--primary);
  font-family: "icomoon";
  position: relative;
  top: 3px;
}
.dubai-more-box a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.dubai-more-box.active a {
  display: block;
}
.dubai-more-box .dm-numbers {
  position: absolute;
  right: 15px;
  text-align: right;
  color: var(--primary);
  top: 15px;
  display: none;
}
.dubai-more-box .dm-numbers .num {
  font-weight: normal;
  font-size: 32px;
  line-height: 1;
  margin: 0;
}
.dubai-more-box .dm-numbers h4 {
  margin: 0;
  font-weight: 100;
}
.dubai-more-box img {
  height: 40px;
}

.dubaimore_content h2.dubaimore-title {
  font-weight: 100;
  font-size: 24px;
  margin: 0 0 5px;
  height: auto;
}

/* .dubai-more-box:hover a{
    display: block;
}
.dubai-more-box:hover h3,
.dubai-more-box:hover .dm-numbers h4{
   color: var(--white);
}
.dubai-more-box:hover p{
    color: #C2D9FB;
} */
.dubai-more-cpt-img-container {
  /* height: 100%; */
}
.dubai-more-cpt-img-container * {
  height: 100%;
}
.dubai-more-cpt-img-container .wpb_single_image .vc_single_image-wrapper {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.dubaimore_content .wpb_single_image .vc_figure {
  width: 100%;
  overflow: hidden;
}

.dubai-more-cpt-img-container .wpb_single_image img {
  height: 100%;
  max-width: 100%;
  vertical-align: top;
  object-fit: cover;
  width: 100%;
}

.dm-more-container {
  display: flex;
  padding: 0 5px 30px;
  /* background: var(--white);*/
}

/* Feedback */
.feedback-section {
  padding: 50px 0 30px;
  background: #CCD8E7;
  margin: 20px 0 0;
}
.feedback-section .feedback-btn-container {
  text-align: right;
  padding: 0;
}
.feedback-section h2 {
  color: var(--primary);
  font-weight: 500;
  font-size: 40px;
  margin: 0;
  line-height: 1.2;
}
.feedback-section p {
  color: #202332;
  font-weight: 100;
  margin: 0;
}
.feedback-section a.vc_general {
  border-radius: 8px;
  background: var(--primary);
  font-weight: 500;
  color: var(--white) !important;
  font-size: 16px;
  border: 2px solid var(--primary) !important;
  line-height: 1.4;
  box-shadow: none;
  width: 200px;
  margin-top: 10px;
}
.feedback-section a:hover {
  background-color: var(--white) !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
}

/* Fines Tabs */
.finesTabContainer {
  padding-top: 0px;
  text-align: center;
  position: relative;
  z-index: 0;
}
.finesTabContainer .vc_tta-panel-body {
  background-color: #f9fafc !important;
}

/* .finesTabContainer:before{
    content: "";
    background: var(--primary);
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
} */
.wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list {
  position: relative;
  top: 0px;
  margin: 10px auto 13px !important;
  text-align: center;
  align-items: baseline;
  display: flex !important;
  justify-content: center;
  border: 0;
  border-bottom: 1px solid #d7d9e2;
  width: 85%;
}
.wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list li a {
  background: transparent !important;
  border-radius: 8px !important;
  margin: 0;
  color: var(--primary) !important;
  font-size: 16px;
  text-transform: capitalize;
  bottom: 0;
  padding: 14px 10px !important;
  display: flex !important;
  justify-content: center;
  position: relative;
  align-items: center;
  border: 1px solid transparent !important;
  font-weight: 300;
}
.wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list a:hover {
  color: var(--primary) !important;
  border: 1px solid var(--primary);
  background: transparent !important;
  /* transition: height 1s linear; */
}
.wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list li.vc_active a {
  color: var(--primary) !important;
  border: 1px solid var(--primary);
  background: transparent !important;
  /* transition: height 1s linear; */
}
.wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list li a:hover:after {
  content: "";
  border-bottom: 4px solid var(--primary) !important;
  position: absolute;
  width: 100%;
  left: 0 !important;
  top: inherit !important;
  bottom: -1px;
  opacity: 0.3;
}
.wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list li.vc_active a::after, .wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list li.vc_active a:hover:after {
  content: "";
  border-bottom: 4px solid var(--primary) !important;
  position: absolute;
  width: 100%;
  left: 0 !important;
  top: inherit !important;
  bottom: -1px;
  opacity: 1;
}

.finesTab .vc_tta-tabs-list a:before {
  display: none !important;
}

.home .pay-instant-header .title-header h3 {
  color: var(--primary);
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
  margin: 0;
  margin-top: 40px;
}
.home .pay-instant-header .title-header p {
  color: var(--primary);
  text-align: center;
  font-weight: 100;
  line-height: 1.6;
  text-transform: capitalize;
  margin: 10px 0 30px;
  font-size: 16px;
}

.finesTabContainer .container button {
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 12px;
  width: 200px;
  margin: 30px 100px 0;
  cursor: pointer;
  border-width: 2px;
  border-style: solid;
}

[dir=rtl] .finesTabContainer .container button {
  /*margin-right: -35%;*/
  margin-left: inherit;
}

.finesTabContainer .container button:hover, .finesTabContainer .container button:active {
  color: var(--primary);
  border-color: var(--primary) !important;
  background: var(--white) !important;
}
.finesTabContainer .container input, .finesTabContainer .container form input {
  /* border-radius: 0; */
  border: 1px solid #B6BACE;
  color: #525871;
  padding: 15px;
  min-width: auto;
  border-radius: 8px !important;
  /* margin: 0 -2px; */
  height: 50px;
  width: inherit;
  margin: 0 7px;
  border-radius: 8px !important;
}

.finesTabContainer input:last-child {
  border-radius: 0 8px 8px 0 !important;
}
.finesTabContainer input:first-child:last-child {
  width: 100%;
}

#checkPaytab3 input {
  min-width: 200px;
}

.error_msg {
  color: red;
}

.finesTab .vc_tta-panels {
  border: 0 !important;
}

.check-pay-tabs, .building-tabs {
  list-style: none;
  justify-content: center;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

.check-pay-tabs li, .building-tabs li {
  padding: 7px 10px 1px;
  background: #f4f8fc;
  margin: 0 0 0 5px;
  border-radius: 8px;
  border: 1px solid #ccd7e3;
  cursor: pointer;
  font-size: 14px;
  min-width: 70px;
}

.check-pay-tabs li i, .building-tabs li i {
  display: block;
  margin-bottom: 5px;
}

.check-pay-tabs li.active, .building-tabs li.active, .check-pay-tabs li:hover, .building-tabs li:hover {
  background: #282c3f;
  color: var(--white);
}

.check-pay-content {
  width: 800px;
  position: relative;
  margin: 0 auto;
}
.check-pay-content .tab-data {
  display: none;
}
.check-pay-content .tab-data.active {
  display: block;
}

.check-pay-content-child {
  display: flex;
}

.tab-select {
  width: 25%;
  margin-top: 20px;
  background: transparent;
  border: 1px solid #B6BACE;
  height: 50px;
  border-radius: 8px 0 0 8px;
}

[dir=rtl] .tab-select {
  /* border-radius: 0 8px 8px 0; */
  padding-right: 0;
  /*padding-left: 5px;*/
}

.tab-select .check-pay-selector {
  background: transparent;
  border: 0;
  border-radius: 8px;
  padding: 10px 30px 9px 10px;
  width: 100%;
  border-right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 49px;
  background-position: calc(100% - 10px) 22px !important;
  color: #525871;
}

[dir=rtl] .tab-select .check-pay-selector {
  /* border-radius: 0 8px 8px 0; */
  padding: 10px 10px 9px 30px;
  background-position: 10px 22px !important;
}

.tab-content {
  width: 75%;
  padding-top: 20px;
}

.four-inputs input {
  width: 25% !important;
  min-width: inherit !important;
}

/* DM Numbers */
.dm-numbers-parent {
  background: var(--white);
}

.dm-num-title {
  margin-top: 30px;
  font-size: 45px;
}

.dm-numbers {
  padding-top: 30px;
  padding-bottom: 50px;
}
.dm-numbers h2 {
  margin: 0;
  color: var(--secondary);
  font-weight: 500;
  font-size: 30px;
}
.dm-numbers p {
  color: #3A3F57;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 100;
  line-height: 1.3;
  text-transform: capitalize;
  margin: 0 auto;
  width: 160px;
}

/* animation */
.numbers {
  margin: 0;
  color: var(--primary);
  font-weight: 500;
  overflow: hidden;
}

.numbers__window {
  display: inline-block;
  overflow: hidden;
  /* width: 0.5em; */
  height: 70px;
}

.numbers__window__digit {
  font-size: 51px;
  word-break: break-all;
  display: block;
  width: 0;
  padding: 0 0.52em 0 0;
  margin: 0 auto;
  overflow: inherit;
  animation: counting 0.4s steps(10) forwards 3;
}
.numbers__window__digit::before {
  content: attr(data-fake);
  display: inline-block;
  width: 100%;
  height: auto;
}

.numbers__window__digit--1 {
  animation-iteration-count: 3;
}

.numbers__window__digit--2 {
  animation-iteration-count: 6;
}

.numbers__window__digit--3 {
  animation-iteration-count: 9;
}

.numbers__window__digit--4 {
  animation-iteration-count: 12;
}

.numbers__window__digit--5 {
  animation-iteration-count: 15;
}

/* Success Stories */
.success-stories-item {
  justify-content: center;
  margin: 16px auto;
  /* width: 1000px; */
  align-items: flex-start;
  overflow-x: hidden;
  padding: 0 5px;
}

.success-stories-item-image {
  flex: 1 1 0;
}

[dir=rtl] .success-stories-item-image {
  transform: scaleX(-1);
}

.success-stories-item-image img {
  max-width: 100%;
  max-height: 450px;
  border-radius: 15px;
}

.success-stories-content {
  flex: 1 1 0;
  padding-left: 40px;
}
.success-stories-content h2 {
  color: #3A3F57;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  text-transform: capitalize;
  margin: 20px 0 15px;
}
.success-stories-content p {
  color: #3A3F57;
}
.success-stories-content .posts-link a {
  color: var(--primary) !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  font-weight: 400 !important;
  font-size: 16px !important;
}
.success-stories-content .posts-link a:after {
  content: "\f054";
  color: var(--primary);
  font: normal normal normal 10px/1 "Font Awesome 5 Pro";
  margin-left: 8px;
  position: relative;
  top: 0;
}

/*
.success-stories-content h2{
    color: var(--primary);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    text-transform: capitalize;
    margin: 0;
    margin-top: 20px;
    display: none;
}*/
[dir=rtl] .success-stories-content .posts-link a:after {
  margin-right: 8px;
  display: inline-block;
  margin-left: 0;
  transform: rotate(180deg);
}

.success-stories-content .posts-link a:hover {
  text-decoration: underline !important;
}

#success_stories-slider .flickity-prev-next-button.next {
  right: -100px;
}
#success_stories-slider .flickity-prev-next-button.previous {
  left: -100px;
}

.success-stories .flickity-page-dots {
  bottom: -12px;
}

/* DM App */
.dm-app-home {
  padding: 50px 0 20px !important;
}
.dm-app-home .list-post {
  border-radius: 12px;
  margin: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.dm-app-home .wpb_content_element {
  margin: 0;
}
.dm-app-home .wpb_wrapper {
  padding: 0 20px;
}
.dm-app-home h2 {
  color: var(--secondary);
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
  margin: 0;
  margin-top: 20px;
}
.dm-app-home p {
  color: #647794;
  margin-bottom: 40px;
}
.dm-app-home .app-links a img {
  max-width: 170px;
  margin-right: 15px;
  box-shadow: 2px 10px 10px #e0e0e0;
}
.dm-app-home .app-links a:hover img {
  box-shadow: none;
}

/* News & Events */
.news-events-home .display-posts-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  grid-auto-rows: 1fr;
  margin-top: 20px;
}

.newshome-item {
  overflow: hidden;
}

.newshome-item-image {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}
.newshome-item-image img {
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.newshome-content p {
  color: #3A3F57;
}
.newshome-content p.newshome-title {
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 0;
}
.newshome-content .posts-link a {
  color: var(--primary) !important;
  background: none !important;
  border: none !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  position: relative;
}
.newshome-content .posts-link a:hover {
  text-decoration: underline !important;
}
.newshome-content .posts-link a:after {
  content: "\f054";
  color: var(--primary);
  font: normal normal normal 10px/1 "Font Awesome 5 Pro";
  margin-left: 8px;
  position: absolute;
  top: 9px;
}

.view-more-news {
  margin: 60px auto 50px;
}
.view-more-news a.vc_general {
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px;
  width: 200px;
  border: 2px solid var(--primary);
  font-size: 16px;
}
.view-more-news a.vc_general:hover, .view-more-news a.vc_general:active, .view-more-news a.vc_general:focus {
  border: 2px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
}
.view-more-news a.vc_general:after {
  content: "\f054";
  color: #688CBA;
  font: normal normal normal 10px/1 "Font Awesome 5 Pro";
  margin-left: 8px;
  position: relative;
  top: 0;
  display: none;
}
.view-more-news a.vc_general:hover:after, .view-more-news a.vc_general:active:after, .view-more-news a.vc_general:focus:after {
  color: var(--white);
}

.animate__animated {
  visibility: visible !important;
}

.wpb-js-composer .vc_tta.vc_general .vc_active .show-home-result .pdfdownload a {
  padding: 5px 10px;
  border: 1px solid var(--primary);
  background: var(--primary) !important;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
}
.wpb-js-composer .vc_tta.vc_general .vc_active .show-home-result .pdfdownload a:hover, .wpb-js-composer .vc_tta.vc_general .vc_active .show-home-result .pdfdownload a:focus {
  background: var(--white) !important;
  color: var(--primary);
}

@media (max-width: 768px) {
  .wpb-js-composer .vc_tta.vc_general .vc_active .show-home-result .pdfdownload a {
    display: block;
    margin-top: 10px;
  }
}
/* Arabic home page */
[dir=rtl] #searchmaincontainer a {
  left: inherit;
  right: 15px;
}
[dir=rtl] #searchmaincontainer a.searchNewBtn {
  float: left !important;
  left: 15px;
  right: inherit;
}
[dir=rtl] #searchfield .addsearch-searchfield input[type=search].icon {
  padding: 0 25px 2px 7px !important;
}
[dir=rtl] #autocomplete .autocomplete-item .main-image {
  margin-left: 1em;
  margin-right: 0;
}
[dir=rtl] .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-title-text {
  text-align: right;
}
[dir=rtl] .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a i:before {
  background-position: right;
}
[dir=rtl] .serviceCardHome .img-icon {
  margin-right: 0;
  margin-left: 20px;
}
[dir=rtl] .serviceCardHome a {
  margin-right: 0;
  margin-left: 40px;
}
[dir=rtl] .serviceCardHome a:before {
  right: inherit;
  float: right;
  margin-left: 0;
  left: -15px;
  margin-right: 10px;
  transform: rotate(180deg);
}
[dir=rtl] .wpb-js-composer .vc_tta.vc_general .vc_active .serviceCardHome a {
  margin-right: 0;
  margin-left: 40px;
}
[dir=rtl] .vc_btn3.vc_btn3-size-md.vc_btn3-icon-right:not(.vc_btn3-o-empty) {
  padding-right: 0;
  padding-left: 48px;
}
[dir=rtl] .vc_btn3.vc_btn3-size-md.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon {
  right: inherit;
  left: 20px;
  transform: rotate(180deg);
  top: 21px;
}
[dir=rtl] .newshome-content .posts-link a {
  position: relative;
}
[dir=rtl] .newshome-content .posts-link a:after {
  position: absolute;
  top: 9px;
  margin-right: 8px;
  margin-left: 0;
  transform: rotate(180deg);
}
[dir=rtl] .dm-app-home .app-links a img {
  margin-right: 0;
  margin-left: 15px;
}
[dir=rtl] .finesTabContainer input:first-child {
  border-radius: 0 8px 8px 0;
}
[dir=rtl] .finesTabContainer input:last-child {
  border-radius: 8px 0 0 8px !important;
}
[dir=rtl] .feedback-section .feedback-btn-container {
  text-align: left;
}
[dir=rtl] .txtoverlayImg {
  margin: 0 30px 10px 20px;
}
[dir=rtl] .success-stories-content {
  padding-left: 0;
  padding-right: 40px;
}
[dir=rtl] .dubai-more-box a::after {
  transform: rotate(180deg);
  display: inline-block;
  top: 5px;
}

.no-animate {
  opacity: 1 !important;
  position: relative !important;
  animation: none !important;
  width: auto !important;
}

h2.no-animate {
  font-size: 58px !important;
  margin-top: 15px !important;
}

.m-0 {
  margin-top: 0 !important;
}

/* ---- page dots ---- */
.custom-page-dots {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
.custom-page-dots .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 2px 8px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.custom-page-dots .dot.is-selected {
  opacity: 1;
}

.custom-navigation, .scroll-indicator {
  position: absolute;
  margin-top: -50px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.custom-navigation, .scroll-indicator {
  margin-top: -30px;
}

.custom-navigation button {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  margin: 0 4px;
}
.custom-navigation button.pause-button {
  font-size: 12px;
}

.rtl .pdfdownload .releaseDate {
  display: inline-block;
  direction: ltr;
}

/* CSS aftr go-live */
.announcementPortal {
  background: var(--primary);
  color: var(--white);
  position: fixed;
  z-index: 1000000000000;
  top: 0;
  left: 0;
  width: 100%;
}
.announcementPortal .js-marquee {
  padding: 15px 0;
}

.rtl .announcementPortal .js-marquee {
  text-align: center;
}

.home-section-title {
  text-align: left;
  font-size: 30px;
}

[dir=rtl] .home-section-title {
  text-align: right;
}

.home-section-link {
  margin-right: 15px;
}

[dir=rtl] .home-section-link {
  margin-left: 15px;
  margin-right: 0;
}

.home main a:focus, .home main a:active, .home main a:hover {
  color: var(--primary);
}

.flickity-button {
  background: transparent !important;
}

.home .serivces-tabs-row .wpb_wrapper .serviceItem {
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
}
.home .serivces-tabs-row .wpb_wrapper .serviceItem a {
  color: var(--secondary);
  font-size: 14px;
  text-decoration: none;
}
.home .vc_custom_1738582839533, .home .vc_custom_1738580629882, .home .vc_custom_1738582913989, .home .vc_custom_1738656618363, .home .vc_custom_1738652281239, .home .vc_custom_1738656639499, .home .vc_custom_1738652287319, .home .vc_custom_1738758948144, .home .vc_custom_1738749278747 {
  background-color: transparent !important;
}

/*Banner*/
.custom-navigation {
  top: 70%;
  text-align: center;
}

.scroll-indicator {
  text-align: center;
  top: 75%;
}

.fa-scrollindicator:before {
  height: 24px;
  width: 16px;
}

#success_stories-slider {
  margin-left: -60px;
}

/* Dubai Pillars section */
.dubai-more-box:hover, .dubai-more-box.active {
  background: #313549;
  color: var(--white);
}
.dubai-more-box:hover p, .dubai-more-box.active p, .dubai-more-box:hover a {
  color: var(--white);
  /* opacity: 0.8; */
}
.dubai-more-box.active a {
  color: var(--white);
  /* opacity: 0.8; */
}
.dubai-more-box.active a:after {
  color: var(--white);
  /* opacity: 0.8; */
}
.dubai-more-box.active a:hover {
  color: var(--white);
  /* opacity: 0.8; */
}
.dubai-more-box.active a:hover:after {
  color: var(--white);
  /* opacity: 0.8; */
}

.dubaimore_content a.btn-dubaimore:hover {
  color: var(--white);
  /* opacity: 0.8; */
}
.dubaimore_content a.btn-dubaimore:hover:after {
  color: var(--white);
  /* opacity: 0.8; */
}

.dubai-more-box:hover p img:first-child, .dubai-more-box.active p img:first-child {
  display: none;
}

.dm-more-container .txtoverlayImg {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

[dir=rtl] .dm-more-container .txtoverlayImg {
  margin-right: 0;
}

/* Investment Opportunites section */
.home .investmentopportunities-section .vc_column-inner {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 250px;
  width: 100%;
  border-radius: 10px;
}
[dir=rtl] .home .investmentopportunities-section .vc_column-inner {
  background-position: right;
}

.home .investmentopportunities-section h2, .home .investmentopportunities-section p {
  color: var(--white);
  border-radius: 8px;
  z-index: 2;
  position: relative;
  margin-left: 20px;
  filter: brightness(100%);
}
[dir=rtl] .home .investmentopportunities-section h2, [dir=rtl] .home .investmentopportunities-section p {
  margin-left: 0;
  margin-right: 20px;
  text-align: right;
}
.home .investmentopportunities-section h2 {
  margin-top: 80px;
}

/* Buttons */
.btn-dubaimore::after {
  content: "\e904";
  color: var(--white);
  font-family: "icomoon";
  position: relative;
  top: 3px;
}
.btn-dubaimore:hover, .btn-dubaimore:active {
  opacity: 0.7;
  color: var(--white);
}

.flickity-button:focus {
  box-shadow: 0 0 0 5px var(--secondary) !important;
}

.tab-content .text-center {
  display: block;
}

#dm-numbers-slider .flickity-page-dots {
  display: none;
}

/* Media query only mobile */
@media (max-width: 767px) {
  .dm-more-container .txtoverlayImg {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .finesTab.container {
    max-width: 100%;
    padding: 0;
  }
  .display-posts-listing .flickity-button {
    display: none;
  }
}
@media (max-width: 768px) {
  /* New & Events */
  .news-events-list .display-posts-listing {
    margin-left: 0 !important;
  }
  .dubai-more-box {
    margin-top: 20px !important;
  }
  .serivces-tabs-row .home-section-link-icon {
    display: none;
  }
  .fa-arrow-title-alt:before {
    background-image: url(../images/icon-arrowright-primary.svg);
  }
}
/* Media query iPad, laptops, desktop */
@media (min-width: 768px) {
  .home .vc_row-has-fill > .vc_column_container > .vc_column-inner {
    padding-top: 0;
  }
  .home .carousel-layers {
    width: 550px;
  }
  .home .serivces-tabs-row > .vc_column_container {
    margin: -200px auto 0 !important;
  }
  .home .serivces-tabs-row .wpb_wrapper h2, .home .serivces-tabs-row .wpb_wrapper a {
    color: var(--white);
    filter: brightness(100%);
  }
  .home .serivces-tabs-row .vc_row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .home .serivces-tabs-row .wpb_wrapper .vc_column-inner {
    padding: 5px;
  }
  .home .serivces-tabs-row .wpb_wrapper .wpb_content_element {
    width: 100%;
  }
  .home .serivces-tabs-row .wpb_wrapper .serviceItem {
    width: 100%;
  }
  .home .serivces-tabs-row .wpb_wrapper .serviceItem:hover {
    box-shadow: 0px 24px 48px -12px rgba(16, 24, 40, 0.1803921569);
  }
  .home .finesTabContainer {
    margin-top: 5px !important;
  }
  .home .finesTabContainer input, .home .finesTabContainer button {
    display: inline-flex;
    justify-content: flex-start;
  }
  /*Banner*/
  /* Tabs section */
  /* Check and Pay section */
  .finesTabContainer .container button {
    width: auto;
    min-width: 100px;
    margin: 0 10px;
    justify-content: center;
    padding: 10px 12px;
  }
  .finesTabContainer .container form input {
    margin: 0 7px;
    width: 100%;
    border-radius: 8px !important;
  }
  .tab-select {
    margin-right: 7px;
    border-radius: 8px;
    background: transparent;
  }
  [dir=rtl] .tab-select {
    margin-left: 7px;
    margin-right: 0;
  }
  .tab-content * {
    width: 100%;
  }
  .home .finesTab {
    background: var(--white);
    border-radius: 12px;
  }
  .check-pay-content {
    width: 100%;
  }
  .wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list {
    width: 85%;
  }
  .wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list li a {
    color: #525871 !important;
  }
  .wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list li.vc_active a {
    color: var(--primary) !important;
  }
  .finesTabContainer .vc_tta-panel-body {
    background-color: var(--white) !important;
  }
  /*DM Pillars section */
  .news-events-home .vc_column-inner {
    padding-top: 0;
    background: transparent;
  }
  .dm-more-container {
    padding-top: 0;
    background: transparent;
    padding: 0 5px 10px;
  }
  .dm-more-container .wpb_content_element {
    margin-bottom: 0;
  }
  [dir=rtl] .dm-more-container .vc_column-inner .wpb_wrapper {
    display: inherit !important;
  }
  .dm-more-container .txtOverlay {
    /*background: transparent;*/
    z-index: 1;
  }
  .dm-more-container figure:after {
    content: "";
    width: 100%;
    min-height: 455px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 8px;
  }
  .arrow-view-all-cat {
    padding-top: 15px;
  }
  .arrow-view-all-cat img {
    position: relative;
    top: 2px;
  }
  .service-all-link i {
    font-size: 20px;
    color: var(--primary);
    top: 30px;
    position: relative;
  }
  .success-stories-item-image {
    flex-grow: 2;
  }
  /* Number slider section */
  #dm-numbers-slider .flickity-button {
    top: 38%;
  }
  [dir=rtl] #dm-numbers-slider .flickity-button.next {
    right: 0;
  }
  #dm-numbers-slider .flickity-prev-next-button.previous {
    left: 0;
  }
  [dir=rtl] .dm-num-title {
    text-align: right;
  }
  /* Investment opportunities section*/
  .home .investmentopportunities-section {
    position: relative;
    overflow: hidden;
    background: transparent !important;
  }
  .home .investmentopportunities-section p {
    margin-top: 8px;
  }
  .home .investmentopportunities-section .wpb_wrapper .wpb_text_column .wpb_wrapper {
    display: block !important;
  }
  .dubaimore_content .wpb_wrapper {
    display: block !important;
  }
  [dir=rtl] .dubaimore_content .wpb_wrapper {
    text-align: right;
  }
  .home .investmentopportunities-section .vc_column-inner:after {
    content: "";
    width: 100%;
    height: 250px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 8px;
  }
  /* New & Events */
  .news-events-list .display-posts-listing {
    /* margin-left: -40px; */
    margin-right: 0;
  }
  [dir=rtl] .news-events-list {
    margin-top: 30px !important;
  }
  [dir=rtl] .news-events-list .display-posts-listing {
    margin-left: 0;
    /* margin-right: -40px; */
  }
  .news-featured figure img {
    height: 233px;
  }
  .newshome-content p {
    overflow: hidden;
    text-overflow: ellipsis;
    /* display: -webkit-box; */
    max-height: 50px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .dubai-more-cpt-img-container + .wpb_column {
    margin-top: -15px;
  }
  /* Success stories */
  #success_stories-slider {
    margin-left: -60px;
    height: 405px;
  }
  [dir=rtl] #success_stories-slider {
    margin-right: -60px;
    margin-left: 0;
  }
  #success_stories-slider .success-stories-content {
    max-height: 350px;
    height: 350px;
    overflow: auto;
  }
  #success_stories-slider .flickity-prev-next-button.previous {
    left: -25px;
  }
  #success_stories-slider .flickity-prev-next-button.next {
    right: -55px;
  }
  [dir=rtl] #success_stories-slider .flickity-prev-next-button.next {
    right: 0;
  }
  .dm-app-home .list-post {
    height: 233px;
  }
  .dm-app-home .list-post figure img {
    height: 233px;
    position: absolute;
    left: 0;
    top: -105px;
  }
  .serivces-tabs-row .vc_row {
    display: flex;
  }
  .serivces-tabs-row .vc_row .vc_column_container {
    display: flex;
    flex: 1;
  }
  .serivces-tabs-row .vc_row .vc_column_container .wpb_raw_code, .serivces-tabs-row .vc_row .vc_column_container .vc_column-inner, .serivces-tabs-row .vc_row .vc_column_container .wpb_wrapper, .serivces-tabs-row .vc_row .vc_column_container .wpb_content_element {
    height: 98%;
  }
  .serivces-tabs-row .vc_row .vc_column_container .serviceItem {
    height: 98%;
  }
  .serivces-tabs-row .vc_row .vc_column_container .serviceItem p + p {
    margin-bottom: 0;
  }
  .home .home-slider {
    height: 700px !important;
  }
}
@media (min-width: 992px) {
  .home .wpb_wrapper .wpb_text_column .wpb_wrapper {
    display: flex;
    justify-content: space-between;
  }
  #dm-numbers-slider .wpb_wrapper .wpb_text_column .wpb_wrapper {
    display: inherit;
  }
  .tab-content .text-center {
    display: flex;
  }
}
/* Responsive Media Queries of all pages come here */
@media only screen and (max-width: 800px) {
  .sah-museum-collection-row,
  .row-antiquities.antiquities-inner-row,
  .row-antiquities.row-ornament.ornament-inner-row {
    display: block !important;
    padding: 30px 20px !important;
  }
}
@media (max-width: 768px) {
  .entry-content .ras-khor-submenu {
    margin-bottom: 20px;
  }
  .display-posts-listing {
    margin-left: 0;
    margin-right: 0;
  }
  .turtleImageContent p {
    font-size: 15px !important;
  }
  .dubaiBeachSection .finder-img img {
    max-height: 47px;
  }
  .dubaiBeachSection .beach-page .vc_col-sm-4 {
    text-align: center;
  }
  .dubaiBeachSection .beach-page .vc_col-sm-4 a {
    font-size: 16px;
  }
  .dubaiBeachSection .beach-page .vc_col-sm-4 p {
    font-size: 15px;
  }
  .dubaiBeachesMainColoum.vc_row.vc_column-gap-10 {
    max-width: 450px;
    margin: 0 auto;
  }
  .topSearchButtonSection .reducedpadding {
    justify-content: flex-start;
  }
  .row-museum-experience.common_descreption.slider_section .content-info {
    max-width: 100%;
  }
  *[dir=rtl] .topSortBy select#newsortfield {
    text-align: right;
  }
  .row-main-publication .col-right-publication h2 {
    font-size: 16px;
  }
  .investmentLeasingContentWrap .renewingContracts {
    margin: 0 auto !important;
  }
  .display-posts-pagination {
    text-align: center;
  }
  .display-posts-pagination .page-numbers {
    font-size: 16px;
    padding: 12px 12px;
  }
  .display-posts-listing span.page-numbers.current {
    padding: 12px 16px;
  }
  .projectPages .vc_row .vc_col-sm-6 {
    order: 2;
  }
  .projectPages .vc_row .vc_col-sm-6:last-child {
    order: 1;
  }
  .projectPages h2 {
    font-size: 23px;
  }
  .projectPages h3 {
    font-size: 16px;
  }
  .projectPages p {
    font-size: 16px;
    margin: 0 0 12px 0;
  }
  .projectPages .related h2 {
    font-size: 32px;
  }
  .discoverDubaiWrap .discoverDubaiImageSection {
    order: 1;
  }
  .discoverDubaiWrap .discoverDubaiInnerContent {
    order: 2;
  }
  .discoverDubaiInnerContent h2 {
    font-size: 24px !important;
    margin: 10px 0 0;
    display: inline-block;
  }
  .discoverDubaiInnerContent p {
    font-size: 16px;
    margin-top: 10px !important;
  }
  .contact-pg-title ul li {
    font-size: 16px;
  }
  .newsContentWrapper h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .new_faq .post-title strong, .new_faq .vc_tta-title-text {
    font-size: 16px;
  }
  .headOfficeTitle h2 {
    font-size: 32px;
  }
  .block_section {
    width: 100%;
  }
  .mapWrap {
    margin: 0;
    width: 100%;
  }
  .inner_img h2 {
    font-size: 32px;
    width: 100%;
    left: 0;
    padding: 0px 10px;
  }
  body .img-title {
    height: 250px;
  }
  body .sah-museum-collection-row {
    margin-top: 20px;
    padding: 10px 10px !important;
  }
  .inner_img {
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .row-museum-about.saruq-slider .vc_column-inner {
    border-radius: 4px;
  }
  .row-museum-experience.common_descreption.slider_section {
    padding: 0px 20px;
    margin: 0px !important;
  }
  .row-museum-experience.common_descreption.slider_section:before {
    display: none;
  }
  .row-main-publication .col1-museum-collection {
    padding-right: 0;
  }
  .subrow-main-faq .wpb_content_element {
    text-align: center;
  }
  body .sah-right-discover-dubai {
    padding: 10px;
  }
  .museumTitles .container {
    padding: 0;
  }
  .row-museum-experience.common_descreption.slider_section .text-content p {
    color: #7D88A2;
    font-size: 16px;
  }
  .row-museum-experience.common_descreption.slider_section .main_h2_head {
    font-size: 16px;
  }
  .common_descreption p {
    font-size: 16px;
    padding: 0;
  }
  .common_descreption .row-3-col-2 {
    padding: 20px 0;
  }
  .sah-museum-collection-row .sah-museum-collection-second-col h2.wpb_singleimage_heading {
    font-size: 16px;
  }
  body .view_more_btn {
    margin: 5px 0 !important;
  }
  .row-museum-about.saruq-slider .left_discover_dubai.sah-about-content {
    padding: 10px;
  }
  body .view_more_btn a.vc_btn3-size-lg {
    font-size: 14px;
    padding: 11px 10px !important;
    margin: 5px 5px;
  }
  .sah-museum-collection-row {
    padding: 10px !important;
  }
  .sah-museum-collection-row .col1-museum-collection {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 20px;
  }
  .sah-museum-collection-row .sah-museum-collection-second-col .al-hadid-block {
    padding: 0;
  }
  .sah-museum-collection-row .img-card-zoomin > figure, .sah-museum-collection-row .img-card-zoomin > figure a, .sah-museum-collection-row .img-card-zoomin > figure a img {
    width: 100%;
  }
  .sah-museum-collection-row .sah-museum-collection-second-col .vc_col-sm-6 > .vc_column-inner {
    margin: 10px auto 0;
  }
  .sah-museum-collection-row .sah-museum-collection-third-col {
    padding-left: 0;
    padding-top: 10px;
  }
  .row-main-publication .col-right-publication figure {
    width: 100%;
  }
  .row-main-publication .col-right-publication figure * {
    width: 100%;
  }
  .row-main-faq.subrow-main-faq {
    padding: 20px 0;
  }
  .contact_get_in_touch.bunyan_form {
    padding: 10px 10px;
    border-radius: 8px;
  }
  .contact_get_in_touch.bunyan_form h2 {
    font-size: 20px;
  }
  .contact_get_in_touch .contact_form_box {
    margin: 0;
    padding-top: 10px;
  }
  .contact_get_in_touch .contact_form_box .vc_col-sm-6, .contact_get_in_touch .contact_form_box .vc_col-sm-12 {
    padding: 0;
  }
  .contact_get_in_touch label, .bunyan-descreption_section p {
    font-size: 16px;
  }
  .contact_get_in_touch input.feedbackBtnEnquiry {
    margin: 10px auto 0;
    padding: 7px 15px 7px 15px;
    border-radius: 4px;
    font-size: 16px;
  }
  .row-main-faq.subrow-main-faq .faq-img-column,
  .row-main-faq.subrow-main-faq .faq-column,
  .row-main-faq.subrow-main-faq .enq-feedback-column {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 0px 20px;
    box-sizing: border-box;
  }
  .row-main-faq.subrow-main-faq .faq-column p {
    padding: 0;
  }
  .row-main-faq.subrow-main-faq .faq-accordian-item {
    padding-left: 30px;
  }
  .subrow-main-faq .wpb_content_element h2 {
    font-size: 16px;
    padding-top: 10px;
  }
  .subrow-main-faq .wpb_content_element p {
    padding: 0;
  }
  .subrow-main-faq .wpb_content_element.above-social a {
    font-size: 16px;
    padding-bottom: 10px;
    display: block;
  }
  .subrow-main-faq .wpb_content_element .saruq a {
    font-size: 16px;
    padding: 0px 5px;
  }
  .row-main-faq.subrow-main-faq .faq-accordian-item .vc_tta-panel-body {
    padding: 0;
  }
  .discoverDubaiTopTitle p {
    font-size: 16px;
    margin: 0 !important;
  }
  .discoverDubaiTopTitle .wpb_content_element {
    margin-bottom: 10px;
  }
  .discoverDubaiImageSection {
    padding-left: 0px;
  }
  .discoverDubaiInnerContent {
    padding: 10px;
  }
  body .view_more_btn a.vc_btn3-size-lg {
    font-size: 14px;
    margin: 5px 5px;
  }
  body .img-title h2 {
    width: 80%;
  }
  .row-main-publication {
    margin-top: 0px !important;
  }
  .mainTitle h2.title {
    margin-top: 0;
  }
  .mainTitle ul.ul-no-style {
    margin-top: 10px;
  }
  .headOfficeTitle p {
    margin-top: 10px;
  }
  .headOfficeTitle .wpb_content_element {
    margin-bottom: 25px;
  }
  .mainTitle h2, .mainTitle p {
    font-size: 20px;
  }
  .contactUsCardWrap h2 {
    font-size: 17px;
  }
  .category_banner h2.main_h2_head, .category_banner p {
    font-size: 20px;
  }
  .category_banner p {
    font-size: 16px;
  }
  .search-sort-page-size-bar > .showperpage-dropdown {
    gap: 15px !important;
  }
  .beachFinderMainWrap .mainTitle h2 {
    font-size: 19px;
    text-align: center;
  }
  .beachFinderFilter button.btn_filter_beach {
    margin: 0 auto;
  }
  .beachFinderColoum .wpb_content_element {
    margin-bottom: 15px;
  }
  .beachFinderColoum p.weatherp {
    justify-content: center;
    margin: 0px !important;
  }
  .map-container {
    padding-left: 0;
  }
  .new_faq #filter-slider > .vc_column-inner {
    padding: 20px;
    overflow: auto;
  }
  .dm_inner_pages_content {
    display: block;
  }
  aside#secondary {
    width: 100%;
  }
  .dm_inner_pages_content .subpage-right-content {
    display: block;
    max-width: inherit;
  }
  .home .carousel-layers {
    top: 130px;
  }
  .home .home-slider h1 span.slider_maintext {
    font-size: 70px;
    line-height: 1.2;
  }
  #searchmaincontainer {
    width: 330px;
  }
  #searchfield .addsearch-searchfield input[type=search],
  .addsearch-searchfield, .addsearch-searchfield-container {
    width: 97% !important;
  }
  #searchmaincontainer.expanded .addsearch-searchfield input[type=search] {
    width: 95% !important;
  }
  #searchfield .addsearch-searchfield input[type=search] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .homeSearch {
    top: 325px;
  }
  .news-events-home .display-posts-listing {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
  .dm-app-home .list-post {
    margin: 0;
    flex-direction: column;
    width: 100%;
  }
  .dm-app-home .wpb_wrapper {
    padding: 0 15px;
  }
  .home-section-descr {
    padding: 0 15px;
  }
  .home-section-title {
    font-size: 32px;
  }
  .wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-panel-title > a {
    background: var(--white) !important;
    color: #74889F !important;
    text-transform: capitalize;
    bottom: 0;
    padding: 14px 10px !important;
    font-size: 16px;
    font-weight: 300;
  }
  .wpcf7-list-item {
    margin: 0 0 5px 0;
    display: block;
  }
  .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic.finesTab .vc_tta-panel .vc_tta-panel-heading,
  .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic.finesTab .vc_tta-panel .vc_tta-panel-body {
    border-color: var(--grey-alt8);
    overflow: hidden;
  }
  .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic.finesTab .vc_tta-panel.vc_active .vc_tta-panel-heading {
    border-color: var(--secondary);
  }
  .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic.finesTab .vc_tta-panel .vc_tta-panel-body {
    background-color: var(--white) !important;
  }
  .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic.finesTab .vc_tta-panel.vc_active .vc_tta-panel-title > a {
    background: var(--secondary) !important;
    color: var(--white) !important;
  }
  /* services home */
  .wpb-js-composer .vc_tta.vc_general.servTabs .vc_tta-panel {
    margin: 5px 0;
  }
  .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic.servTabs .vc_tta-panel .vc_tta-panel-title > a {
    display: flex;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-title-text {
    margin: 5px 0 0 10px !important;
  }
  .wpb-js-composer .vc_tta.vc_general.servTabs .vc_tta-icon::before {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-panel-heading a {
    text-decoration: none;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-panel-heading h3 {
    display: none;
    text-decoration: none;
    text-align: left;
    color: var(--grey-alt2);
    font-size: 16px;
    line-height: 1.2;
    margin: -20px 15px 5px 70px;
    font-weight: normal;
    padding: 0 0 10px;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-panel-heading span h3 {
    margin: 0 !important;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-panel-heading h3 + h3 {
    display: block;
  }
  .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic.servTabs .vc_tta-panel.vc_active .vc_tta-panel-heading {
    border-color: var(--grey-alt);
    background-color: var(--grey-alt);
  }
  .wpb-js-composer .vc_tta.vc_general.servTabs .vc_tta-panel.vc_active .vc_tta-panel-body {
    background: var(--white) !important;
    border: 1px solid var(--grey-alt) !important;
  }
  .wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic.servTabs .vc_tta-panel.vc_active .vc_tta-panel-title > a {
    padding-bottom: 0;
  }
  .dm-app-home {
    padding: 10px 0 50px !important;
  }
  .dm-app-home h2 {
    font-size: 32px;
  }
  .dm-app-home .success-stories {
    padding-bottom: 100px;
  }
  .dm-app-home .success-stories .flickity-page-dots {
    bottom: -50px;
  }
  .dm-app-home .success-stories-item {
    margin: 0 auto;
    display: block;
    padding: 10px;
  }
  .dm-app-home .success-stories-content {
    padding: 0;
  }
  .dm-app-home .dm-more-container {
    display: block;
    padding: 0;
  }
  .dm-app-home .dubai-more-box {
    min-height: inherit;
  }
  .dm-app-home .feedback-section .feedback-btn-container {
    text-align: left;
    padding: 0;
  }
  .dm-app-home .home .pay-instant-header .title-header h3 {
    font-size: 32px;
  }
  .dm-app-home .dubai-more-box {
    padding: 15px 25px;
    margin: 0px 20px;
  }
  .dm-app-home .txtoverlayImg {
    margin: 0;
  }
  .dm-app-home .dubaimore_content:first-of-type {
    margin: 0 20px 15px;
  }
  .dm-app-home .serivces-tabs-row .vc_tta-panel-title a + p {
    display: none;
  }
  .dm-app-home .paymentFacility .payment-channel-card {
    min-height: auto !important;
  }
  .dm-app-home .finesTabContainer input:first-child:last-child {
    width: 500px;
  }
  .dm-app-home .topSearchButtonSection.media-center label {
    padding: 0px 15px;
  }
  .dm-app-home .topSearchButtonSection.media-center .screen-reader-text {
    padding-right: 25px;
  }
  .dm-app-home .map_section {
    width: 100%;
  }
  .dm-app-home .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-title-text {
    line-height: 1.1;
  }
  .dm-app-home .check-pay-content {
    width: 100%;
  }
  .dm-app-home .check-pay-content-child {
    display: block;
  }
  .dm-app-home .tab-content {
    width: 100%;
    padding-top: 10px;
  }
  .dm-app-home .tab-select {
    border-radius: 8px;
    width: 100%;
  }
  .dm-app-home .finesTabContainer .container button {
    /*width: 290px;*/
    margin: 0 auto;
    max-width: 290px;
  }
  .dm-app-home .check-pay-tabs, .dm-app-home .building-tabs {
    justify-content: center;
  }
  .dm-app-home .pay-instant-header.pay-header-tabs {
    position: relative;
    margin-bottom: 10px;
    top: 0;
  }
  .dm-app-home .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-icon {
    display: none !important;
  }
  .dm-app-home .show-home-result {
    padding: 0 10px;
  }
  .dm-app-home aside#secondary {
    margin: 0;
  }
  .dm-app-home .subpage-right-content h3 {
    margin: 0;
    padding-top: 10px;
    font-size: 16px;
  }
  .dm-app-home .subpage-right-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
    padding: 5px 0;
  }
  .dm-app-home .ui-accordion-icons::after {
    margin-left: 10px;
    font-size: 10px;
    width: 14px;
    height: 14px;
  }
  .dm-app-home [dir=rtl] .ui-accordion-icons::after {
    margin-left: 0px;
    margin-right: 10px;
  }
  .dm-app-home .subpage-right-content ul {
    margin: 0;
    padding: 0px 30px;
  }
  .dm-app-home .Pioneering_top_section ul, .dm-app-home .Pioneering_top_section ol {
    padding-left: 20px;
  }
  .dm-app-home .subpage-right-content .wpb_content_element {
    margin: 0;
  }
  .dm-app-home .subpage-right-content ul li {
    font-size: 15px;
  }
  .dm-app-home .sitemap_block {
    width: 100%;
  }
  .dm-app-home .sitemap_row_section .sitemap_block .wpb_content_element {
    margin: 0;
    padding: 5px 0;
  }
  .dm-app-home .sitemap_row_section h2 {
    font-size: 1.1em;
  }
  .dm-app-home .sitemap_row_section ul {
    margin: 0;
    padding: 5px 20px;
  }
  .dm-app-home .check-pay-tabContent-form input:first-child:last-child {
    width: 100% !important;
  }
  .dm-app-home .center-card-landscape {
    flex-wrap: wrap;
  }
  .dm-app-home .dubaiMainOfficeContent .con-details, .dm-app-home .dubaiMainOfficeContent .work-details {
    width: 100%;
    margin-top: 0;
  }
  .dm-app-home .dubaiMainOfficeContent .locationQRCode {
    display: none;
  }
  .dm-app-home .centre-card {
    margin: 10px 0;
  }
  .dm-app-home .discoverDubaiTabs .center-card-landscape p {
    margin: 0px 0px 10px 0 !important;
  }
  .dm-app-home .reduced-height-card a.view_more {
    position: relative !important;
    bottom: 0 !important;
  }
  .dm-app-home .vc_general.vc_tta.discoverDubaiTabs .center-card-landscape > div > a {
    padding: 0px 10px 0px 10px !important;
  }
  .dm-app-home .vc_general.vc_tta.discoverDubaiTabs .center-card-landscape > div > a:after {
    content: none;
  }
  .dm-app-home .wasteManagementDepartmentWrap h2 {
    font-size: 24px !important;
  }
  .dm-app-home .wasteManagementDepartmentWrap .wpb_content_element {
    margin-bottom: 0px !important;
  }
  .dm-app-home .converstaion-content {
    padding: 0 10px;
  }
  .dm-app-home .conversation-row h2 {
    margin: 0;
    font-size: 20px;
    padding-bottom: 5px;
  }
  .dm-app-home .planYourVisitWrap h2 {
    font-size: 24px;
    margin: 0;
  }
  .dm-app-home .planvisit-inner-row {
    margin-top: 0;
    padding: 0;
  }
  .dm-app-home .planvisit-inner-row img {
    height: auto;
  }
  .dm-app-home .planvisit-inner-row .wpb_content_element {
    margin: 10px 0px;
  }
  .dm-app-home .iconTextTitle h2 {
    margin: 0;
    font-size: 24px;
    text-align: left;
  }
  .dm-app-home .row-information-school .wpb_content_element {
    margin: 0;
    padding-bottom: 15px;
  }
  .dm-app-home .guideline-container {
    margin: 0;
  }
  .dm-app-home .rasid-card-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .dm-app-home .row-antiquities.antiquities-inner-row > .col1-museum-collection {
    width: 100%;
  }
  .dm-app-home .row-antiquities.antiquities-inner-row > .col2-museum-collection, .dm-app-home .row-antiquities.antiquities-inner-row > .col3-museum-collection {
    width: 50%;
  }
  .dm-app-home .larger-header-slider {
    display: none;
  }
  .dm-app-home *[dir=rtl] .planvisit-inner-row-img1 .wpb_single_image.vc_align_left {
    text-align: right;
  }
  .dm-app-home .planvisit-main-row .planvisit-tab-view .vc_tta-panels-container .vc_tta-panels,
  .dm-app-home .tab_sections .planvisit-tab-view .vc_tta-panels-container .vc_tta-panels {
    background-color: transparent !important;
  }
  .dm-app-home .planvisit-tab-view .vc_tta-panel-heading, .dm-app-home .tab_sections .vc_tta-panel-heading {
    background-color: var(--white) !important;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 15px !important;
  }
  .dm-app-home *[dir=rtl] .planvisit-tab-view .vc_tta-panel-heading,
  .dm-app-home *[dir=rtl] .tab_sections .vc_tta-panel-heading {
    text-align: right !important;
  }
  .dm-app-home .planvisit-tab-view .vc_tta-panel.vc_active .vc_tta-panel-heading,
  .dm-app-home .tab_sections .vc_tta-panel.vc_active .vc_tta-panel-heading {
    background-color: var(--primary);
    margin-bottom: -1px !important;
  }
  .dm-app-home .planvisit-tab-view .vc_tta-panel, .dm-app-home .tab_sections .vc_tta-panel {
    background-color: var(--white);
    border-radius: 4px;
    margin-bottom: 15px !important;
  }
  .dm-app-home .planvisit-tab-view .vc_tta-panel.vc_active .vc_tta-panel-body,
  .dm-app-home .tab_sections .vc_tta-panel.vc_active .vc_tta-panel-body {
    background-color: var(--white) !important;
    border-radius: 0 0 4px 4px !important;
    border: 0 !important;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.04);
  }
  .dm-app-home .planvisit-tab-view .vc_tta-panel-title a,
  .dm-app-home .tab_sections .vc_tta-panel-title a {
    font-size: 18px !important;
    background-color: var(--white) !important;
    border-radius: 4px;
  }
  .dm-app-home .planvisit-tab-view .vc_tta-panel.vc_active .vc_tta-panel-title a,
  .dm-app-home .tab_sections .vc_tta-panel.vc_active .vc_tta-panel-title a {
    font-size: 18px !important;
    background-color: var(--primary) !important;
    border-radius: 4px 4px 0 0;
    color: var(--white) !important;
  }
  .dm-app-home .sub-page-with-tabs .tab_sections .vc_tta-panels {
    background-color: transparent !important;
  }
  .dm-app-home .sub-page-with-tabs .tab_sections {
    padding-top: 20px;
  }
  .dm-app-home .fines-selector-layout > div.fines-content {
    display: block;
  }
  .dm-app-home .input-section > div > input, .dm-app-home .fines-selector-layout .selector-layout > select, .dm-app-home .input-section > div > input:last-of-type {
    border-radius: 8px !important;
  }
  .dm-app-home .payments-header-layout h3 {
    font-size: 30px;
  }
  .dm-app-home .dsp-block, .dm-app-home .fines-selector-layout #ip-vehicle input, .dm-app-home .fines-selector-layout #ip-vehicle select, .dm-app-home .fines-selector-layout .input-section input {
    width: 100%;
  }
  .dm-app-home .makingDubaiMainTitle h2 {
    font-size: 40px;
  }
  .dm-app-home .makingDubaiMainTitle {
    margin: 25px 0px;
  }
  .dm-app-home .makingDubaiMainWraper::before {
    height: calc(17% + 100px);
  }
  .dm-app-home .makingDubaiColoumWrappers .vc_col-sm-3 {
    padding: 0px 0px 0 0;
  }
  .dm-app-home [dir=rtl] .makingDubaiColoumWrappers .vc_col-sm-3 {
    padding: 0px 0px 0 0 !important;
  }
  .dm-app-home .vc_row-has-fill > .vc_column_container > .vc_column-inner {
    padding-top: 0 !important;
  }
  /* ---- about-dubai-municipality --- Page Css End ---- */
  /* ---- resposnive css start ubai-municipality-app Start ------ */
}
@media screen and (max-width: 768px) and (max-width: 992px) {
  .saruq-al-hadid .arrivalWelcomeWrap .vc_column-inner {
    padding: 0 10px;
  }
  .turtleImageContent p {
    font-size: 16px;
  }
  .dubaiBeachSection .finder-img img {
    max-height: 50px;
  }
  .dubaiBeachSection .beach-page .vc_col-sm-4 a {
    font-size: 19px;
  }
  .dubaiBeachSection .beach-page .vc_col-sm-4 p {
    font-size: 17px;
  }
  .conversation-content.sitesBuildingsContent {
    padding: 0px;
  }
  .sitesBuildingsContentWrap .wpb_content_element {
    margin-bottom: 0px;
  }
  .map_section_section .qr_code_block {
    display: none;
  }
  .contactUsWrap .telephone, .contactUsWrap .hours, .contactUsWrap .location {
    margin: 15px 0 0 0;
  }
  .telephone-image img, .clock-image img, .location-image img {
    max-width: 50px;
  }
  .post-content {
    gap: 15px !important;
  }
  .investmentLeasingContentWrap .renewingContracts {
    margin-left: 20px;
  }
  .investmentLeasingContentWrap h2.dark-text {
    margin-top: 0;
  }
  .investmentLeasingContentWrap h2.dark-text {
    font-size: 16px;
  }
  .renewingContracts p.dark-text {
    margin-top: 5px;
  }
  .renewingContracts a.card-action {
    margin: 0;
  }
  .projectsPageSection .menu {
    flex-direction: column;
  }
  .projectsPageSection .menu li {
    width: 100%;
    display: table-row;
  }
  .content-box .post-excerpt {
    margin-bottom: 20px;
  }
  .display-posts-listing .listing-item .posts-link a.btn {
    font-size: 16px;
  }
  .display-posts-listing {
    display: block;
  }
  .projectPages .menu {
    flex-direction: column;
    border: none;
  }
  .projectPages li.menu-item-object-page {
    border-bottom: 1px solid #688CBA;
  }
  .projectPages h2 {
    font-size: 32px;
  }
  .projectPages h3 {
    font-size: 32px;
  }
  .projectPages p {
    font-size: 16px;
    margin: 0 0 12px 0;
  }
  .projectPages .related h2 {
    font-size: 32px;
  }
  .aboutDubaiHistoric .aboutDubaiIcons {
    top: 10% !important;
  }
  .discoverDubaiInnerContent h2 {
    font-size: 32px;
  }
  .discoverDubaiInnerContent p {
    font-size: 16px;
  }
  .contactUsWrap {
    padding-left: 30px !important;
  }
  .block_section .block_descreption {
    padding: 13px;
  }
  .block_section .block_descreption h2 {
    font-size: 16px;
  }
  .block_section .block_descreption h4 {
    font-size: 16px;
  }
  .map_section_block.vc_col-sm-6 {
    width: 100%;
  }
  .block_section {
    width: 50%;
    margin: 10px 0;
  }
  .body-content .menu {
    flex-direction: column;
  }
  .full-news-content .news-content {
    width: 1000%;
    order: 2;
  }
  .img-content {
    width: 100%;
  }
  .newsContentWrapper h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .newsContentWrapper .newsContent, .newsContentWrapper .discoverDubaiImageSection {
    width: 100%;
  }
  .newsContentWrapper .discoverDubaiImageSection {
    order: 1;
    margin-bottom: 50px;
  }
  .newsContentWrapper .newsContent {
    order: 2;
  }
  .faq-left h3 {
    margin: 0px 0 5px 0;
  }
  .newsFaqwrap .category-filter-section {
    padding: 15px 25px;
  }
  .faq-left {
    padding-bottom: 10px !important;
  }
  .map_section_block {
    width: 100%;
  }
  .beachFinderMainWrap .mainTitle h2 {
    font-size: 22px;
  }
  .beachFinderColoum .wpb_content_element {
    margin-bottom: 10px;
  }
  .contact-details {
    width: 94%;
  }
  .work-time {
    width: 94%;
  }
  .survery-links .wpb_wrapper .survey-box-holder-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .survey_services_container .image_with_title_small_boxes {
    grid-template-columns: repeat(3, 1fr);
  }
  .rasidManagementWraper .vc_column-inner {
    padding: 0 22px;
  }
  .timing-block {
    flex-direction: column;
  }
  .timing-content {
    width: 100%;
  }
  .center-card-landscape h2 {
    font-size: 16px;
  }
  .center-card-landscape h3 {
    font-size: 16px;
  }
  .vc_general.vc_tta.discoverDubaiTabs .center-card-landscape > div > a {
    padding: 5px 10px 5px 10px !important;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid;
  }
  .sitesBuildingsContentWrap > .vc_column-inner > .wpb_wrapper {
    max-width: calc(100% - 0px);
  }
}
@media screen and (max-width: 768px) and (max-width: 1200px) {
  .gallary-section .gallery .gallery-item {
    width: calc(25% - 10px);
  }
  .rasid-card {
    padding: 10px !important;
  }
  .rasid-card-row {
    gap: 10px !important;
  }
  .rasid-card > .rasid-card-title > img {
    width: 25px !important;
  }
  .planYourVisitWrap p {
    font-size: 16px;
  }
  .timing-block h3 {
    font-size: 16px;
  }
  .iconTextTitle h2 {
    font-size: 26px;
    margin: 0;
  }
  .center-card-landscape h2, .center-card-landscape h3 {
    font-size: 16px;
  }
  .vc_general.vc_tta.discoverDubaiTabs .center-card-landscape > div > a {
    padding: 5px 10px 5px 10px !important;
  }
  .iconLeft {
    max-width: 30px;
  }
}
@media (max-width: 768px) and (max-width: 991px) {
  .search-results-left {
    width: 32%;
  }
  .search-results-right {
    width: calc(100dvw - 35%);
  }
  .search-results-filters.thin-bottom-border h2.filterby, .search-results-filters.thin-bottom-border h2.sortby, .search-results-filters.thin-bottom-border h2.searchsuggestionslabel, .search-results-suggestions h2, h2.search-results-term {
    font-size: 120%;
  }
  .search-filter-documents-lbl, .search-filter-content-lbl, .search-filter-services-lbl, .search-filter-all-lbl, .search-sort-services-lbl, .search-sort-content-lbl {
    font-size: 115%;
  }
  .search-results-count {
    font-size: 115%;
  }
  p.no-searchMsg {
    font-size: 115%;
  }
  ul.search-results-suggestions-list li {
    font-size: 115%;
    line-height: inherit;
  }
  .finesTabContainer .container input,
  .finesTabContainer .container input:first-child:last-child {
    min-width: inherit;
    border-radius: 8px !important;
    margin: 0 -2px 10px !important;
    width: 100% !important;
  }
  [dir=rtl] .finesTabContainer input,
  [dir=rtl] .tab-select {
    border-radius: 8px !important;
  }
  [dir=rtl] .finesTabContainer button {
    margin-right: 0;
  }
  .gallary-section .gallery .gallery-item {
    width: calc(50% - 10px);
  }
  .gallary-section .gallery .gallery-item {
    width: calc(50% - 10px);
  }
  body.page-template-dubaimore .dubai-more-box-bg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 20px;
  }
  .Pioneering_top_section.contact_get_in_touch.bunyan_form form .vc_col-sm-6 {
    width: 100%;
  }
  .TabsSectionAwards .vc_tta-panels .tabRowSec {
    width: 100%;
    margin: 0;
  }
  .bunyan-descreption_section h2 {
    font-size: 24px;
  }
  .bunyan_form .bunyan-form button.submit-form-btn {
    margin: 0 auto;
  }
  .sitemap_row_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sitemap_block {
    width: 50%;
  }
  .sitemap_row_section h2 {
    margin: 0;
    font-size: 1.3em;
  }
  .sitemap_row_section ul {
    margin: 0;
    padding: 10px 20px;
  }
  .conservation-section > div > div > div {
    display: block;
    top: 10px;
  }
  .conservation-section > div > div {
    display: block;
  }
  .sitesBuildingsContentWrap .vc_btn3-container {
    padding: 0 0 30px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .rasid-card-row.vc_custom_1694583298933 {
    background-color: transparent !important;
  }
  .rasid-card-row > div {
    width: 100%;
    margin: 0;
  }
  .rasid-card-row {
    display: block;
    width: 100%;
  }
  .rasid-form-contact-row > div {
    padding: 10px;
  }
  .rasid_form-error-color {
    padding: 25px !important;
  }
  .rasid-contact-us-card {
    padding: 20px;
    width: calc(100% - 20px);
    height: auto;
    margin: 0;
  }
  .director_msg .right {
    width: 100% !important;
  }
  .director_msg .right + .wst-mgmnt-bg-img {
    display: none !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 767px) {
  .subpage-right-content p img {
    max-height: 120px;
  }
  .search-top-panel {
    padding-left: 12px;
    padding-right: 12px;
  }
  .search-top-panel .search-top-input label.sr-only {
    display: none;
  }
  .search-top-input {
    padding-left: 5px;
  }
  .search-top-input input {
    border-left: 0;
  }
  button.search-voice {
    padding-right: 5px;
  }
  .search-results-panel {
    flex-direction: column;
    padding-left: 5px;
    padding-right: 5px;
  }
  .search-results-left, .search-results-right {
    width: 100%;
  }
  button.search-paging-pages-page {
    height: 40px;
    width: 40px;
    border-radius: 6px;
  }
  .search-results-result.search-result-Service.thin-bottom-border, .search-results-result.search-result-Content.thin-bottom-border, .search-results-result.search-result-Document.thin-bottom-border {
    flex-direction: column;
    position: relative;
  }
  .search-result-result-img {
    width: 100%;
    height: 100%;
    margin-right: 0;
  }
  .search-result-result-img img {
    width: 100%;
    max-width: 100%;
  }
  .search-result-result-info {
    padding-left: 0;
    padding-top: 1.5rem;
    width: 100%;
  }
  h2.search-results-result-title {
    margin: 0;
    font-size: 136%;
    padding-bottom: 10px;
  }
  p.search-results-result-desc {
    font-size: 120%;
    line-height: normal;
  }
  .search-results-result.search-result-Service.thin-bottom-border .search-result-result-info a,
  .search-results-result.search-result-Content.thin-bottom-border .search-result-result-info a,
  .search-results-result.search-result-Document.thin-bottom-border .search-result-result-info a {
    position: relative;
    right: 0;
    top: 0;
  }
  .search-results-result.search-result-Service.thin-bottom-border a,
  .search-results-result.search-result-Content.thin-bottom-border a,
  .search-results-result.search-result-Document.thin-bottom-border a {
    position: absolute;
    right: -15px;
    top: 5px;
  }
  *[dir=rtl] .search-results-result.search-result-Content.thin-bottom-border a.ajaxFancyBox,
  *[dir=rtl] .search-results-result.search-result-Service.thin-bottom-border a.ajaxFancyBox {
    left: -15px;
    top: -2px;
    right: inherit;
  }
  .category-filter-lr-container {
    flex-direction: column;
  }
  .category-filter.left-section {
    width: 100% !important;
  }
  .search-sort-page-size-bar {
    grid-template-columns: 1fr !important;
    position: relative;
  }
  .topSearchButtonSection {
    width: 100% !important;
  }
  .showperpage-dropdown {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .survery-links .wpb_wrapper .survey-box-holder-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .survey_services_container .image_with_title_small_boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  *[dir=rtl] .showperpage-dropdown {
    position: absolute;
    bottom: 0;
    right: inherit;
    left: 0;
  }
  .surveySectionWrapper .geodesy-text p {
    padding-right: 0px;
  }
  .surveySectionWrapper .surevy_section_tabs {
    padding-left: 0;
  }
  .surevy_section_tabs .vc_tta-panel-heading {
    background-color: var(--white);
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 15px;
  }
  .surevy_section_tabs .vc_tta-panel.vc_active .vc_tta-panel-heading {
    background-color: var(--primary);
    margin-bottom: -1px !important;
  }
  .surevy_section_tabs .vc_tta-panel {
    background-color: var(--white);
    border-radius: 4px;
    margin-bottom: 15px;
  }
  .surevy_section_tabs .vc_tta-panel.vc_active .vc_tta-panel-body {
    background-color: var(--white) !important;
    border-radius: 0 0 4px 4px !important;
    border: 0 !important;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.04);
  }
  .surevy_section_tabs .vc_tta-panel-title a {
    font-size: 18px !important;
    background-color: var(--white) !important;
    border-radius: 4px;
  }
  .surevy_section_tabs.vc_tta-panel.vc_active .vc_tta-panel-title a {
    font-size: 18px !important;
    background-color: var(--primary) !important;
    border-radius: 4px 4px 0 0;
    color: var(--white) !important;
  }
  .wildlife-con {
    padding-top: 20px;
  }
  .sub-page-with-tabs .wildlife-con.vc_tta.vc_tta-style-modern .vc_tta-tab {
    margin-left: 0 !important;
    margin-top: 0px !important;
  }
  .protected-area-details-section .vc_tta-panel-heading {
    background-color: var(--white) !important;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 15px !important;
    border: 0 !important;
    border-radius: 4px !important;
  }
  .protected-area-details-section.vc_tta-panel.vc_active .vc_tta-panel-heading {
    background-color: var(--primary);
    margin-bottom: -1px !important;
  }
  .protected-area-details-section .vc_tta-panel {
    background-color: var(--white);
    border-radius: 4px;
    margin-bottom: 15px;
  }
  .protected-area-details-section.vc_tta-panel.vc_active .vc_tta-panel-body {
    background-color: var(--white) !important;
    border-radius: 0 0 4px 4px !important;
    border: 0 !important;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 15px;
  }
  .protected-area-details-section .vc_tta-panel-title a {
    font-size: 18px !important;
    background-color: var(--white) !important;
    border-radius: 4px;
  }
  .protected-area-details-section.vc_tta-panel.vc_active .vc_tta-panel-title a {
    font-size: 18px !important;
    background-color: var(--primary) !important;
    border-radius: 4px 4px 0 0;
    color: var(--white) !important;
  }
  body.page-template-dubaimore .title br {
    display: none;
  }
  body.page-template-dubaimore .title {
    font-size: 34px;
  }
  .Pioneering_top_section p, .Pioneering_top_section li {
    font-size: 15px;
  }
  .body-content .menu li a, .wpb-js-composer .vc_tta.vc_general .vc_tta-tab a {
    font-size: 14px;
    padding: 10px 10px;
  }
  .dm_inner_pages_content .subpage-right-content {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .Pioneering_top_section .wpb_content_element table.report-table {
    margin-bottom: 0px;
  }
  .Pioneering_top_section h2 {
    font-size: 20px;
  }
  .TabsSectionAwards .wpb_content_element {
    margin: 0;
  }
  .search-results-right {
    width: 100%;
  }
  *[dir=rtl] .search-results-left {
    padding-left: 0;
  }
  .row-museum-experience.common_descreption.slider_section .slider_blck {
    padding: 20px 0px 40px 0px;
  }
  .plan-visit-row ul[class=ul-no-style] > li {
    padding: 10px 0;
    width: 100%;
    max-width: 50%;
  }
  .plan-visit-icons ul[class=ul-no-style] {
    margin: 10px 10px;
    max-width: 130px;
  }
  .row-main-faq.subrow-main-faq .faq-accordian-item .vc_tta-panel-body {
    padding: 0;
  }
  .row-main-faq.subrow-main-faq .faq-accordian-item .vc_tta-panel-body p {
    text-align: left;
  }
  #mue-section-slider .slick-arrow {
    width: 40px !important;
    height: 40px !important;
  }
  #mue-section-slider .slick-arrow.slick-prev {
    right: 54px !important;
  }
  #mue-section-slider .slick-arrow:before {
    font-size: 24px;
  }
  .sah-museum-collection-third-col .view_our_collection a {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 400;
    border-radius: 4px;
  }
  .row-museum-experience.common_descreption .wpb_content_element {
    margin: 0;
    padding-bottom: 10px;
  }
  [dir=rtl] .row-main-publication .col1-museum-collection {
    padding-right: 0;
    padding-left: 0px;
  }
  .page_inner_content h1.entry-title, .page_inner_content nav.navigation.post-navigation a {
    font-size: 16px;
  }
  .page_inner_content .entry-content p {
    margin: 0px;
    padding: 5px 0;
  }
  .page_inner_content nav.navigation.post-navigation a {
    font-size: 16px;
  }
  .page_inner_content nav.navigation.post-navigation {
    margin-bottom: 10px;
  }
  .awards-certificates .subpage-right-content,
  .page_inner_content article {
    max-width: 100%;
    margin-top: 20px;
  }
  .awards-certificates .about_descreption h2 {
    font-size: 28px;
    padding-bottom: 0;
  }
  p {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .TabsSectionAwards .vc_tta-panels .tabRowSec {
    width: 100%;
    border-radius: 4px;
    padding: 10px;
  }
  .TabsSectionAwards .vc_tta-panels .tabRowSec p strong {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .TabsSectionAwards .vc_tta-panels .tabRowSec .wpb_column {
    font-size: 14px;
  }
  .TabsSectionAwards h2 a {
    padding: 10px 10px !important;
    padding-top: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 10px !important;
    border: none !important;
    background-color: #F4F8FC !important;
    line-height: normal;
    font-size: 16px;
    border-radius: 0 !important;
  }
  .TabsSectionAwards .vc_tta-panels .tabRowSec {
    margin-top: 0;
  }
  .about_descreption {
    margin-bottom: 20px;
  }
  .category_block_part {
    padding: 5px 0;
  }
  .category_block_inner {
    padding: 10px;
  }
  .category_block_inner h3 {
    padding-bottom: 0;
    font-size: 25px;
    line-height: normal;
  }
  .top_imgae_section {
    text-align: center;
  }
  .top_imgae_section p {
    margin: 0;
    padding: 5px;
    font-size: 16px;
    line-height: 1.6;
  }
  .top_imgae_section .dbImg {
    max-width: 200px;
    margin: 0 auto 10px;
  }
  .content_middle_section .boxSlider {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
  }
  .download-apps-icons h2 {
    font-size: 25px;
    text-align: center;
    padding-bottom: 10px;
  }
  .download-apps-icons .download-apps-icons a {
    font-size: 16px;
    padding: 10px 10px 10px 45px;
  }
  .download-apps-icons .download-apps-icons a i.fab {
    left: 10px;
  }
  .dubai-municipality-app-inner {
    margin: 0;
    padding-bottom: 10px;
  }
  .useful-pics-links1 {
    padding-top: 20px;
  }
  .vc_column_container .bonyan-submenu {
    margin: 0px 0px 20px 0;
  }
  .bunyan_categories {
    display: block;
  }
  .intro span {
    position: static;
  }
  .page-template-bunyan .intro span {
    position: static;
    font-size: 20px !important;
    max-width: 100%;
    text-align: center;
    transform: inherit;
    display: block;
  }
  .bunyan-cat-two-block {
    grid-template-columns: repeat(2, 1fr);
  }
  .bunyan-cat-block-inner {
    font-size: 14px;
  }
  .bunyan_categories a {
    padding-left: 0;
  }
  .intro {
    margin: 10px 0;
  }
  .bunyan-cat-block {
    margin-bottom: 10px !important;
    padding: 100px 0px;
  }
  .bunyan-cat-blockcurrent-cat {
    margin-bottom: 10px !important;
    padding: 100px 0px;
  }
  .middle_section_row {
    display: inherit;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .row-museum-experience.common_descreption.slider_section .slick-slide a.saruq-section img {
    height: 150px !important;
  }
  .faq-accordian-item .vc_tta-panel-body {
    padding: 0 !important;
  }
  .sah-museum-collection-row .col1-museum-collection {
    padding-right: 0;
    padding-left: 0;
    width: 50%;
  }
  .sah-museum-collection-row .col2-museum-collection.sah-museum-collection-second-col {
    width: 50%;
  }
  .sah-museum-collection-row .sah-museum-collection-third-col {
    padding-left: 0;
    width: 100%;
    margin-top: 10px;
  }
  .img-title h2 {
    font-size: 36px;
  }
  .topSearchButtonSection .reducedpadding {
    justify-content: flex-start;
  }
  .discoverDubaiButton {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .carousel-layers {
    top: 180px;
  }
  .homeSearch {
    top: 390px;
  }
  .serviceCardHome.vc_col-sm-3 {
    width: 33.33%;
    padding: 0 5px;
  }
  .serviceCardHome .img-icon {
    padding: 0 16px;
  }
  .serviceCardHome a:before {
    right: -10px;
  }
  .serviceCardHome p {
    margin: 0;
    line-height: 1.2;
  }
  .serviceCardHome a, .wpb-js-composer .vc_tta.vc_general .vc_active .serviceCardHome a {
    margin-right: 10px;
  }
  .serviceCardHome a span,
  .wpb-js-composer .vc_tta.vc_general .vc_active .serviceCardHome a span {
    display: none;
  }
  .success-stories .vc_col-sm-2 {
    display: none;
  }
  .success-stories .vc_col-sm-8 {
    width: 100%;
  }
  .dubai-more + .container > .vc_col-sm-6 {
    width: 100% !important;
  }
  .dubai-more-box {
    padding: 15px 25px;
    min-height: inherit;
  }
  .dm-more-container .vc_col-sm-6 {
    width: 100%;
  }
  .txtoverlayImg {
    max-height: inherit;
  }
  .check-pay-content {
    width: 100%;
  }
  .check-pay-content-child {
    display: block;
  }
  .tab-content {
    width: 100%;
    padding-top: 10px;
  }
  .tab-select {
    width: 100%;
    border-radius: 8px;
  }
  .finesTabContainer button {
    width: 290px;
    margin-top: 0px;
    max-width: 290px;
    margin-left: 0;
  }
  .check-pay-tabs, .building-tabs {
    justify-content: center;
  }
  .pay-instant-header.pay-header-tabs {
    position: relative;
    margin-bottom: 10px;
    top: 0;
  }
  .makingDubaiColoumWrappers .vc_col-sm-3 {
    width: 50%;
    padding: 10px 10px;
  }
  .makingDubaiMainWraper::before {
    height: calc(35% + 100px);
  }
  .makingDubaiMainTitle {
    margin: 40px 0px;
  }
  .makingDubaiMainTitle h2 {
    font-size: 36px;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .map_section_section .qr_code_block {
    display: none;
  }
  .sah-museum-collection-row .col1-museum-collection {
    width: 100%;
  }
  .sah-museum-collection-row .col2-museum-collection.sah-museum-collection-second-col {
    width: 50%;
  }
  .sah-museum-collection-row .col3-museum-collection.sah-museum-collection-third-col {
    width: 50%;
    padding-left: 10px;
    padding-top: 0;
  }
  body .sah-museum-collection-third-col > div > div {
    padding: 19% 10px;
  }
  .row-museum-experience.common_descreption.slider_section .slider_blck {
    padding-top: 0;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs {
    width: 100%;
    max-width: inherit;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a {
    padding: 70px 15px 20px !important;
    min-width: inherit;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active a,
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active a:hover,
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab a:hover {
    padding: 40px 15px 30px !important;
    min-width: inherit;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-title-text {
    margin: 5px 0 0 0 !important;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tabs-list {
    flex-wrap: wrap;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab {
    width: calc(25% - 5px);
    margin-right: 0px !important;
  }
  .wpb-js-composer .vc_tta-tabs.servTabs .vc_tta-tab.vc_active a {
    min-width: inherit;
  }
  .feedback-section .feedback-btn-container {
    padding: 0;
  }
  .wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list li {
    width: auto;
  }
  .wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list li a {
    line-height: 1;
    padding: 15px 10px !important;
  }
  .dm-numbers p {
    height: 40px;
  }
  .dm-app-home .vc_single_image-wrapper img {
    min-width: 310px;
    position: relative;
    left: -60px;
  }
  .body-content .menu {
    flex-direction: row;
  }
  .beachFinderInnerPagesCol .body-content .menu li a {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 1400px) {
  .sah-museum-collection-row .col1-museum-collection {
    padding-right: 10px;
    padding-left: 10px;
  }
  .post-title a.title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .content-box .post-excerpt {
    font-size: 16px;
  }
  .row-museum-experience.common_descreption.slider_section {
    padding: 0 15px;
  }
  .row-museum-experience.common_descreption.slider_section .slider_blck {
    padding: 80px 0px;
  }
  .block_section {
    width: 50%;
    margin: 10px 0;
  }
  .row-main-faq.subrow-main-faq {
    padding: 20px 0%;
  }
  .row-museum-experience.common_descreption.slider_section {
    padding: 0 5%;
  }
  .plan-visit-right.right_discover_dubai {
    padding: 40px;
  }
  .sah-museum-collection-row .sah-museum-collection-second-col h2.wpb_singleimage_heading, .common_descreption h2, .row-main-publication .col-right-publication h2 {
    font-size: 20px;
  }
  body .sah-museum-collection-third-col > div > div {
    padding: 54px 20px;
  }
  .subrow-main-faq .wpb_content_element h2 {
    font-size: 24px;
  }
  .discoverDubaiImageSection .wpb_content_element figure img {
    max-height: 600px;
  }
}
@media (max-width: 1100px) {
  body.home .dda-header-container {
    z-index: 100000;
    background: transparent;
  }
  .dda-sub-header.dda-sub-header--normal {
    background: var(--white) !important;
  }
  .dda-header-container,
  .dda-sub-header {
    left: 0;
  }
  body.home .dda-header-container.whiteBar .icon-menu,
  body.home .dda-header-container.whiteBar .dda-sub-header__mobile-action i,
  body.home .dda-sub-header.dda-sub-header--normal .icon-menu,
  body.home .dda-sub-header.dda-sub-header--normal .dda-sub-header__mobile-action i {
    color: #3B3F54 !important;
  }
  body.home .dda-header-container.whiteBar {
    height: 80px;
  }
  body.home .dda-sub-header__logo {
    filter: brightness(100);
  }
  .dda-sub-header.dda-sub-header--normal .dda-sub-header__logo {
    filter: none;
  }
  body.home .dda-header-container.whiteBar .dda-sub-header__logo {
    filter: none;
  }
  .serivces-tabs-row .home-section-title,
  .serivces-tabs-row .home-section-descr,
  .serviceCards .serviceCardHome,
  .serivces-tabs-row .vc_tta-title-text,
  .dubai-more .home-section-title,
  .dubai-more .home-section-descr,
  .dubai-more-box img,
  .dubai-more-box h3,
  .dubai-more-box p,
  .feedback-section h2,
  .feedback-section p,
  .feedback-section a,
  .pay-instant-header h3,
  .pay-instant-header p,
  .pay-instant-header input,
  .pay-instant-header button,
  .dm-num-title,
  .dm-numbers.container p,
  .dm-numbers.container h2,
  .success-stories-item-image img,
  .success-stories-content h2,
  .success-stories-content h4,
  .success-stories-content p,
  .success-stories-content .posts-link,
  .dm-app-home img,
  .dm-app-home h2,
  .dm-app-home p,
  .app-links img,
  .news-events-list .home-section-title,
  .news-events-list .home-section-descr,
  .news-events-list h4,
  .news-events-list p,
  .news-events-list .view-more-news a {
    visibility: visible;
    animation: none !important;
    transition-property: none !important;
  }
  .home .home-slider .carousel-cell video {
    object-fit: cover;
  }
  #success_stories-slider .flickity-prev-next-button.previous {
    left: 0;
  }
  #success_stories-slider .flickity-prev-next-button.next {
    right: 0;
  }
  .home .home-slider {
    height: 580px;
  }
  .app-links {
    flex-direction: row;
    margin-bottom: 40px;
    display: flex;
  }
  .dm-app-home .app-links a img {
    max-width: 135px;
  }
}
@media screen and (max-width: 1024px) {
  .about_img_block .vc_col-sm-3 {
    padding-left: 0;
    width: 100%;
    padding-top: 10px;
  }
  .about_img_block .vc_col-sm-9 {
    width: 100%;
  }
  .useful-pics-links {
    margin-bottom: 25px;
  }
  .bunyan-cat-two-block {
    grid-template-columns: repeat(1, 1fr);
  }
  .bunyan-cat-two-block:nth-child(5) {
    grid-row: span 2;
  }
  .bunyan-partner-offer {
    width: calc(50% - 10px);
    padding: 10px;
    margin: 10px 0;
  }
  .dm_inner_pages_content {
    margin-top: 20px;
  }
  .TabsSectionAwards .vc_tta-panel-body {
    margin-top: 0;
  }
  .TabsSectionAwards li a {
    font-size: 14px;
    padding: 10px 10px !important;
  }
  .awards-certificates .subpage-right-content, .page_inner_content article {
    max-width: calc(100% - 270px);
  }
  .awards-certificates .about_descreption h2 {
    font-size: 32px;
    padding-bottom: 0;
  }
  .awards-certificates .about_descreption p {
    font-size: 16px;
    line-height: 1.6;
  }
  .about_descreption {
    margin-bottom: 10px !important;
  }
  .TabsSectionAwards .vc_tta-panels .tabRowSec {
    width: calc(50% - 10px);
    padding: 10px;
    margin: 0px 0;
  }
  .TabsSectionAwards .vc_tta-panels .tabRowSec p strong {
    font-size: 16px;
  }
  .TabsSectionAwards .vc_tta-panels .tabRowSec .wpb_column {
    font-size: 14px;
  }
  /* ---- resposnive css start ubai-municipality-app Start ------ */
  .middle_section_block, .top_image_section {
    width: 100%;
  }
  .useful-pics-links1 {
    padding-top: 20px;
  }
  .content_middle_section .boxSlider {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
  }
  /* ---- resposnive css start ubai-municipality-app End ------ */
  .bunyan_form .bunyan-form label {
    width: calc(100% - 10px);
  }
  .bunyan-descreption_section ul {
    margin: 10px 0px;
  }
  .bunyan-partner-offer .bunyan-partner-offer-cat {
    font-size: 14px;
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .bunyan-partner-offer .bunyan-partner-offer-percent {
    width: 70px;
    height: 70px;
    font-size: 16px;
    padding: 10px;
    border-radius: 6px;
  }
  .bunyan-full-width-header .search_box {
    max-width: 50%;
    padding: 10px 15px;
  }
  .bunyan-full-width-header input {
    width: 70%;
  }
  .bunyan-full-width-header button:before,
  .bunyan-full-width-header lable.topSortBylable {
    font-size: 16px;
  }
  .bunyan-full-width-header .select_box {
    max-width: 160px;
  }
  .bunyan-full-width-header h2.bunyan-full-width-header-text {
    margin: 10px 0;
    font-size: 16px;
  }
  .page-template-bunyan .intro span {
    font-size: 32px !important;
  }
  .bunyan-cat-two-block:nth-child(7) {
    grid-column-end: span 1;
  }
  .download_makani_app .row-content-middel {
    max-width: 100%;
  }
  .download_makani_app .download_app {
    max-width: 280px;
    margin: 0 auto;
  }
  .download_makani_app .row-download-image-left {
    margin: 0 auto !important;
  }
  .planvisit-inner-row-img .second-col {
    position: relative;
    max-width: 100%;
    bottom: -20px;
  }
  .planvisit-inner-row-img .second-col .vc_column-inner {
    padding: 0 !important;
  }
  .download_makani_app .download_app .row-googlepay-image,
  .download_makani_app .download_app .row-appstore-image {
    margin: 0;
  }
  .planvisit-inner-row-guide-tour .vc_column-inner > .wpb_wrapper {
    top: 20px !important;
  }
}
@media (min-width: 1025px) and (max-width: 1400px) {
  aside#secondary {
    width: 280px;
  }
  .dm_inner_pages_content .subpage-right-content {
    max-width: calc(100% - 300px);
  }
  .TabsSectionAwards .vc_tta-panel-body {
    margin-top: 5px;
    gap: 5px;
  }
  .TabsSectionAwards .vc_tta-panels .tabRowSec {
    width: calc(33.33333% - 5px);
    margin: 5px 0;
    padding: 10px;
  }
  .TabsSectionAwards .vc_tta-panels .tabRowSec p strong {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 768px) {
  .dm-app-home .list-post {
    flex-direction: row;
  }
  .dm-app-home .vc_single_image-wrapper img {
    left: -40px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .contact-details, .work-time {
    width: 44%;
  }
  .survery-links .wpb_wrapper .survey-box-holder-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 991px) and (max-width: 1100px) {
  .wpb-js-composer .vc_tta.vc_general.finesTab .vc_tta-tabs-list li a {
    padding: 14px 10px !important;
  }
  .dubai-more-box {
    padding: 60px 15px 30px;
    min-height: 300px;
  }
  .dubai-more-box:hover {
    padding: 50px 30px 30px;
  }
  .wpb_single_image.vc_align_left.txtoverlayImg,
  .wpb_single_image.vc_align_left.txtoverlayImg * {
    min-height: 615px;
    object-fit: cover;
    max-height: 615px;
  }
}
@media (min-width: 1100px) and (max-width: 1400px) {
  .serviceCardHome a,
  .wpb-js-composer .vc_tta.vc_general .vc_active .serviceCardHome a {
    margin-right: 20px;
  }
  .single-card:hover .inner-flex-link {
    width: 110%;
  }
}
@media screen and (max-width: 576px) {
  .display-posts-pagination .page-numbers {
    font-size: 16px;
    padding: 11px 11px;
  }
  .display-posts-listing span.page-numbers.current {
    padding: 10px 14px;
  }
  .projectPages h2, .projectPages h3, .projectPages p {
    font-size: 16px;
  }
  .projectPages .related h2 {
    font-size: 32px;
  }
  .projectPages p {
    margin: 0 0 12px 0;
  }
  .contact-pg-title h2 {
    font-size: 32px;
  }
  .contact-pg-title ul li {
    font-size: 16px;
  }
  .headOfficeTitle h2 {
    font-size: 20px;
    margin: 0;
  }
  .discoverDubaiInnerContent h2 {
    font-size: 24px;
    padding-bottom: 0 !important;
  }
  .discoverDubaiInnerContent p {
    font-size: 16px;
    margin-top: 8px;
  }
  .newsContentWrapper h2,
  .new_faq .post-title strong,
  .new_faq .vc_tta-title-text,
  .beachFinderMainWrap .mainTitle h2 {
    font-size: 16px;
  }
  .newsFaqwrap .category-filter-section {
    padding: 15px 25px;
  }
  .faq-left {
    padding-bottom: 10px !important;
  }
  .faq-left h3 {
    margin: 0px 0 5px 0;
  }
  .timing-block h3 {
    margin-bottom: 20px;
  }
  .guideline-container {
    margin: 0;
  }
  .rasid-card-row {
    grid-template-columns: 1fr !important;
  }
  .rasid-card {
    height: auto !important;
    width: 100%;
  }
  .partner-images {
    align-items: center;
  }
  .partner-images img {
    max-width: 50% !important;
    padding: 5px !important;
  }
  .beachFinderInnerPagesCol .body-content .menu li a {
    font-size: 18px !important;
  }
  .makingDubaiMainTitle {
    margin: 25px 0px;
  }
  .makingDubaiMainTitle h2 {
    font-size: 30px;
  }
  .makingDubaiMainWraper::before {
    height: calc(13% + 100px);
  }
}
@media screen and (max-width: 480px) {
  .showperpage-dropdown {
    bottom: -25px !important;
    display: none !important;
  }
  .survery-links .wpb_wrapper .survey-box-holder-row {
    grid-template-columns: 1fr;
  }
  .survey_services_container .image_with_title_small_boxes {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 360px) {
  .planvisit-inner-row-guide-tour .vc_column-inner > .wpb_wrapper {
    top: 0;
  }
  .planvisit-main-row .planvisit-main-row-360-view-buttons .thdeg-but {
    gap: 35px;
  }
  .planvisit-inner-row-guide-tour .vc_column-inner > .wpb_wrapper {
    flex-wrap: wrap;
  }
  .planvisit-inner-row-img1 .vc_col-sm-6 {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .txtOverlay h3 {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  #searchmaincontainer.expanded {
    width: 95%;
  }
  body.page-template-dubaimore .dubai-more-box-bg {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-bottom: 20px;
  }
  body.page-template-dubaimore .dubai-more-box {
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1400px) {
  .success-stories-item-image img {
    max-height: 420px;
  }
}
@media (min-width: 1100px) {
  .home .carousel-layers {
    top: 210px;
  }
  .homeSearch {
    top: 420px;
  }
}
@media (max-width: 768px) {
  .block_section {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .homeSearch {
    top: 420px;
  }
}
/* for zooming devices */
@media (max-width: 400px) and (max-height: 200px) {
  .dda-footer, .dda-side-nav__footer {
    position: relative;
  }
  .dda-side-nav div.pa-8 {
    padding-top: 0;
  }
  .dda-side-nav {
    top: 60px;
  }
  table {
    width: 100% !important;
    border-collapse: collapse;
  }
  th, td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }
  tr {
    display: block;
    margin-bottom: 10px;
  }
  a {
    display: inline-block;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 80%;
  }
  ul {
    padding-left: 20px;
  }
}/*# sourceMappingURL=main.css.map */