
@font-face {
  font-family: Museo-Sans;
  src: url('../fonts/MYRIADPROREGULAR.woff');
}
@font-face {
  font-family: g100;
  src: url('../fonts/GE_SS_Two_Light.otf');
}
@font-face {
  font-family: m100;
  src: url('../fonts/MuseoSans-100.woff');
}
@font-face {
  font-family: m300;
  src: url('../fonts/MuseoSans-300.woff');
}
@font-face {
  font-family: m500;
  src: url('../fonts/MuseoSans-500.woff');
}
@font-face {
  font-family: m700;
  src: url('../fonts/MuseoSans-700.woff');
}
@font-face {
  font-family: m900;
  src: url('../fonts/MuseoSans-900.woff');
}

@font-face {
  font-family: g300;
  src: url('../fonts/GE_SS_Two_Light.otf')
}

@font-face {
  font-family: g500;
  src: url('../fonts/GE_SS_Two_Light.otf')
}

@font-face {
  font-family: g700;
  src: url('../fonts/GE-SS-Two-Bold.otf')
}

@font-face {
  font-family: g900;
  src: url('../fonts/GE-SS-Two-Bold.otf')
}


:root {
  --main-color: #B3982B;
  --secondary-color: #4b7229;
  --body-color: #000;
  --soft-white: #f8f1e2;
  --blue: #51ABED;
  --main-font: Museo-Sans;
  --secondary-font: Museo-Sans;
  --body-font-size: 15px;
  --section-padding: 82px;
  --header-height:73px;
  --container-width:1256px;
  --main-radius:0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}

body {
  font-family: var(--main-font);
  font-size: var(--body-font-size);
  color: var(--body-color);
  font-weight: 400;
}
body.lang-ar {
  direction: rtl;
  text-align: right;
}
.f-300 {
  font-weight: 300;
}
.f-400 {
  font-weight: 400;
}
.f-500 {
  font-weight: 500;
}
.f-600 {
  font-weight: 600;
}
.bold {
  font-weight: bold;
}
.font-2 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none;
}
.container,.container-big {
  max-width: 1256px;
  width: 95%;
  margin: 0 auto;
}
.container-big {
  max-width: 1248px;
}
.list-none {
  padding: 0;
}
ul,
figure {
  margin: 0;
}
.list-none li {
  list-style: none;
}
.d-flex {
  display: flex;
  display: -webkit-flex;
}
.row-reverse {
  flex-direction: row-reverse;
}
.d-block {
  display: block;
}

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

.flex-start {
  justify-content: flex-start;
}
.flex-end {
  justify-content: end;
}
.shrink-0 {
  flex-shrink: 0;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.normal {
  text-transform: none;
}
button {
  cursor: pointer;
}
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  text-transform: none;
}
button,input,textarea,select {
  font-family: var(--main-font);
  font-size: var(--body-font-size);
}
.line_1 {
  line-height: 1;
}
.line_1-5 {
  line-height: 1.5;
}
.center {
  text-align: center;
}
.align {
  text-align: inherit;
}
.text-reverse {
  text-align: right;
}
.lang-ar .text-reverse {
  text-align: left;
}
.justify {
  text-align: justify;
}
.pre-line {
  white-space: pre-line;
}
.flex-1 {
  flex: 1;
}
.align-center {
  align-items: center;
}
.align-self {
  align-self: baseline;
}
.align-end {
  align-items: flex-end;
}
.flex-all {
  display: flex;
  align-items: center;
  justify-content: center;
}

.unicode {
  unicode-bidi: plaintext;
}
.underline {
  text-decoration: underline;
}

:focus {
  outline: none;
}

.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: end;
}
.space-between {
  justify-content: space-between;
}
.space-around {
  justify-content: space-around;
}

.overflow-hidden {
  overflow: hidden;
}

.trans,.hover-color {
  transition: 0.4s;
}
.hover-color:hover {
  color: var(--main-color);
}
.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  white-space: nowrap;
}
.main-color {
  color: var(--main-color);
}
.secondary-color {
  color: var(--secondary-color);
}
.blue {
  color: var(--blue);
}
.bg-black {
  background-color: black;
}
.bg-transparent {
  background-color: transparent;
}
.bg-main {
  background-color: var(--main-color);
}
.bg-secondary {
  background-color: var(--secondary-color);
}
.bg-blue {
  background-color: var(--blue);
}
.bg-soft {
  background-color: var(--soft-white);
}
.bg-body-color {
  background-color: var(--body-color);
}
.body-color {
  color: var(--body-color);
}
.soft-white {
  color: var(--soft-white);
}
.black {
  color: #000;
}
.white {
  color: #fff;
}
.white-i {
  color: #fff!important;
}
.bg-white {
  background-color: #fff;
}
.bg-cover {
  background-size: cover !important;
}
.object-fit {
  object-fit: cover;
}
.h-100 {
  height: 100%;
}
.h-full {
  height: 100vh;
}
.w-20 {
  width: 20%;
}
.w-30 {
  width: 30%;
}
.w-32 {
  width: 32%;
}
.w-35 {
  width: 35%;
}
.w-40 {
  width: 40%;
}
.w-43 {
  width: 43%;
}
.w-45 {
  width: 45%;
}
.w-50 {
  width: 50%;
}
.w-53 {
  width: 53%;
}
.w-58 {
  width: 58%;
}
.w-80 {
  width: 80%;
}
.w-85 {
  width: 85%;
}
.w-100 {
  width: 100%;
}
.w-100-i {
  width: 100%!important;
}

.mx-auto {
  width: 80%;
}
.relative {
  position: relative;
}
.intl-tel-input {
  width: 100%;
}
.intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
  color: #000;
}
.top-2 {
  position: relative;
  top: 2px;
}
.section-padding {
  padding-block: var(--section-padding);
}
.section-padding-t {
  padding-top: var(--section-padding);
}
.section-padding-b {
  padding-bottom: var(--section-padding);
}
.section-padding-x {
  padding-inline: var(--section-padding);
}
.p-section-padding {
  padding: var(--section-padding);
}
.p-0 {
  padding: 0px;
}
.p-16 {
  padding: 16px;
}
.p-32 {
  padding: 32px;
}
.py-8 {
  padding-block: 8px;
}
.py-15 {
  padding-block: 15px;
}
.py-25 {
  padding-block: 25px;
}
.py-30 {
  padding-block: 30px;
}
.px-15 {
  padding-inline: 15px;
}
.px-25 {
  padding-inline: 25px;
}
.px-30 {
  padding-inline: 30px;
}
.pt-5 {
  padding-top: 5px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-25 {
  padding-top: 25px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-5 {
  padding-bottom: 5px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-100 {
  padding-bottom: 100px;
}
.mx-auto  {
  margin-inline: auto;
}
.mt-section-padding {
  margin-top: var(--section-padding);
}
.mt-15 {
  margin-top: 15px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-section-padding {
  margin-bottom: var(--section-padding);
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-7 {
  margin-bottom: 7px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-100 {
  margin-bottom: 100px;
}
.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
  display: grid;
  gap: 25px;
}

.grid-1 {
  grid-template-columns: fit-content(50%);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gap-5 {
  gap: 5px;
}
.gap-7 {
  gap: 7px;
}
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}
.gap-30 {
  gap: 30px;
}
.gap-35 {
  gap: 35px;
}
.gap-40 {
  gap: 40px;
}
.gap-50 {
  gap: 50px;
}
.gap-section-padding {
  gap: var(--section-padding);
}
.row-gap-30 {
  row-gap: 30px;
}
.lang-ar .flip-ar, .flip {
  transform: scaleX(-1);
}
.pointer-none {
  pointer-events: none;
}
.pointer,[photo-swipe] {
  cursor: pointer;
}
.font-10 {
  font-size: 10px;
}
.font-12 {
  font-size: 12px;
}
.font-14 {
  font-size: 14px;
}
.font-15 {
  font-size: 15px;
}
.font-16 {
  font-size: 16px;
}
.font-17 {
  font-size: 17px;
}
.font-18 {
  font-size: 18px;
}
.font-20 {
  font-size: 20px;
}
.font-22 {
  font-size: 22px;
}
.font-24 {
  font-size: 24px;
}
.font-30 {
  font-size: 30px;
}
.font-32 {
  font-size: 32px;
}
.font-34 {
  font-size: 34px;
}
.font-35 {
  font-size: 35px;
}
.mo{
  display: none;
}
.overflow-hidden {
  overflow: hidden;
}
.one-line,
.three-line,
.four-line,
.five-line,
.two-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.one-line {
  -webkit-line-clamp: 1;
}
.two-line {
  -webkit-line-clamp: 2;
}
.three-line {
  -webkit-line-clamp: 3;
}
.four-line {
  -webkit-line-clamp: 4;
}
.five-line {
  -webkit-line-clamp: 5;
}
.full-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.opacity-0 {
  opacity: 0;
}
.radius-0 {
  border-radius: 0!important;
}
.radius {
  border-radius: var(--main-radius);
}
.radius-4 {
  border-radius: 4px;
}
.radius-5 {
  border-radius: 5px;
}
.radius-8 {
  border-radius: 8px;
}
.radius-30 {
  border-radius: 30px;
}
.rounded {
  border-radius: 50%;
}
.border {
  border: 1px solid #e6e6e6;
}
.border-0 {
  border: 0;
}
.modal,.main-menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  visibility: hidden;
  pointer-events: none;
}
.modal-half-bottom {
  display: flex;
  align-items: end;
}
.modal-half-bottom .modal-body {
  width: 100%;
  bottom: -100%;
  border-radius: 8px 8px 0 0;
  max-height: 60vh;
  overflow-y: auto;
}
.modal-half-bottom.active .modal-body {
  bottom: 0;
}
.modal.active,.main-menu-mobile.active {
  visibility: visible;
  pointer-events: initial;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  cursor: pointer;
  z-index: 0;
  opacity: 0;
  
}
.modal.active .modal-overlay {
  animation: modal-overlay .4s 1 forwards ease;
}
.modal.modal-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.modal-center .modal-body {
  margin-inline: auto;
}
@keyframes modal-overlay {
  to {
    opacity: 0.3;
  }
}
.modal .modal-body {
  transition: .4s;
}
.side-modal .modal-body{
  width: 658px;
  left: -100%;
  height: 100%;
  max-width: 100%;
}
.corner-modal {
  display: flex;
  align-items: end;
}
.corner-modal .modal-body {
  width: 379px;
  top: 100%;
}
.corner-modal.active .modal-body {
  top: 0;
}
.lang-ar .side-modal .modal-body {
  left: auto;
  right: -100%;
}
.side-modal.active .modal-body{
  left: 0;
}
.lang-ar .side-modal.active .modal-body{
  left: auto;
  right: 0;
}
[accordion-item] [acc-body] {
  display: grid;
  grid-template-rows: 0fr;
  transition: .4s ;
}
[accordion-item].active [acc-body] {
  grid-template-rows: 1fr;
}
[accordion-item] [acc-body] > div {
  overflow: hidden;
}
[data-toggle-tab]:not(.active) {
  display: none;
}
input.no-arr::-webkit-inner-spin-button,
input.no-arr::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  text-align: center;
}
.z-1 {
  z-index: 1;
}
.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .grid-3-t {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2-t {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1-t {
    grid-template-columns: repeat(1, 1fr);
  }
  .do-only {
    display: none!important;
  }
  .to {
    display: block!important;
  }
}
@media (max-width: 767px) {
  :root {
    --section-padding: 32px;
  }
  .container,
  .container-p, 
  .container-small {
    max-width: inherit;
    width: 100%;
    padding-left: 24px!important;
    padding-right: 24px!important;
    margin-left: auto;
    margin-right: auto;
  }
  .container-left-p {
    margin-inline-start: auto;
    padding-inline: 24px;
    max-width: 100%;
    padding-inline-end: 10px;
  }
  .container-right-p {

    margin-inline-end: auto;
    padding-inline: 24px;
    max-width: 100%;
    padding-inline-end: 10px;
  }
  .grid-1-p,
  .grid-2-p,
  .grid-3-p {
    display: grid;
  }
  .grid-1-p {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2-p {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-p {
    grid-template-columns: repeat(3, 1fr);
  }
  .mo{
    display: block !important;
  }
  .do{
    display: none !important;
  }
  .flex-p {
    display: flex;
  }
  .wrap-p {
    flex-wrap: wrap;
  }
  .center-p {
    text-align: center;
  }
  .justify-center-p {
    justify-content: center;
  }
  .column-reverse-p {
    flex-direction: column-reverse;
  }
  .row-reverse-p {
    flex-direction: row-reverse;
  }
  .full-p {
    max-width: 100%;
    padding-left: 0!important;
    padding-right: 0!important;
    width: 100%!important;
  }
  .flex-column-p {
    flex-direction: column;
    align-items: unset;
  }
  .d-flex-p {
    display: flex;
  }
  .space-between-p {
    justify-content: space-between;
  }
  .justify-end-p {
    justify-content: end;
  }
  .justify-start-p {
    justify-content: start;
  }
  .f-400-p {
    font-weight: 400;
  }
  .font-12-p {
    font-size: 12px!important;
  }
  .font-14-p {
    font-size: 14px!important;
  }
  .font-16-p {
    font-size: 16px!important;
  }
  .font-18-p {
    font-size: 18px!important;
  }
  .font-20-p {
    font-size: 20px!important;
  }
  .font-22-p {
    font-size: 22px!important;
  }
  .font-32-p {
    font-size: 32px!important;
  }
  .font-48-p {
    font-size: 48px;
  }
  .modal.active, .main-menu-mobile.active {
    pointer-events: initial;
  }
  .main-menu-mobile .menu-wrapper {
    width: 100%;
  }
  .main-menu-mobile .menu-upper-part {
    overflow-y: auto;
  }
  .align-center-p {
    align-items: center;
  }
  .align-start-p {
    align-items: start;
  }
  .w-100-p {
    width: 100%!important;
  }
  .p-0-p {
    padding: 0;
  }
  .p-15-p {
    padding: 15px;
  }
  .p-24-p {
    padding: 24px;
  }
  .px-15-p {
    padding-inline: 15px;
  }
  .px-p {
    padding-inline: 24px;
  }
  .section-padding-t-p {
    padding-top: var(--section-padding);
  }
  .section-padding-b-p {
    padding-bottom: var(--section-padding);
  }
  .section-padding-p {
    padding-block: var(--section-padding); 
  }
  .py-0-p {
    padding-block: 0px;
  }
  .py-15-p {
    padding-block: 15px;
  }
  .py-30-p {
    padding-block: 30px;
  }
  .pt-0-p {
    padding-top: 0px;
  }
  .pt-10-p {
    padding-top: 10px;
  }
  .pt-15-p {
    padding-top: 15px;
  }
  .pt-20-p {
    padding-top: 20px;
  }
  .pt-25-p {
    padding-top: 25px;
  }
  .pt-30-p {
    padding-top: 30px;
  }
  .pt-50-p {
    padding-top: 50px;
  }
  .pt-65-p {
    padding-top: 65px;
  }
  .pt-100-p {
    padding-top: 100px;
  }
  .pb-0-p {
    padding-bottom: 0px;
  }
  .pb-15-p {
    padding-bottom: 15px;
  }
  .pb-25-p {
    padding-bottom: 25px;
  }
  .pb-30-p {
    padding-bottom: 30px;
  }
  .pb-40-p {
    padding-bottom: 40px!important;
  }
  .pb-50-p {
    padding-bottom: 50px!important;
  }
  .pb-65-p {
    padding-bottom: 65px;
  }
  .mt-20-p {
    margin-top: 20px;
  }
  .mb-0-p {
    margin-bottom: 0;
  }
  .mb-5-p {
    margin-bottom: 5px;
  }
  .mb-10-p {
    margin-bottom: 10px;
  }
  .mb-15-p {
    margin-bottom: 15px;
  }
  .mb-20-p {
    margin-bottom: 20px;
  }
  .mb-30-p {
    margin-bottom: 30px;
  }
  .mb-40-p {
    margin-bottom: 40px;
  }
  .mb-50-p {
    margin-bottom: 50px;
  }
  .gap-0-p {
    gap: 0;
  }
  .gap-3-p {
    gap: 3px;
  }
  .gap-7-p {
    gap: 7px;
  }
  .gap-10-p {
    gap: 10px;
  }
  .gap-15-p {
    gap: 15px;
  }
  .gap-20-p {
    gap: 20px;
  }
  .gap-25-p {
    gap: 25px;
  }
  .gap-30-p {
    gap: 30px;
  }
  .gap-40-p {
    gap: 40px;
  }
  .gap-50-p {
    gap: 50px;
  }
  .gap-60-p {
    gap: 60px;
  }
  .gap-65-p {
    gap: 65px;
  }
  .br-0-p br {
    display: none;
  }
  .border-0-p {
    border: 0!important;
  }
  .scroll-80-p::-webkit-scrollbar-thumb,
  .scroll-80-p::-webkit-scrollbar-track,
  .scroll-80-p::-webkit-scrollbar,
  .scroll-90-p::-webkit-scrollbar-thumb,
  .scroll-90-p::-webkit-scrollbar-track,
  .scroll-90-p::-webkit-scrollbar,
  .scroll-x-p::-webkit-scrollbar-thumb,
  .scroll-x-p::-webkit-scrollbar-track,
  .scroll-x-p::-webkit-scrollbar,
  .scroller-0-p::-webkit-scrollbar-thumb,
  .scroller-0-p::-webkit-scrollbar-track,
  .scroller-0-p::-webkit-scrollbar {
    display: none;
  }
  .scroll-80-p,
  .scroll-90-p, .scroll-x-p {
    display: flex;
    overflow-x: auto;
    gap: 25px;
  }
  .scroll-80-p > * {
    max-width: 80%;
    width: 80%;
    min-width: 80%;
  }
  .scroll-90-p > * {
    max-width: 90%;
    width: 90%;
    min-width: 90%;
  }
  .overflow-hidden-p {
    overflow: hidden;
  }
  .has-childs > a:after {
      content: "";
      background: url(../images/chevron-down-black.svg) no-repeat;
      width: 24px;
      height: 24px;
      transition: 0.4s;
      background-size: contain;
  }
}

/*outlets Design*/
.outlet-list-content{
  padding-bottom:80px;
}

.outlet-list-item{

}

.outlet-list-item:first-child a{
  padding-top: 0 !important;
}

.outlet-list-item a {
  padding: 13px 0 !important;
  display: block;
}

.outlet-list-item .row{
  margin-right: -15px;
  margin-left: -15px;
}

.outlet-list-item .row:after,.outlet-list-item .row:before{
  display: table;
  content: " ";
}

.outlet-list-item .list-content{
  /*width: 58.33333333%;*/
}

.outlet-list-item .list-content span {
  color: #78955f;
  font: 20px m300;
}

.outlet-list-item .list-content img {
  vertical-align: bottom;
  margin-right: 20px;
  margin-bottom: 3px;
}

.outlet-list-item .button-content{
  /*width: 41.66666667%;*/
}

.outlet-list-item .button-content .btn-link{
  font-size: 20px;
}

.pull-right{
  float: right;
}

.directory-btn{
  background: #78955f;
  float: right;
}

.directory-btn:hover, .download-btn {
  background: #b1972a;
}


.directory-btn, .download-btn {
  padding: 7px 30px !important;
  font-size: 13px;
  border: 0;
  color: #fff;
  display: block;
}

.outlet-list-item .list-content, .outlet-list-item .button-content{
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  display: inline;
}

.outlet-list-item+.outlet-list-item{
  border-top: 1px solid #d9d9d9;
}

/*right side for Outlet*/
.outlet-right-image{
  padding-bottom: 135px;
}

.outlet-right-image .inner-content{
  margin-bottom: 15px;
}
.outlet-right-image img {
  max-width: 100%;
}

.download-container{
  position: absolute;
  display: block;
  justify-content: center;
  margin-top: 396px;
}

.download-btn-div{
  text-align: left;
}

.download-btn{
  float: left;
}

.download-btn:hover{
  background-color: #cfaf30;
  color: #ffffff;
}
/* new added fonts for each type of data*/
p {
 font-family: m300;
  line-height: 1.6;
}

.list-m-p{
  margin-left: 40px;
}
.strong{
  font-weight: 700;
}

.Museo-Sans{
  font-family: Museo-Sans;
}

.m100{
  font-family: m100;
}

.m300{
  font-family: m300;
}

.m500{
  font-family: m500;
}

.m700{
  font-family: m700;
}

.m900{
  font-family: m900;
}

.g100{
  font-family: g100;
}
.g300{
  font-family: g300;
}
.g500{
  font-family: g500;
}
.g700{
  font-family: g700;
}
.g900{
  font-family: g900;
}

.text-height{
  line-height: 1.6;
}

ol, ul {
  margin-bottom: 10px;
}

.arabic p {
  font-family: g300;
}
.arabic .list-m-p{
  margin-right: 40px;
}
.pager-div-margin{
  margin-top: 20px;
}

@media (min-width: 1060px) {
  .container {
    width: 1050px !important;
  }
}
/*banner image like origin design*/
.header-img-container {
  width: 1260px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
.header-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.header-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .header-img-container {
    width: 100%;
  }
}
.banner-header{
  position: absolute;
  left: 6rem;
  bottom: 2rem;
  width: 39%;
  line-height: 1;
  font-size: 46px;
}

.header-arabic .banner-header{
  position: absolute;
  right: 6rem;
  bottom: 2rem;
  width: 39%;
  line-height: 1;
  font-size: 46px;
  left: unset;
}

.border-radius-10{
  border-radius: 10px;
}

/*banner image like beta design*/

/*** Home Slider ****/
.top-slider-wrapper {
  width: 100vw;
  height: 50rem;
  position: relative;
  /*margin-bottom:100px ;*/
}

.top-slider-wrapper .slider-item {
  position: relative;
}

.top-slider-wrapper .slider-item img{
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-slider-wrapper .slider-item .main-image{
  display: block;
}
.top-slider-wrapper .slider-item .mobile-image{
  display: none;
}
.top-slider-wrapper .slider-item .text-wrapper {
  position:absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
}
.top-slider-wrapper .slider-item .text-wrapper h3{
  font-size: 35px;
  color: #FFF;
}
.top-slider-wrapper .slider-item .text-wrapper p{
  font-size: 20px;
  color: #FFF;
}
.top-slider-wrapper .slick-dots {
  bottom: -50px;
}
.top-slider-wrapper .slick-dots li.slick-active button:before {
  color: #fff;
}
.top-slider-wrapper .slick-dots li button:before {
  font-size: 22px;
  color: #FFF;
  opacity: .75;
}

@media (max-width: 768px) {

  .top-slider-wrapper .slider-item img{
    height: 80vh;
  }
  .top-slider-wrapper .slider-item .text-wrapper {
    text-align: center;
    padding: 0 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .top-slider-wrapper .slider-item .text-wrapper {
    position: absolute;
    width: 100%;
    transform: translate(-50%, -50%);
  }
  .top-slider-wrapper .slider-item .main-image{
    display: none;
  }
  .top-slider-wrapper .slider-item .mobile-image{
    display: block;
  }
}
/*fixing the design of single tenant*/
.logo_container{
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.logo_container img {
  max-width: 100%;
}

.openingSoon {
  z-index: 9;
  top: 10.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: auto !important;
  position: absolute;
  text-align: center;
  width: unset !important;
  margin: 0 auto;
}
.openingSoon h2 {
  letter-spacing: -2.6px;
  color: #b3982b;
  font-weight: 700;
  font-size: 37px;
  font-family: m100;
  margin-top: 20px;
  margin-bottom: 10px;
}


.openingSoon p {
  color: #fff;
  font-weight: 100;
  font-size: 20px;
  font-family: m500;
  margin: 0 0 10px;
}
.tenant_desc{
  font-size: 20px;
  font-family: m500;
}

.second_title{
  letter-spacing: -1px;
  margin: 1rem 0;
  font-weight: 500;
  line-height: 1.1;
}

.related_title{
  font-size: 22px;
  color: grey;
  cursor: default;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 1.1;
  font-family: m100;
}

.details_btn{
  font-size: 13px;
  font-family: m500;
  display: inline-block;
  font-weight: 500;
}


.margin-a{
  margin: auto !important;
}

.sorting-div{
  float: right ;
  width: 360px ;
  margin-left: 0;
}
@media (max-width: 1152px) {
  .sorting-div {
    width: 200px !important;
  }
}
@media (max-width: 481px) {
  .sorting-div{
    width: 100% !important;
  }

}

.dropdown-sorting {
  width: 330px;
  display: inline-block;
  border-radius: 4px;;
  transition: all .5s ease;
  font-size: 14px;
  color: #4d4d4d;
  height: 100%;
  text-align: left;
  -moz-appearance: none;
  -webkit-appearance: none;
  /*padding: 6px 12px;*/
  border: 1px solid #ccc;
  font-weight: 600;
  line-height: 1.42857143;
  white-space: nowrap;
  cursor: pointer;

}
.dropdown-sorting .select {
  cursor: pointer;
  display: block;
  padding: 6px 12px;
  width: 330px;
  -moz-appearance: none;
  -webkit-appearance: none;
}


.dropdown-sorting:active {
  background-color: #f8f8f8
}
.dropdown-sorting.active:hover,
.dropdown-sorting.active {
  border-radius: 4px;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.dropdown-sorting .dropdown-menu {
  position: absolute;
  width: auto;
  left: 0;
  margin-top: 3px;
  border-radius: 4px;
  display: none;
  overflow-y: auto;
  z-index: 9;
  border: 1px solid #adadad;
}
.dropdown-sorting .dropdown-menu li {
  width: 330px;
  padding: 3px 20px;
  /*transition: all .2s ease-in-out;*/
  cursor: pointer;
  font-size:13px ;
  color: gray;
  font-weight: normal;
}

.dropdown-sorting .dropdown-menu li:hover{
  background-color: #f5f5f5;
}
.dropdown-sorting .dropdown-menu {
  padding: 0;
  list-style: none
}


.breadcrumb-box .dropdown-sorting  li:not(:last-of-type):after {
  content: "";
}


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

@media (max-width: 767px) {
  .payment-flex-all {
    display: block;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

}

.font-color-gray{
  color: #333;
}

.fw-500{
  font-weight: 500;
}
.fw-normal{
  font-weight: normal;
}

.header-margin{
  margin: 60px 0 40px;
}

.section-title-35{
  font-size: 35px;
}
.related-title{
  font-family: m100;
  letter-spacing: -1px;
  font-weight: 500;
  line-height: 1.1;
  margin: 1rem 0;
}
