/*Base*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

:focus {
  outline: 0;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

/*Bootsrap Reset*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

b,
strong {
  font-weight: bold;
}

img {
  border: 0;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/** Customizing the vendors style go here  **/
/*Make Bootstrap coursel faded*/
.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Mixins should not have CSS properties ex: .class {..} */
/* Add below your website's variable */
/** Add here any useful class that can be used in any website **/
/* Visability and Display */
.no-scroll {
  overflow: hidden !important;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.no-selection {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.display-block {
  display: block;
}

.display-none {
  display: none;
}

.display-none-important {
  display: none !important;
}

.display-flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.display-grid {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
}

/* Image and Background */
.background-contain {
  -webkit-backgroundisplay-size: contain;
  -moz-backgroundisplay-size: contain;
  -o-backgroundisplay-size: contain;
  backgroundisplay-size: contain;
}

.background-cover {
  -webkit-backgroundisplay-size: cover;
  -moz-backgroundisplay-size: cover;
  -o-backgroundisplay-size: cover;
  backgroundisplay-size: cover;
}

.image-cover {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
}

/* Position */
.y-centering {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.x-centering {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.xy-centering {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.y-centering2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

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

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

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

/*Fonts*/
.font-italic {
  font-style: italic;
}

.font-bold {
  font-weight: bold;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.overlay.black {
  background-color: #000;
}
.overlay.white {
  background-color: #FFF;
}

.arrow {
  border: solid red;
  display: inline-block;
  padding: 3px;
  z-index: 2;
  cursor: pointer;
}
.arrow:hover {
  border-color: blue;
}
.arrow.right {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.arrow.left {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.arrow.up {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.arrow.down {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.arrow.lg {
  height: 50px;
  width: 50px;
  border-width: 0 5px 5px 0;
}
.arrow.lg.semi-bold {
  border-width: 0 7.5px 7.5px 0;
}
.arrow.lg.bold {
  border-width: 0 10px 10px 0;
}
.arrow.md {
  height: 40px;
  width: 40px;
  border-width: 0 4px 4px 0;
}
.arrow.md.semi-bold {
  border-width: 0 6px 6px 0;
}
.arrow.md.bold {
  border-width: 0 8px 8px 0;
}
.arrow.sm {
  height: 30px;
  width: 30px;
  border-width: 0 3px 3px 0;
}
.arrow.sm.semi-bold {
  border-width: 0 4.5px 4.5px 0;
}
.arrow.sm.bold {
  border-width: 0 6px 6px 0;
}
.arrow.xs {
  height: 20px;
  width: 20px;
  border-width: 0 2px 2px 0;
}
.arrow.xs.semi-bold {
  border-width: 0 3px 3px 0;
}
.arrow.xs.bold {
  border-width: 0 4px 4px 0;
}
.arrow.xxs {
  height: 10px;
  width: 10px;
  border-width: 0 2px 2px 0;
}
.arrow.xxs.semi-bold {
  border-width: 0 3px 3px 0;
}
.arrow.xxs.bold {
  border-width: 0 4px 4px 0;
}

/** Is 991px **/
.is-tablet-wide {
  display: none;
  height: 0;
  width: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .is-tablet-wide {
    display: block;
  }
}

/* Mixins should not have CSS properties ex: .class {..} */
/* Add below your website's variable */
@font-face {
  font-family: "regularFont";
  font-style: normal;
  font-weight: normal;
  src: local("BahijTheSansArabic-SemiBold"), url("../fonts/BahijTheSansArabic-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "semiBoldFont";
  font-style: normal;
  font-weight: normal;
  src: local("BahijTheSansArabic-SemiBold"), url("../fonts/BahijTheSansArabic-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "boldFont";
  font-style: normal;
  font-weight: normal;
  src: local("Bahij_TheSansArabic-Bold"), url("../fonts/Bahij_TheSansArabic-Bold.woff") format("woff");
}
strong, b {
  font-weight: normal;
  font-family: "boldFont";
}

html, body {
  /*font-family: "regularFont";*/
  font-family: "Open Sans", sans-serif;
}

.title-section {
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
  text-align: initial;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
}

.white {
  color: white !important;
}

/** Components */
/* Mixins should not have CSS properties ex: .class {..} */
/* Add below your website's variable */
/* Add below your website's variable */
.itm-modal .itm-modal-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.itm-modal .itm-modal-inner {
  background-color: #EEE;
  margin: auto;
  z-index: 1;
  width: 95%;
}
@media (min-width: 991px) {
  .itm-modal .itm-modal-inner {
    width: 80%;
  }
}
.itm-modal .itm-modal-close {
  right: 10px;
}
.itm-modal .itm-modal-header {
  border-bottom: 1px solid #e4e3e3;
  background-color: #118ebe;
  color: #FFF;
  position: relative;
}
.itm-modal .itm-modal-close {
  cursor: pointer;
}
.itm-modal .itm-modal-footer {
  border-top: 1px solid #b7b7b7;
}
.itm-modal .itm-modal-header,
.itm-modal .itm-modal-footer,
.itm-modal .itm-modal-body {
  padding: 10px;
}

/** Partials **/
/* Mixins should not have CSS properties ex: .class {..} */
/* Add below your website's variable */
header {
  color: black;
}
@media (min-width: 1399px) {
  header {
    background-color: yellow;
  }
}

/* Add below your website's variable */
.spaces-page {
  height: 100vh;
  /*background: black;*/
  float: left;
  width: 100%;
  margin-top: -91px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 600px;
  background: url(../../media/4szjok0m/menu3.png) right top no-repeat #1f295b;
  padding: 120px 20px 20px;
  /*   @media(max-width:$tablet) {


      .left-slide-section {
          width: 55%;
      }

      .spaces-swiper-btns {
          padding: 20px 10px;
      }

      .right-slide-section {
          width: 45%;
      }


      .info {
          padding-top: 150px;

          .title {
              margin-bottom: 20px;

              .title-line1 {
                  font-size: 30px;
              }
          }

          .detail {
              margin-bottom: 15px;

              .number {
                  font-size: 24px;
              }

              .text {
                  font-size: 14px;
              }
          }
      }

      .spaces-swiper {
          display: none;
      }

      .image-information {
          font-size: 24px;
          padding-top: 100px;
      }



      .spaces-swiper-btns {
          &.active {
              display: none;
          }
      }

      .spaces-mobile-swiper {
          display: block;
      }

      .swiper-slide {
          height: 100%;
      }

      .full-slide-section {
          height: 100%;
          width: 100%;
      }

      .top-space-slide {
          height: 100%;
      }


      .spaces-swiper-btns {
          //  display:none;
      }
  }*/
}
.spaces-page .space-content {
  height: 100%;
  display: flex;
  align-items: center;
}
.spaces-page .report-table {
  border-collapse: collapse;
  width: 100%;
}
.spaces-page .report-table .column-title, .spaces-page .report-table .table-data {
  text-align: start;
  padding: 13px 20px 15px;
  font-size: 14px;
}
.spaces-page .report-table .row-color {
  background: #121835;
}
.spaces-page .report-table .column-title {
  color: white;
  font-size: 14px;
  font-weight: normal;
  color: #7685d0;
}
.spaces-page .report-table .custom-back {
  background-color: #f2f0f1;
}
.spaces-page .report-table .item {
  padding: 13px 20px 15px;
  color: #7685d0;
  background: #121835;
  display: block;
  border-bottom: 1px solid #1f295b;
  position: relative;
  padding-right: 90px;
}
@media (max-width: 479px) {
  .spaces-page .report-table .column-title, .spaces-page .report-table .table-data {
    font-size: 12px;
  }
}
.spaces-page .spaces-slide {
  height: 100%;
}
.spaces-page .detail {
  padding-top: 20px;
}
.spaces-page .distance-lettable {
  font-size: 14px;
}
.spaces-page .image-information {
  font-size: 20px;
}
.spaces-page .top-space-slide {
  height: 50%;
}
.spaces-page .bottom-space-slide {
  height: 50%;
}
.spaces-page .slide-1 {
  display: flex;
  height: 100%;
}
.spaces-page .w-100 {
  height: 100%;
}
.spaces-page .spaces-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-inline-end: 40px;
  text-align: end;
  font-size: 18px;
  color: white;
  position: relative;
  cursor: pointer;
  flex-grow: 1;
  /*  &.active {
      .info {
          display: block;
      }
  }*/
}
.spaces-page .left-slide-section {
  width: 60%;
}
.spaces-page .right-slide-section {
  width: 40%;
  background-color: white;
  display: flex;
  flex-direction: column;
}
.spaces-page .image-sub {
  font-size: 12px;
}
.spaces-page .right-slide-section .image-4 {
  height: 60%;
}
.spaces-page .right-slide-section .image-5 {
  height: 40%;
}
.spaces-page .image-sub-info {
  font-size: 14px;
}
.spaces-page .image-2 {
  flex-basis: 50%;
}
.spaces-page .image-3 {
  flex-basis: 50%;
}
.spaces-page .info {
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: end;
  color: white;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 50px 20px;
  display: block;
  /*   &.active {
      display: block;
  }*/
}
.spaces-page .info .text-container {
  padding: 0 20px 0 30px;
  width: 100%;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.spaces-page .info .title {
  text-transform: uppercase;
}
.spaces-page .info .title .title-line1 {
  font-size: 20px;
  font-weight: 600;
}
.spaces-page .info .title .title-line2 {
  font-size: 14px;
  color: white;
}
.spaces-page .info .detail {
  padding-top: 0px;
}
.spaces-page .info .detail .number {
  color: white;
  font-size: 20px;
  margin-bottom: -5px;
}
.spaces-page .info .detail .text {
  color: white;
  font-size: 14px;
  font-weight: normal;
}
.spaces-page .info .summary {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 12px;
  max-width: 500px;
}
.spaces-page .info .read-more {
  color: white;
  border: 2px solid;
  font-size: 14px;
  float: none;
}
.spaces-page .swiper {
  height: 100%;
  overflow: hidden;
}
.spaces-page .spaces-swiper {
  position: relative;
}
.spaces-page .spaces-swiper-btns {
  background-color: #2a3764;
  color: white;
  position: absolute;
  top: 45%;
  right: 0%;
  z-index: 1;
  padding: 20px;
}
.spaces-page .spaces-swiper-pagination {
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.spaces-page .swiper-pagination {
  gap: 5px;
  display: flex;
  position: static;
  /*padding-inline:20px 10px;*/
}
.spaces-page .spaces-section-swiper-brev {
  height: 16px;
}
.spaces-page .see-more-btn {
  margin-bottom: 5px;
  text-align: center;
}
.spaces-page .spaces-section-swiper-next {
  display: flex;
  flex-direction: column;
}
.spaces-page .swiper-pagination-bullet {
  background-color: #eeeeee !important;
  padding: 4px;
}
.spaces-page .swiper-wrapper {
  height: 100%;
}
.spaces-page .spaces-mobile-swiper {
  display: none;
}
@media (max-height: 900px) {
  .spaces-page .right-slide-section .image-4 {
    height: 55%;
  }
  .spaces-page .right-slide-section .image-5 {
    height: 45%;
  }
}
@media (max-width: 1199px) {
  .spaces-page .image-information {
    font-size: 18px;
  }
  .spaces-page .info .title .title-line1 {
    font-size: 20px;
  }
  .spaces-page .info .detail .number {
    font-size: 18px;
  }
  .spaces-page .info .detail .text {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .spaces-page .spaces-swiper-btns {
    background-color: #2a3764;
    color: white;
    position: absolute;
    top: auto;
    bottom: 0px;
    right: 50%;
    transform: translate(50%);
    z-index: 1;
    padding: 20px;
  }
  .spaces-page .image-information {
    font-size: 16px;
  }
  .spaces-page .spaces-swiper-btns {
    padding: 20px 10px;
  }
  .spaces-page .info {
    padding-top: 150px;
  }
  .spaces-page .info .title {
    margin-bottom: 20px;
  }
  .spaces-page .info .title .title-line1 {
    font-size: 30px;
  }
  .spaces-page .info .detail {
    margin-bottom: 15px;
  }
  .spaces-page .info .detail .number {
    font-size: 24px;
  }
  .spaces-page .info .detail .text {
    font-size: 14px;
  }
  .spaces-page .spaces-swiper {
    display: none;
  }
  .spaces-page .image-information {
    font-size: 24px;
    padding-top: 100px;
  }
  .spaces-page .spaces-swiper-btns.active {
    display: none;
  }
  .spaces-page .spaces-mobile-swiper {
    display: block;
  }
  .spaces-page .swiper-slide {
    height: 100%;
  }
  .spaces-page .full-slide-section {
    height: 100%;
    width: 100%;
  }
  .spaces-page .top-space-slide {
    height: 100%;
  }
}
@media (max-width: 479px) {
  .spaces-page .info .title .title-line1 {
    font-size: 24px;
  }
  .spaces-page .image-information {
    padding-top: 100px;
  }
  .spaces-page .spaces-image {
    padding-inline-end: 20px;
  }
}

/** Pages **/
/* Add below your website's variable */
/* Mixins should not have CSS properties ex: .class {..} */
/* Add below your website's variable */
.space {
  /*.popuptext {
      background-color: red;*/
  /*visibility: hidden;*/
  /*width: 160px;
      height: 100px;
      background-color: #555;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 8px 0;
      position: absolute;
      z-index: 1;
      bottom: 125%;
      left: 50%;
      margin-left: -80px;
      display: none;
  }*/
  /* Popup arrow */
  /* .popup .popuptext::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #555 transparent transparent transparent;
      background-color: forestgreen;
      z-index: 100;
  }*/
}
.space .social-media-options {
  display: none;
  border-style: solid;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(100%, -50%);
}
.space .social-media-options:after {
  content: "";
  position: absolute;
  border-width: 10px;
  border-style: solid;
  transform: translatey(-50%);
  border-color: transparent #1f295b transparent transparent;
  top: 50%;
  left: -20px;
}
.space .social-media-options.active {
  display: block;
}
.space .social-media-options .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1f295b;
  /* width: 150px; */
  padding: 13px;
  border-radius: 12px;
  gap: 5px;
}
.space .social-media-options .social-icon .media-link-nav {
  width: 25px;
  height: 25px;
  border: 1px solid white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
}
.space .social-media-options .social-icon .icon {
  width: 15px;
  height: 15px;
  padding: 1px;
}
.space .share-option {
  position: relative;
}
.space .popup-overlay {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.space .popup-overlay.active {
  display: flex;
  justify-content: center;
}
.space .popup-active {
  background-color: #fefefe;
  margin: 10% auto auto auto;
  /*padding: 30px;*/
  border: none;
  color: black;
  width: 700px;
  box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.22);
  border-radius: 5px;
}
.space .popup-text {
  padding: 30px;
  font-size: 18px;
  color: #1f295b;
}
.space .close-popup {
  display: flex;
  justify-content: flex-end;
  /*margin-top: -20px;*/
  padding: 10px;
  background-color: #1f295b;
  border-start-start-radius: 5px;
  border-start-end-radius: 5px;
  border: none;
}
.space .close-popup .popup-img-close {
  width: 22px;
  object-fit: cover;
}
.space .m-5 {
  margin-inline: 5px;
}
.space .space-container {
  margin-top: -98px;
  float: left;
  width: 100%;
  position: relative;
  /* overflow: hidden; */
}
.space .space-container .facts .item .number {
  font-size: 22px;
}
.space .space-container .bg-cover {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: flex;
}
.space .space-container .bg-brief {
  top: 40%;
  left: 16%;
  color: white;
  position: absolute;
  z-index: 2;
  position: absolute;
  text-transform: uppercase;
}
.space .space-container .bg-brief .brief-1 {
  font-size: 30px;
  background: #1f295b;
  padding: 5px 20px 0px 20px;
  font-weight: 400;
}
.space .space-container .bg-brief .brief-2 {
  float: left;
  clear: left;
  font-size: 14px;
  font-weight: 600;
  background: #1f295b;
  color: #8c90a3;
  padding: 0px 20px 5px 20px;
}
.space .space-container .title-absolute {
  background-color: white;
  color: #1f295b;
  text-align: center;
  font-size: 30px;
  bottom: 0;
  min-width: 50%;
  padding: 10px 0;
  position: absolute;
  text-transform: uppercase;
}
.space .facts {
  position: absolute;
  right: 0;
  display: flex !important;
  padding: 0px;
  z-index: 3;
  /* height: 176px; */
  transform: translateY(105%);
  transition: all 0.15s ease-in;
  max-width: 1320px;
  justify-content: end;
  align-items: end;
}
.space .facts .box-1 {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: rgba(255, 255, 255, 0.3);
  text-align: right;
  padding: 20px 15px 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-right: 15px;
  width: 185px;
  height: 80px;
}
.space .facts .box-2 {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(31, 41, 91, 0.7);
  text-align: right;
  padding: 20px 15px 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-right: 15px;
  width: 185px;
  height: 80px;
}
.space .facts .box-2 .sup {
  font-size: 16px;
}
.space .facts .number {
  font-size: 26.4px;
  margin-bottom: -5px;
}
.space .facts .text {
  font-size: 14px;
  font-weight: normal;
}
.space .slider-mobile {
  display: none;
  position: relative;
  margin-inline-start: 80px;
  margin-inline-end: 10px;
}
.space .slider-mobile .swiper-mobile {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.space .slider-mobile .swiper-mobile .swiper-btn {
  width: 40px;
}
.space .slider-mobile .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.space .slider-mobile .swiper-slide .img-slide {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space .slider-mobile .swiper-slide .img-slide-mobile {
  display: block;
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  height: 100%;
}
.space .slider-mobile .swiper-button-prev-mobile {
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
}
.space .slider-mobile .swiper-button-next-mobile {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  display: none;
}
.space .swiper-button-prev {
  color: white;
  font-size: 30px;
  position: absolute;
  top: 60%;
  left: 100px;
}
.space .slider-desktop {
  width: 100%;
  position: relative;
  /*left: 350px;*/
  height: 25%;
  padding-inline-start: 30px;
  padding-top: 32px;
}
.space .swiper {
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  /*width: 100%;
  height: 100%;*/
  /*overflow: hidden;
  width: calc(100% - 560px);
  position: absolute;
  left: 350px;
  height: 25%;*/
  /*.swiper-button-prev {
      color: white;
      font-size: 30px;
  }*/
}
.space .swiper .swiper-slide {
  /*text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;*/
}
.space .swiper .swiper-wrapper {
  height: 100%;
}
.space .swiper .swiper-slide-active {
  height: 100%;
}
.space .swiper .swiper-slide .img-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space .swiper .swiper-button-next {
  right: 7%;
  left: auto;
  color: white;
  transform: translateX(-50%);
  font-size: 30px;
  top: 60%;
}
.space .page-container {
  display: flex;
  width: 100%;
  /*height: 100px;*/
  /* margin: auto;
  justify-content: center;*/
  /* position: relative;
  overflow-x: hidden;*/
}
.space .page-container .img-option {
  height: 30px;
  object-fit: cover;
}
.space .page-container .text-option {
  padding-block: 4px;
  max-width: 150px;
}
.space .page-container .page-container .section-left .btn-mobile .srv-btn {
  display: none;
}
.space .page-container .section-left {
  min-width: 50%;
  flex-basis: 50%;
  background-color: #1f295b;
  padding-inline-start: 200px;
  /*.option:nth-child(4) {
      display: none;
  }

  .option:nth-child(5) {
      display: none;
  }

  .option:nth-child(6) {
      display: none;
  }*/
}
.space .page-container .section-left .text-description {
  /*padding: 75px 50px;*/
  text-align: justify;
  padding-inline-start: 0px;
  padding-top: 30px;
  padding-inline-end: 50px;
}
.space .page-container .section-left .text-description .description-title {
  font-size: 18px;
  color: white;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.space .page-container .section-left .text-description .description {
  color: white;
  font-size: 13px;
  text-align: justify;
}
.space .page-container .section-left .option-container {
  background-color: #1f295b;
}
.space .page-container .section-left .bg-blue {
  background-color: #1f295b;
  display: flex;
  justify-content: space-between;
  margin-inline-end: 30px;
}
.space .page-container .section-left .bg-blue .option {
  color: white;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}
.space .page-container .section-left .title {
  display: none;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  margin-bottom: 25px;
  margin-inline: 50px;
  letter-spacing: 2px;
}
.space .page-container .section-left .services {
  background-color: #1f295b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding-top: 50px;
  /* padding-bottom: 70px;
  margin-inline-end: 30px;*/
}
.space .page-container .section-left .services .services-boxes {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-top: 40px;
}
.space .page-container .section-left .services .srv-control {
  /* width: 49%; */
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  justify-content: flex-start;
}
.space .page-container .section-left .services .srv-box {
  /* width: 110px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-basis: calc(33% - 10px);
  cursor: pointer;
}
.space .page-container .section-left .services .srv-box .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}
.space .page-container .section-left .services .srv-img {
  width: 50px;
  object-fit: cover;
  display: flex;
  align-content: center;
  margin-top: 0;
}
.space .page-container .section-left .services .srv-title {
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}
.space .page-container .section-left .services .srv-brief {
  color: white;
  padding-block: 10px;
  font-size: 12px;
  /*                    width: 90px;
  */
}
.space .page-container .section-left .option-container-media {
  display: none;
  padding-bottom: 80px;
}
.space .page-container .section-left .option-container-media .bg-blue {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  display: none;
}
.space .page-container .section-left .btn-desktop {
  display: flex;
  justify-content: start;
  align-items: center;
}
.space .page-container .section-left .btn-desktop .srv-btn {
  padding: 8px 15px;
  color: #d0ced1;
  text-transform: uppercase;
  border: 1px solid #d0ced1;
  cursor: pointer;
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 175px;
  text-align: center;
  font-size: 12px;
}
.space .page-container .btn-mobile {
  display: none;
  justify-content: start;
  align-items: center;
  margin-inline: 25px;
}
.space .page-container .btn-mobile .srv-btn {
  padding: 6px 20px;
  color: #d0ced1;
  text-transform: uppercase;
  border: 1px solid #d0ced1;
  cursor: pointer;
  margin-top: 0px;
  max-width: 142px;
  text-align: center;
  font-size: 14px;
  margin-block-end: 40px;
}
.space .page-container .section-right {
  flex-basis: 50%;
  min-width: 50%;
  /*.text-description {*/
  /*padding: 75px 50px;*/
  /*text-align: justify;
      padding-inline-start: 30px;
      padding-top: 290px;


      .title {
          font-size: 18px;
          color: #1f295b;
          padding-bottom: 20px;
          text-transform: uppercase;
      }

      .description {
          color: #787878;
          font-size: 13px;
          text-align: justify;
      }
  }*/
}
.space .page-container .section-right .space-options {
  color: black;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  margin-inline-start: 24px;
}
.space .page-container .section-right .space-options .option {
  color: #212c5d;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}
.space .page-container .section-right .space-options .transition-in-out {
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 5s ease-in-out;
}
.space .page-container .section-right .location {
  margin-inline-start: 30px;
  padding: 40px 0;
}
.space .page-container .section-right .title {
  font-size: 18px;
  color: #1f295b;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.space .page-container .section-right .map .mapouter {
  position: relative;
  text-align: right;
  width: 100%;
  height: 300px;
}
.space .page-container .section-right .map .gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 300px;
}
.space .page-container .section-right .map iframe {
  width: 100%;
}
.space .page-container .section-right .map .gmap_iframe {
  width: 600px !important;
  height: 275px !important;
}
.space .page-container .right-item {
  padding-inline-end: 150px;
}
@media (max-width: 1399px) {
  .space {
    /*.page-container .section-right {
        padding-inline-end: 140px;
    }*/
    /*.page-container .section-right .text-description {
        margin-inline: 30px;
    }*/
  }
  .space .space-container {
    /*max-width: 1392px;*/
  }
  .space .facts {
    max-width: 1140px;
  }
  .space .right-item {
    padding-inline-end: 140px;
  }
  .space .page-container .section-right .location .mapouter .gmap_canvas {
    width: 480px;
  }
  .space .swiper .swiper-button-next {
    right: 21%;
  }
  .space .page-container .section-left {
    padding-inline-start: 150px;
  }
}
@media (max-width: 1199px) {
  .space {
    /* .page-container .section-right {
        padding-inline-end: 55px;
    }*/
  }
  .space .page-container .section-left {
    padding-inline-start: 100px;
  }
  .space .swiper .swiper-button-next {
    right: 0%;
  }
  .space .page-container .section-right .location {
    margin-inline: 30px;
  }
  .space .page-container .section-right .location .mapouter .gmap_canvas {
    width: 420px;
  }
  .space .space-container {
    max-width: 1194px;
  }
  .space .space-container .bg-brief {
    max-width: 500px;
  }
  .space .space-container .bg-brief .brief-1 {
    font-size: 24px;
  }
  .space .space-container .facts {
    max-width: 960px;
    bottom: 15%;
  }
  .space .space-container .space-options .option {
    padding: 15px;
  }
  .space .right-item {
    padding-inline-end: 55px;
  }
}
@media (max-width: 991px) {
  .space {
    /*.option-container-media {
                display: none;
            }
    */
    /* .space .page-container .right-item {
        padding-inline-end: 0px;
    }*/
  }
  .space .page-container {
    display: flex;
    flex-direction: column;
    background-color: #1f295b;
    /*  .section-left .option:nth-child(4) {
        display: block;
    }

    .section-left .option:nth-child(5) {
        display: block;
    }

    .section-left .option:nth-child(6) {
        display: block;
    }*/
    /*.section-left .option:nth-child(2) {
        display: none;
    }

    .section-left .option:nth-child(3) {
        display: none;
    }*/
  }
  .space .page-container .slider-mobile {
    margin-inline-end: 20px;
  }
  .space .page-container .btn-mobile {
    display: flex;
    margin-inline: 80px;
  }
  .space .page-container .section-right .location {
    margin-inline: 80px;
    padding-top: 10px;
  }
  .space .page-container .section-right .location .title {
    color: white;
  }
  .space .page-container .img-option {
    height: 30px;
    object-fit: cover;
    filter: brightness(0) invert(1);
  }
  .space .slider-desktop {
    display: none;
  }
  .space .slider-desktop .swiper-button-prev {
    display: none;
  }
  .space .option-container {
    display: none;
  }
  .space .popup {
    flex-basis: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .space .page-container .section-left .option-container-media {
    display: flex;
    /*max-width:600px;*/
    /*width: 100%;*/
    margin-inline: 80px;
    padding-bottom: 40px;
  }
  .space .page-container .section-left .option-container-media .bg-blue {
    display: flex;
    margin-inline-end: 0;
  }
  .space .bg-cover {
    height: 600px;
  }
  .space .space-container .title-absolute {
    display: none;
  }
  .space .facts {
    max-width: 723px;
    bottom: 0;
  }
  .space .social-media-options {
    right: 25%;
  }
  .space .social-media-options:after {
    border-color: transparent #747474 transparent transparent;
  }
  .space .social-media-options .social-icon {
    background-color: #747474;
  }
  .space .page-container .section-left {
    width: 100%;
    max-width: initial;
    padding-inline-start: 0;
    padding: 50px 0 0px;
  }
  .space .page-container .section-left .bg-blue {
    /*max-width: 680px;*/
    flex-wrap: wrap;
    /*margin: auto;*/
  }
  .space .page-container .section-left .title {
    display: block;
    margin-inline: 80px;
  }
  .space .page-container .section-left .services {
    padding-block: 40px;
    margin-inline-end: 0;
  }
  .space .page-container .section-left .services .services-boxes {
    padding-top: 40px;
  }
  .space .page-container .section-left .services .srv-title {
    margin-inline: 80px;
  }
  .space .page-container .section-left .services .srv-control {
    margin-inline: 80px;
  }
  .space .page-container .section-right {
    /*padding-inline-end: 161px;*/
    width: 100%;
    padding-inline-end: 0;
  }
  .space .page-container .section-right .text-description {
    margin-inline: 80px;
    padding: 0;
  }
  .space .page-container .section-right .text-description .title {
    color: white;
  }
  .space .page-container .section-right .text-description .description {
    /*max-width: 600px;*/
  }
  .space .page-container .section-right .space-options {
    display: none;
  }
  .space .page-container .section-right .map .mapouter {
    width: 100%;
  }
  .space .page-container .section-right .map .mapouter .gmap_canvas {
    width: 100%;
  }
  .space .page-container .section-right .map .mapouter .gmap_canvas iframe {
    width: 100%;
  }
  .space .page-container .section-right .option {
    /*display: none;*/
  }
  .space .page-container .right-item {
    padding-inline-end: 0px;
  }
  .space .slider-mobile {
    display: block;
  }
  .space .page-container .section-left .btn-desktop .srv-btn {
    display: none;
  }
  .space .page-container .section-left .btn-mobile .srv-btn {
    display: flex;
  }
  .space .page-container .section-left .option-container-media .option {
    flex-basis: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .space .page-container .section-right {
    padding-inline: 0;
  }
  .space .page-container .section-right .text-description .description {
    text-align: justify;
  }
  .space .popup-active {
    width: 500px;
    margin: 25% auto auto auto;
  }
  .space .page-container .btn-mobile .srv-btn {
    font-size: 12px;
  }
  .space .page-container .section-left .text-description {
    padding-inline: 80px;
  }
}
@media (max-width: 767px) {
  .space {
    /*   .page-container .section-left .option-container-media .option {
            flex-basis: 50%;
        }*/
    /* .social-media-options {
        right: 20px;
    }*/
  }
  .space .space-container .bg-cover {
    height: 600px;
  }
  .space .space-container .facts {
    max-width: 525px;
    bottom: 32%;
  }
  .space .space-container .facts-row:last-child {
    display: flex;
    justify-content: end;
  }
  .space .space-container .facts-row .item:last-child {
    margin-left: 0;
  }
  .space .space-container .bg-brief {
    left: 5%;
    max-width: 400px;
  }
  .space .space-container .bg-brief .brief-1 {
    font-size: 22px;
  }
  .space .page-container .section-left .title {
    margin-inline: 30px;
  }
  .space .page-container .section-left .services .srv-title {
    margin-inline: 30px;
  }
  .space .page-container .section-right .text-description {
    margin-inline: 30px;
    padding: 0;
  }
  .space .page-container .section-right .text-description .description {
    /*max-width: 420px;*/
  }
  .space .page-container .section-right .location {
    margin-inline: 30px;
  }
  .space .slider-mobile .swiper-slide .img-slide-mobile {
    display: block;
    width: 100%;
    max-height: 350px;
    object-fit: cover;
  }
  .space .page-container .section-left .option-container-media {
    display: flex;
    /*max-width:600px;*/
    /*width: 100%;*/
    margin-inline: 30px;
    padding-bottom: 40px;
  }
  .space .page-container .section-left .option-container-media .option {
    padding: 15px;
  }
  .space .page-container .section-left .services {
    padding-block: 40px;
  }
  .space .page-container .section-left .services .services-boxes {
    padding-top: 30px;
  }
  .space .page-container .section-left .services .srv-control {
    gap: 2px;
    margin-inline: 25px;
  }
  .space .page-container .btn-mobile {
    display: flex;
    margin-inline: 30px;
  }
  .space .page-container .section-right .text-description {
    margin-inline: 30px;
  }
  .space .page-container .section-right {
    padding-inline: 0;
  }
  .space .popup-active {
    width: 350px;
    margin: 30% auto auto auto;
  }
  .space .popup-text {
    padding: 18px;
    font-size: 16px;
  }
  .space .page-container .section-left .text-description {
    padding-inline: 30px;
  }
}
@media (max-width: 479px) {
  .space {
    /* .space .page-container .section-left .option-container-media .option {
        flex-basis: 50%;
    }*/
    /*  .page-container .section-left .option-container-media .option {
        flex-basis: 100%;
    }*/
    /*.social-media-options {
        right: 30px;
    }*/
  }
  .space .space-container .bg-cover {
    height: 600px;
  }
  .space .space-container .bg-brief {
    left: 5%;
  }
  .space .space-container .bg-brief .brief-1 {
    margin-inline: 10px;
  }
  .space .space-container .facts {
    max-width: 480px;
    bottom: 32%;
  }
  .space .space-container .facts-row:last-child {
    display: flex;
    justify-content: end;
  }
  .space .space-container .facts-row .item:last-child {
    margin-left: 0;
  }
  .space .page-container .section-left .option-container-media {
    display: flex;
    /*max-width:600px;*/
    /*width: 100%;*/
    margin-inline: 25px;
    padding-bottom: 40px;
  }
  .space .page-container .section-left .option-container-media .option {
    padding: 10px;
    flex-basis: 50%;
  }
  .space .page-container .section-left .title {
    margin-inline: 25px;
  }
  .space .page-container .section-left .services {
    padding-block: 40px;
  }
  .space .page-container .section-left .services .services-boxes {
    padding-top: 30px;
  }
  .space .page-container .section-left .services .srv-box {
    flex-basis: calc(50% - 2px);
  }
  .space .page-container .section-left .services .srv-control {
    gap: 2px;
    margin-inline: 25px;
    flex-wrap: wrap;
  }
  .space .page-container .section-left .services .srv-title {
    margin-inline: 25px;
  }
  .space .page-container .section-right .text-description {
    margin-inline: 25px;
    padding: 0;
  }
  .space .page-container .section-right .text-description .description {
    /*max-width: 400px;*/
  }
  .space .page-container .btn-mobile {
    margin-inline: 25px;
  }
  .space .page-container .section-right .location {
    margin-inline: 25px;
  }
  .space .page-container .section-right .location .mapouter {
    width: 100%;
  }
  .space .page-container .section-right .location .mapouter .gmap_canvas {
    width: 100%;
  }
  .space .popup-active {
    width: 250px;
    margin: 40% auto auto auto;
  }
  .space .popup-text {
    padding: 18px;
    font-size: 14px;
  }
  .space .page-container .section-left .option-container-media .bg-blue {
    flex-wrap: wrap;
  }
  .space .space-container .bg-brief .brief-1 {
    font-size: 16px;
    margin-inline: 0px;
  }
  .space .space-container .facts .item .number {
    font-size: 16px;
  }
  .space .space-container .bg-brief {
    max-width: 260px;
  }
}

/* Mixins should not have CSS properties ex: .class {..} */
/* Add below your website's variable */
/* Add below your website's variable */
/**, *::before, *::after {
    box-sizing: border-box;
    overflow: hidden;
}*/
.properties-page .carousel-item img {
  object-fit: cover;
}
.properties-page .title-details {
  height: 72px;
}
.properties-page .table-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #121835;
}

.properties .info {
  position: absolute;
  top: 0px;
  right: -10%;
  background: url(../../media/4szjok0m/menu3.png) right top no-repeat #1f295b;
  text-align: right;
  color: white;
  z-index: 5;
  width: 120%;
  height: 100%;
  padding: 120px 20px 20px;
  display: none;
}

.white-row {
  background-color: white !important;
}
.white-row a {
  color: #121835;
  font-weight: 600;
}
.white-row a:hover {
  color: #121835;
  text-decoration: none;
}

.space-details-row-color {
  background-color: rgba(204, 204, 204, 0.8) !important;
}
.space-details-row-color a {
  color: #121835;
  font-weight: 600;
}
.space-details-row-color a:hover {
  color: #121835;
  text-decoration: none;
}

.space-details-header-color {
  background-color: #1f295b !important;
}

.spaces-count {
  font-size: 14px !important;
  margin-top: 30px !important;
}

.space-count-border {
  border: 1px solid white;
  padding: 5px 7px;
}

.properties {
  display: flex;
}
.properties .item:first-child.active {
  right: -2%;
}

.properties-page .swiper-wrapper {
  position: initial;
}
.properties-page ::-webkit-scrollbar {
  width: 0px;
}
.properties-page .table-section {
  overflow: auto;
  height: 294px;
  padding-inline: 20px;
}
.properties-page .properties-table-section {
  overflow: auto;
  height: 328px;
}
.properties-page .item-count {
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
}
.properties-page .properties-table-details {
  margin-inline-start: 60px;
  width: 94%;
  margin-top: 30px;
  margin-bottom: 50px;
}
.properties-page .certified-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.properties-page .certified-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-basis: calc(50% - 20px);
}
.properties-page .certified-title {
  color: #000;
}
.properties-page .second-row-color {
  background-color: #1f295b;
}
.properties-page .mb-50 {
  margin-bottom: 50px;
}
.properties-page .report-table {
  border-collapse: collapse;
  width: 100%;
}
.properties-page .report-table .table-data {
  text-align: start;
  padding: 13px 20px 15px;
  font-size: 14px;
}
.properties-page .report-table .column-title {
  text-align: start;
  padding: unset;
  font-size: 14px;
}
.properties-page .report-table thead .column-title {
  padding: 13px 20px 15px;
}
.properties-page .report-table .row-color {
  background: #121835;
}
.properties-page .report-table .column-title {
  color: white;
  font-size: 14px;
  font-weight: normal;
  color: #7685d0;
}
.properties-page .report-table .column-title a {
  display: block;
  padding: 13px 20px 15px;
}
.properties-page .report-table .custom-back {
  background-color: #f2f0f1;
}
.properties-page .report-table .item {
  padding: 13px 20px 15px;
  color: #7685d0;
  background: #121835;
  display: block;
  border-bottom: 1px solid #1f295b;
  position: relative;
  padding-right: 90px;
}
@media (max-width: 479px) {
  .properties-page .report-table .column-title, .properties-page .report-table .table-data {
    font-size: 12px;
  }
}
.properties-page .swiper-button-next:after, .properties-page .swiper-button-prev:after {
  font-size: 30px;
}
.properties-page .inner-image img {
  min-height: 450px;
  object-fit: cover;
}
.properties-page .back-btn {
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  float: right;
  border: 1px solid white;
  padding: 7px 20px;
  /*margin-top: 25px;*/
}
.properties-page .info {
  /*position: absolute;
  top: 0px;
  right: -10%;
  background: url(../../media/4szjok0m/menu3.png) right top no-repeat $color1;
  text-align: right;
  color: $textColor1;
  z-index: 5;
  width: 120%;
  height: 100%;
  padding: 120px 20px 20px;
  display: none;*/
}
.properties-page .info .text-container {
  height: 270px;
  /*padding: 0 20px 0 30px;*/
  width: 100%;
  right: 0px;
}
.properties-page .info .text-container .container-info {
  padding-inline: 50px;
}
.properties-page .info .title {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.properties-page .info .title .title-line1 {
  font-size: 24px;
  font-weight: 300;
}
.properties-page .info .title .title-line2 {
  font-size: 14px;
  color: #8e8c8c;
}
.properties-page .info .container-details {
  display: flex;
  flex-direction: column;
}
.properties-page .info .container-details .detail {
  margin-bottom: 15px;
}
.properties-page .info .container-details .detail .number {
  font-size: 24px;
  margin-bottom: -5px;
  color: #bcbfce;
  font-weight: 400;
}
.properties-page .info .container-details .detail .text {
  font-size: 14px;
  font-weight: normal;
  color: #bcbfce;
  font-weight: 400;
}
.properties-page .info .summary {
  color: #686868;
  font-weight: 600;
  margin-bottom: 20px;
  color: #8e8c8c;
}
.properties-page .swiper-info-1 {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 100px;
  height: 25%;
  /*    padding-inline:10px;
  */
}
.properties-page .slider-container {
  padding: 75px 0px;
  padding-bottom: 10px;
}
.properties-page .slider-container .propertise-slider-wrapper {
  padding-inline: 50px;
  position: relative;
}
.properties-page .slider-container .swiper {
  width: 100%;
  overflow: hidden;
  margin: auto;
  position: relative;
  min-height: 285px;
  direction: rtl;
}
.properties-page .slider-container .border-top1 {
  border-top: 1px solid rgba(142, 140, 140, 0.4509803922);
  padding-top: 20px;
}
.properties-page .slider-container .swiper-slide {
  display: flex;
  flex-direction: column;
  text-align: start;
  font-size: 18px;
  /* background: #fff;*/
  display: flex;
  /*justify-content: center;*/
  align-items: center;
}
.properties-page .slider-container .swiper-slide img {
  height: 100%;
}
.properties-page .slider-container .description-swiper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 13px;
}
.properties-page .slider-container .description-swiper .swiper-title {
  /*padding-block:5px;*/
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
}
.properties-page .slider-container .description-swiper .swiper-breif {
  font-size: 11px;
  color: #9ca1b7;
  font-weight: 600;
  padding-top: 2px;
}
.properties-page .slider-container .swiper-slide img {
  display: block;
  width: 100%;
  /* height: 200px;*/
  object-fit: cover;
  position: relative;
  height: 200px;
}
.properties-page .slider-container .title-slider {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  /*padding-block: 7px;*/
}
.properties-page .slider-container .slider-info {
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  /* height: 100%;*/
}
.properties-page .slider-container .slider-info .swiper-wrapper-info {
  height: 100%;
}
.properties-page .slider-container .slider-info .swiper-slide-info {
  display: flex;
}
.properties-page .slider-container .slider-info .slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.properties-page .slider-container .swiper-button-next {
  position: absolute;
  top: 50%;
  right: 15px;
  color: white;
  transform: translateY(-50%);
  direction: ltr;
}
.properties-page .slider-container .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 55px;
  color: white;
  transform: translateY(-50%);
  direction: ltr;
}
.properties-page .text-container {
  height: 60%;
}

.bg-brief {
  top: 40%;
  left: 16%;
  color: white;
  position: absolute;
  z-index: 2;
  position: absolute;
  text-transform: uppercase;
}
.bg-brief .brief-1 {
  font-size: 30px;
  background: #1f295b;
  padding: 5px 20px 0px 20px;
  font-weight: 400;
}
.bg-brief .brief-2 {
  float: left;
  clear: left;
  font-size: 14px;
  font-weight: 600;
  background: #1f295b;
  color: #8c90a3;
  padding: 0px 20px 5px 20px;
}

@media only screen and (max-width: 1399px) {
  .properties .item > .title .title-line1 {
    font-size: 16px !important;
  }
  .spaces-count {
    font-size: 12px !important;
  }
}
@media (max-width: 1399px) and (min-width: 1199px) {
  .properties .info .title .title-line1 {
    font-size: 24px !important;
  }
  .properties-page .report-table .column-title {
    font-size: 13px;
  }
  .properties-page .info .container-details .detail .number {
    font-size: 22px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .properties-page {
    flex-direction: column;
  }
  .properties-page .title-details {
    height: 50px;
  }
  .properties-page .table-title {
    color: white;
  }
  .properties-page .info .container-details .detail {
    margin-bottom: 15px;
  }
  .properties-page .info .container-details .detail .number {
    font-size: 18px;
    color: #9ca1b7;
  }
  .properties-page .info .container-details .detail .text {
    font-size: 14px;
    color: #9ca1b7;
  }
  .properties-page .properties-table-details {
    margin-inline-start: auto;
    width: 100%;
  }
  .properties-page .certified-title {
    color: #fff;
  }
  .bg-brief {
    max-width: 500px;
  }
  .bg-brief .brief-1 {
    font-size: 24px;
  }
  .spaces-count {
    font-size: 14px !important;
    margin-top: 12px !important;
  }
  .space-details-header-color {
    background: #121835 !important;
  }
}
@media only screen and (max-width: 991px) {
  .properties .item:first-child.active {
    right: 0%;
  }
  .container-details {
    align-items: center;
    justify-content: space-between;
    flex-direction: row !important;
  }
  .container-details .detail .number {
    font-size: 18px !important;
  }
  .slider-container .swiper-slide {
    height: 300px !important;
  }
  /* .space-details-row-color {
       // background: #121835 !important;
       background: #121835e6 !important;
   }*/
}
@media only screen and (max-width: 767px) {
  .properties-page .slider-container {
    padding: 60px 0px !important;
  }
  .properties-page .slider-container .propertise-slider-wrapper {
    padding-inline-end: 35px;
    padding-inline-start: 15px;
  }
  .properties-page .slider-container .swiper-button-prev {
    left: 15px;
  }
  .properties-page .slider-container .swiper-button-next {
    right: 2px;
  }
  .properties-page .info .text-container .container-info {
    padding-inline: 20px;
  }
  .properties-page .certified-box {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .properties-page .title-details {
    height: auto;
  }
}
* {
  padding: 0px;
  margin: 0px;
}

html {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: white;
  background-color: white;
}

:focus {
  outline: none !important;
}

a {
  transition: background 0.2s, transform 0.2s, color 0.2s, opacity 0.2s;
  text-decoration: none;
  color: white;
}
a:hover {
  color: white;
  text-decoration: none;
}

.specific-row {
  cursor: pointer;
}
.specific-row:hover {
  background-color: #7685d0 !important;
}

.specific-row-2 {
  cursor: pointer;
}
.specific-row-2:hover {
  background-color: rgb(175, 174, 174) !important;
}

/*.specific-row-2 {
    opacity:0.7;
}*/
/*.column-title {


    a {
        &:hover {
            color: red !important;
        }
    }
}*/
.animationTweek, .loading *, .inner-loading div, .moving, .wow {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
  transform: translate3d(0px, 0, 0);
  -webkit-transform: translate3d(0px, 0, 0);
}

.width-18 {
  width: 18% !important;
}

.clear:after, .news-page .right-section .subtitle:after, .navbar-default .navbar-nav li ul:after, .main-menu .top:after {
  display: block;
  clear: both;
  content: "";
}

iframe {
  width: 100%;
}

.transition {
  transition: background 0.2s, color 0.2s;
}

.rotate-180 {
  rotate: 180deg;
}

.locked {
  overflow: hidden;
}

.absoluteCenter, .loading img, .reports .item i:before, #innerSlider .slider-controls, .facts, #slider .slider-controls, #slider .caption, .logo {
  position: absolute;
  top: 0;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}

.absoluteCenterVertical, .properties .info .text-container, .properties .item > .title, .properties-page .info .text-container {
  position: absolute;
  top: 0;
  margin: auto;
  bottom: 0;
}

.backgroundTrans {
  transition: background 0.3s;
}

.move {
  transition: all 0.15s ease-in-out;
}

.header {
  position: relative;
  padding-top: 28px;
  z-index: 3;
}
.header .properties-header-link {
  margin-left: 0px !important;
}
.header > a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.header > a i {
  font-size: 24px;
}
.header > a:hover {
  color: #1f295b;
}
.header > a:visited {
  color: white;
}
.header .link {
  float: right;
}
.header .link i {
  margin-left: 15px;
  float: right;
}
.header .link i.fa-building {
  margin-left: 0;
  font-size: 17px;
}

.menu-toggle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  float: left;
  background: none;
}
.menu-toggle i {
  margin-right: 15px;
  margin-top: -1px;
  float: left;
}

.logo {
  display: block;
  width: 100%;
  text-align: center;
  height: 90px;
  position: absolute;
  z-index: 3;
  transform: translateY(-100%);
  transition: all 0.15s ease-in;
}
.logo img {
  transition: transform 0.2s;
  max-width: 230px;
}
.logo img:active, .logo img:focus {
  transform: scale(0.95, 0.95);
}

/*.menu-email-image{
    filter:invert(0.7);
}*/
.menu-social-icon {
  gap: 10px;
  justify-content: flex-end;
  padding-inline-end: 30px;
  align-items: center;
}
.menu-social-icon .social-icon {
  cursor: pointer;
}
.menu-social-icon .social-icon img {
  height: 18px;
}

.email-info {
  display: flex !important;
  gap: 20px;
  align-items: center;
  padding-bottom: 10px;
  cursor: pointer;
}
.email-info img {
  width: 22px;
  max-height: 28px;
}

.info-conent {
  font-size: 12px;
}

.main-menu {
  background: url(../../media/4szjok0m/menu3.png) no-repeat right top #1f295b;
  background-size: 100% auto;
  padding: 0px;
  overflow: hidden;
}
.main-menu .top {
  padding: 35px 30px 35px 120px;
}
.main-menu .top .menu-toggle .close-menu {
  width: 22px;
  height: 23px;
  margin: -1px 25px 0 0;
  display: block;
  float: left;
  background: url(../../Images/close.png) no-repeat center center;
}
.main-menu .top .menu-toggle:hover {
  opacity: 0.7;
}
.main-menu .languages {
  float: right;
  color: #8c90a3;
  margin-top: 1px;
}
.main-menu .languages .item {
  color: #8c90a3;
  text-transform: uppercase;
}
.main-menu .languages .item.active, .main-menu .languages .item:hover {
  color: white;
}
.main-menu .menu-logo {
  float: left;
  clear: left;
  margin: 25px 0 0 48px;
  position: relative;
  z-index: 3;
}
.main-menu .menu-logo:hover {
  opacity: 0.7;
}
.main-menu .info {
  display: block;
  position: relative;
  z-index: 2;
  clear: both;
  padding-left: 120px;
  padding-top: 20px;
  width: 100%;
  float: left;
  font-size: 18px;
  bottom: 10px;
}
.main-menu .info.absolute {
  position: absolute;
  left: 0px;
  bottom: 30px;
}
.main-menu .info > span {
  cursor: default;
}
.main-menu .info .item {
  display: block;
  clear: left;
  color: #8c90a3;
  transition: color 0.2s;
}
.main-menu .info .item:hover {
  color: white;
}
.main-menu .info .item span {
  float: left;
  margin-top: 2px;
}
.main-menu .info .item i {
  float: left;
  font-size: 22px;
  margin: 0 20px 15px 0;
}
.main-menu .info .item.social {
  float: right;
}
.main-menu .info .item.social:active, .main-menu .info .item.social:focus {
  transform: scale(0.85, 0.85);
}
.main-menu .menu-footer {
  clear: both;
  padding: 20px 120px;
  background: white;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  z-index: 2;
}
.main-menu .menu-footer .footer-logo {
  display: block;
  width: 75px;
}
.main-menu .menu-footer .footer-logo img {
  max-width: 100%;
}
.main-menu .menu-footer .copyrights {
  display: block;
  margin: 8px 0 0 0;
  font-size: 13px;
  color: #8c90a3;
}
.main-menu .menu-footer .copyrights p {
  margin: 0px;
}
.main-menu .menu-footer .copyrights a {
  color: #8c90a3;
}
.main-menu .menu-footer .copyrights a:hover {
  color: #1f295b;
}
.main-menu .menu-footer .itmam {
  color: #8c90a3;
  display: block;
  margin-top: 2px;
  transition: color 0.3s;
  clear: left;
  float: left;
}
.main-menu .menu-footer .itmam:hover {
  color: #1f295b;
  text-decoration: none;
}
.main-menu .menu-footer .itmam svg {
  fill: #8c90a3;
  transition: fill 0.3s;
  height: 17px;
  width: 60px;
}
.main-menu .menu-footer .itmam:hover svg {
  fill: #1f295b;
}
.main-menu .menu-footer .itmam span {
  display: inline-block;
  margin: 2px 5px 0 0;
  vertical-align: top;
  font-size: 13px;
  padding-inline-end: 10px;
}

.navbar-default {
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.navbar-default .navbar-nav {
  list-style: none;
  width: 100%;
  float: left;
  margin: 0;
  padding: 0 15px 35px 120px;
  flex-wrap: nowrap;
  overflow-y: scroll;
}
.navbar-default .navbar-nav li {
  clear: both;
  float: left;
  width: 100%;
}
.navbar-default .navbar-nav li a, .navbar-default .navbar-nav li span {
  display: block;
  position: relative;
  font-size: 18px;
  color: #8c90a3;
  padding: 0 0 0 18px;
  margin: 11px 0;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
}
.navbar-default .navbar-nav li a:before, .navbar-default .navbar-nav li span:before {
  opacity: 0;
  content: "";
  height: 0px;
  width: 0px;
  position: absolute;
  top: 6px;
  left: 0px;
  background: white;
  transition: all 0.2s;
}
.navbar-default .navbar-nav li ul {
  list-style: none;
  padding: 0px 0 0 20px;
  display: none;
  margin-bottom: 0px;
}
.navbar-default .navbar-nav li ul li a, .navbar-default .navbar-nav li ul li span {
  font-size: 14px;
  padding: 0 0 0 16px;
  margin: 4px 0;
}
.navbar-default .navbar-nav li ul li a:before, .navbar-default .navbar-nav li ul li span:before {
  opacity: 1;
  height: 6px;
  width: 6px;
  top: 7px;
  background: #8c90a3;
}
.navbar-default .navbar-nav li a:hover, .navbar-default .navbar-nav li.active > a {
  color: white;
}
.navbar-default .navbar-nav li a:hover:before, .navbar-default .navbar-nav li.active > a:before {
  opacity: 1;
  height: 7px;
  width: 7px;
  color: white;
  background: white;
}
.navbar-default .navbar-nav li li a:hover:before, .navbar-default .navbar-nav li li.active a:before {
  height: 6px;
  width: 6px;
}
.navbar-default .navbar-toggle {
  border-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: white;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: white;
}
.navbar-default .navbar-toggle:hover .icon-bar, .navbar-default .navbar-toggle:focus .icon-bar {
  background-color: #1f295b;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}

#slider {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  transition: all 0.15s ease-in;
}
#slider .carousel-inner {
  height: 100%;
}
#slider .small-slide, #slider .smaller-slide, #slider .large-slide {
  display: none;
}
#slider .item, #slider .moving-bg {
  height: 100%;
  background-size: cover;
  background-position-x: right;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #1f295b;
}
#slider .moving-objects {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 2;
}
#slider .moving-bg {
  position: absolute;
  width: 100%;
  background-color: transparent;
  /*background-size: calc(100% + 50px);
  transition:all .1s;*/
}
#slider .caption {
  font-size: 48px;
  text-transform: uppercase;
  height: 64px;
  position: fixed;
  text-align: center;
  color: white;
}
#slider .slider-controls {
  z-index: 2;
  height: 64px;
  display: none;
}
#slider .carousel-control {
  opacity: 0.45;
  text-shadow: none;
  height: 64px;
  width: 37px;
  box-shadow: none;
  background: url(../Images/arrows.png) no-repeat 0 0;
}
#slider .carousel-control.left {
  background-position: 0 -114px;
}
#slider .carousel-control:hover {
  opacity: 1;
}

.moving {
  transform: translateX(50%);
  animation: none;
}
.moving.logo {
  transform: translate(50%, -100%);
  animation: none;
}
.moving.facts {
  transform: translate(55%, 105%);
}

.facts {
  padding: 0px;
  position: fixed;
  z-index: 3;
  height: 176px;
  transform: translateY(105%);
  transition: all 0.15s ease-in;
}
.facts .facts-row {
  clear: left;
  float: left;
}
.facts .facts-row:last-of-type {
  margin: 15px 0 0 210px;
}
.facts .item {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(31, 41, 91, 0.3);
  color: rgba(255, 255, 255, 0.7);
  width: 195px;
  height: 90px;
  text-align: right;
  padding: 20px 15px 0 0;
  float: left;
  margin-right: 15px;
  font-weight: 300;
}
.facts .item div {
  display: block;
}
.facts .item .number {
  font-size: 18px !important;
  margin-bottom: -5px;
}
.facts .item .text {
  font-size: 13px;
  font-weight: normal;
}
.facts .item.main {
  padding: 7px 15px 0 0;
}
.facts .item.main .number {
  font-size: 36px;
}
.facts .item.alter {
  background: rgba(31, 41, 91, 0.7);
}
.facts .item.alter1 {
  background: rgba(129, 130, 132, 0.3);
}

.inner-logo {
  clear: both;
  display: block;
  margin: 7px 0 0 36px;
  width: max-content;
}
.inner-logo:active, .inner-logo:focus {
  transform: scale(0.9, 0.9);
}

.full-page-content {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #1f295b;
}
.full-page-content > div {
  width: 50%;
  left: 0;
  position: absolute;
  height: 100%;
}
.full-page-content > div:last-child {
  left: 50%;
}
.full-page-content .left-section {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 130px;
  min-height: 250px;
}
.full-page-content .left-section .page-title {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  color: white;
  text-transform: uppercase;
  padding: 0 15px;
}
.full-page-content .left-section .watermark {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  background: url("../../media/2rjbhqz3/about-watermark.png") 0 bottom no-repeat;
  background-size: 100% auto;
}
.full-page-content .right-section {
  padding: 130px 110px 100px 40px;
  color: #8c90a3;
  overflow-y: auto;
  text-align: justify;
}
.full-page-content .right-section img {
  max-width: 100%;
}
.full-page-content .right-section .subtitle {
  font-size: 18px;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  margin: 30px 0 15px;
  display: block;
}
.full-page-content .right-section .person-title {
  font-size: 14px;
  display: block;
  margin: -10px 0 15px;
  font-weight: 600;
}
.full-page-content .right-section ul {
  padding-left: 30px;
}
.full-page-content .right-section ul li {
  list-style-type: square;
}

.properties {
  background: black;
  float: left;
  width: 100%;
  margin-top: -91px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100vh;
}
.properties .item {
  position: relative;
  width: 20%;
  float: left;
  overflow: visible;
  min-height: 900px;
}
.properties .item .image {
  background-size: cover;
  background-position: left 0;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 1;
  transform-origin: center;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
.properties .item .image:after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease-out;
  position: absolute;
}
.properties .item > .title {
  z-index: 3;
  font-weight: 600;
  text-transform: uppercase;
  text-align: right;
  color: white;
  height: 90px;
  display: block;
  right: 0px;
  opacity: 0.8;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.properties .item > .title .title-line1 {
  font-size: 18px;
  padding-right: 20px;
}
.properties .item > .title .title-line2 {
  font-size: 14px;
  padding-right: 20px;
  margin-bottom: 10px;
}
.properties .item > .title .title-line3 {
  display: block;
  float: right;
  text-transform: none;
  text-align: left;
  padding: 5px 15px 5px 10px;
  background: rgba(31, 41, 91, 0.25);
  border: 1px solid white;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-top: 5px;
}
.properties .item > .title .title-line3:hover {
  background: rgba(31, 41, 91, 0.7);
}
.properties .item:hover, .properties .item .active {
  z-index: 3;
}
.properties .item:hover .image, .properties .item .active .image {
  z-index: 3;
  transform: scaleX(1.1);
}
.properties .item:hover .image:after, .properties .item .active .image:after {
  opacity: 1;
}
.properties .item:hover > .title, .properties .item .active > .title {
  opacity: 1;
  z-index: 4;
  transform: translateX(-10%);
}
.properties .item:hover .info, .properties .item .active .info {
  box-shadow: 1px 1px 30px -6px black;
}
.properties .item.active {
  z-index: 9;
  width: 28% !important;
}
.properties .item:last-child.active {
  transform: translateX(-10%);
  animation: none;
}
.properties .info {
  position: absolute;
  top: 0px;
  right: -10%;
  background: url(../../media/4szjok0m/menu3.png) right top no-repeat #1f295b;
  text-align: right;
  color: white;
  z-index: 5;
  width: 120%;
  height: 100%;
  padding: 60px 0px;
  display: none;
}
.properties .info .text-container {
  height: 550px;
  /*padding: 0 20px 0 20px;*/
  width: 100%;
  right: 0px;
}
.properties .info .title {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.properties .info .title .title-line1 {
  font-size: 27px;
  font-weight: 300;
}
.properties .info .title .title-line2 {
  font-size: 14px;
  color: #8e8c8c;
}
.properties .info .detail {
  margin-bottom: 15px;
}
.properties .info .detail .number {
  font-size: 24px;
  margin-bottom: -5px;
  color: #9ca1b7;
}
.properties .info .detail .text {
  font-size: 14px;
  font-weight: normal;
  color: #9ca1b7;
}
.properties .info .summary {
  color: #686868;
  font-weight: 600;
  margin-bottom: 20px;
  color: #8e8c8c;
}
.properties .read-more {
  float: right;
}
.properties .read-more:hover {
  background: white;
  color: #1f295b;
}
.properties .read-more:active:active, .properties .read-more:active:focus {
  transform: scale(0.97, 0.97);
}

.properties-map {
  clear: both;
}
.properties-map .page-title {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  background: black;
  padding: 20px 0;
  text-transform: uppercase;
}
.properties-map .page-title i {
  font-size: 18px;
  padding-left: 10px;
}
.properties-map iframe {
  width: 100%;
  min-height: 400px;
}

@keyframes smoothMove {
  0% {
    opacity: 1;
    bottom: 30px;
  }
  15% {
    opacity: 1;
    bottom: 15px;
  }
  50% {
    opacity: 0;
    bottom: 15px;
  }
  100% {
    opacity: 0;
    bottom: 30px;
  }
}
.details-link {
  color: white;
  font-size: 18px;
  position: absolute;
  border-radius: 5px;
  padding: 3px 7px;
  display: none;
  border: 2px solid white;
  position: absolute;
  right: 25px;
  bottom: 15px;
  z-index: 4;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.details-link.active {
  animation: smoothMove 2.5s linear infinite;
}
.details-link:hover {
  color: #1f295b;
  border-color: #1f295b;
}

.inner-image {
  margin-top: -91px;
  float: left;
  width: 100%;
  position: relative;
  max-height: 700px;
  overflow: hidden;
}
.inner-image .title {
  top: 40%;
  left: 15%;
  color: white;
  position: absolute;
  z-index: 2;
  position: absolute;
  text-transform: uppercase;
}
.inner-image .title .title-line1 {
  float: left;
  font-size: 30px;
  background: #1f295b;
  padding: 7px 30px 7px 20px;
}
.inner-image .title .title-line2 {
  float: left;
  clear: left;
  font-size: 14px;
  font-weight: 600;
  background: #1f295b;
  color: #8c90a3;
  padding: 0px 30px 12px 20px;
}
.inner-image img {
  width: 100%;
}
.inner-image .small-slide, .inner-image .smaller-slide {
  display: none;
}
.inner-image .facts {
  position: absolute;
  right: 0;
  display: block !important;
}
.inner-image .facts .facts-row {
  float: right;
}

.inner-details {
  overflow: hidden;
  clear: both;
  float: left;
  width: 100%;
  background: linear-gradient(to right, #1f295b 0%, #1f295b 50%, white 50%, white 100%);
  padding-bottom: 30px;
}
.inner-details .right-section {
  float: left;
  margin-left: -50px;
  padding-top: 50px;
  max-width: 50%;
}
.inner-details .left-section {
  color: #8c90a3;
  text-align: justify;
  float: left;
  max-width: 50%;
  padding: 50px 100px 50px 0;
}
.inner-details .left-section .page-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  margin-bottom: 25px;
}
.inner-details .left-section .subtitle {
  font-size: 16px;
  color: white;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
  margin: 0 0 -10px 0;
  display: block;
}
.inner-details .left-section p {
  padding-bottom: 20px;
}

#innerSlider .slider-controls {
  z-index: 2;
  width: 90%;
  height: 46px;
}
#innerSlider .carousel-control {
  opacity: 0.45;
  text-shadow: none;
  height: 46px;
  width: 27px;
  box-shadow: none;
  background: url(../Images/inner-arrows.png) no-repeat 0 0;
}
#innerSlider .carousel-control.right {
  background-position: 0px -86px;
}
#innerSlider .carousel-control:hover {
  opacity: 1;
}

.read-more {
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  float: left;
  border: 1px solid white;
  padding: 7px 20px;
  clear: left;
}
.read-more:active, .read-more:focus {
  transform: scale(0.9, 0.9);
}

.loading {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: white;
  display: block;
  z-index: 99999;
}

.reports {
  margin-top: 30px;
}
.reports .item {
  padding: 13px 20px 15px;
  color: #7685d0;
  background: #121835;
  display: block;
  border-bottom: 1px solid #1f295b;
  position: relative;
  padding-right: 90px;
}
.reports .item:nth-child(even) {
  background: #192048;
}
.reports .item i {
  color: #8c90a3;
  font-size: 20px;
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 60px;
  border-left: 1px solid #1f295b;
}
.reports .item i:before {
  width: 19px;
  height: 17px;
}
.reports .item:hover {
  background: white;
  color: #1f295b;
}
.reports .item:hover i {
  color: #1f295b;
}
.reports .item:active, .reports .item:focus {
  transform: scale(0.97, 0.97);
}

.news-page .left-section .news {
  position: absolute;
  background: white;
  padding: 20px 40px 20px 60px;
  color: #686868;
  z-index: 3;
  overflow: auto;
  left: 0px;
  bottom: 0px;
  min-height: 50%;
  height: 300px;
  width: 100%;
}
.news-page .left-section .news .item {
  padding: 5px 95px 5px 0;
  border-bottom: 2px solid whitesmoke;
  display: block;
  float: right;
  max-width: 100%;
  color: #686868;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: color 0.2s;
}
.news-page .left-section .news .item:hover {
  color: #1f295b;
}
.news-page .left-section .news .item .date {
  text-align: center;
  background: #1f295b;
  color: white;
  padding: 7px 18px;
  float: left;
  margin-right: 15px;
}
.news-page .left-section .news .item .date .month {
  font-size: 14px;
  font-weight: bold;
}
.news-page .left-section .news .item .date .day {
  font-size: 24px;
  font-weight: 300;
}
.news-page .left-section .news .item .title {
  float: left;
  text-transform: uppercase;
  max-width: 80%;
  padding-top: 7px;
}
.news-page .left-section .news .item .title .text {
  font-size: 14px;
  margin-bottom: 7px;
}
.news-page .left-section .news .item .title .author {
  clear: left;
  display: none;
}
.news-page .left-section .news .item .title .author span:last-child {
  color: #1f295b;
  font-weight: bold;
}
.news-page .left-section .news .item .summary {
  clear: both;
  margin-top: 8px;
  float: left;
  padding-bottom: 20px;
  display: none;
}
.news-page .left-section .news .item .news-read-more {
  position: absolute;
  padding: 3px 10px;
  bottom: 7px;
  right: 0px;
  text-align: center;
  text-transform: uppercase;
  background: #1f295b;
  color: white;
  transition: all 0.2s;
  border: 1px solid white;
  cursor: pointer;
}
.news-page .left-section .news .item .news-read-more:hover, .news-page .left-section .news .item .news-read-more.active {
  background: white;
  border-color: #1f295b;
  color: #1f295b;
}
.news-page .left-section .news .item .news-read-more:active {
  transition: transform 0.2s;
}
.news-page .left-section .news .item .news-read-more:active:active, .news-page .left-section .news .item .news-read-more:active:focus {
  transform: scale(0.96, 0.96);
}
.news-page .left-section .news .item.featured {
  padding-right: 0;
}
.news-page .right-section .subtitle .date {
  text-align: center;
  color: white;
  padding: 7px 18px;
  float: left;
  margin-right: 15px;
  border: 1px solid white;
}
.news-page .right-section .subtitle .date .month {
  font-size: 14px;
  font-weight: bold;
}
.news-page .right-section .subtitle .date .day {
  font-size: 24px;
  font-weight: 300;
}
.news-page .right-section .subtitle .title {
  float: left;
  max-width: 80%;
}
.news-page .right-section .subtitle .author {
  font-size: 12px;
  color: #686868;
}
.news-page .right-section .subtitle .author span:last-child {
  color: white;
}

.inner-loading {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #1f295b;
  display: none;
}
.inner-loading div {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  animation-iteration-count: infinite;
  animation-name: innerLoading;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background: url(../../media/4szjok0m/menu3.png) no-repeat right bottom;
}

@keyframes innerLoading {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.jspPane {
  width: 100%;
}

.jspVerticalBar {
  position: absolute;
  top: 0;
  right: 4px;
  width: 6px;
  height: 100%;
  background: none;
}

.jspHorizontalBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: none;
}

.jspDrag {
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0.4;
  background-color: white;
  border-radius: 4px;
  transition: opacity 0.2s ease-in-out;
}
.jspDrag.jspHover, .jspDrag:hover {
  opacity: 1;
}

.news .jspDrag {
  background: #1f295b !important;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
  background: #1f295b;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin-right: 5px;
  background: rgba(255, 255, 255, 0.6);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 255, 255, 0.4);
}

@keyframes loading {
  0% {
    background: #1f295b;
  }
  50% {
    background: white;
  }
  100% {
    background: #1f295b;
  }
}
.loadingAnimation {
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}

@keyframes horizontalProgressBar {
  0% {
    width: 0%;
  }
  25% {
    width: 22%;
  }
  50% {
    width: 55%;
  }
  75% {
    width: 83%;
  }
  100% {
    width: 100%;
  }
}
@keyframes white {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loading {
  position: fixed;
  top: 0px;
  left: 0px;
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  animation-name: loading;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading .loader {
  -webkit-animation-name: horizontalProgressBar;
  animation-name: horizontalProgressBar;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  background: #1f295b;
  height: 7px;
  left: 0;
  position: fixed;
  top: 0;
  width: 0%;
  z-index: 9999;
}
.loading img {
  max-width: 40%;
}
.loading img.white {
  animation-name: white;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  opacity: 0;
}

.properties-slider {
  width: 600px;
}
@media (max-width: 1199px) {
  .properties-slider {
    /* width: 500px;*/
    width: 100%;
  }
}
@media (max-width: 991px) {
  .properties-slider {
    width: 100%;
  }
}

.Media-Contact .team-contacts {
  display: flex;
  flex-wrap: wrap;
}
.Media-Contact .contact-box {
  padding: 12px;
  outline: 1px solid rgba(173, 179, 206, 0.41);
  transition: all 0.5s ease;
  flex: 200px;
  cursor: pointer;
  margin-top: 5px;
  margin-left: 5px;
}
.Media-Contact .contact-box:hover {
  background-color: rgba(226, 231, 228, 0.23);
}
.Media-Contact .person-name {
  font-size: 15px;
  font-weight: 600;
}
.Media-Contact .person-positiin {
  font-size: 13px;
}
.Media-Contact .team-contacts .person-image {
  height: 110px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
.Media-Contact .person-image img {
  border-radius: 12px;
  height: 100%;
}
.Media-Contact .line i {
  font-size: 15px;
  margin-right: 8px;
  display: inline-block;
  width: 20px;
}

/*start our videos*/
.video-page .our-videos {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
}
.video-page .video-box:hover {
  background-color: rgba(226, 231, 228, 0.23);
}
.video-page .video-box {
  outline: 1px solid rgba(173, 179, 206, 0.41);
  transition: all 0.5s ease;
  flex: 260px;
  cursor: pointer;
  margin-top: 10px;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
  padding: 2px;
  margin-bottom: 5px;
  height: 215px;
}
.video-page .video-title {
  position: absolute;
  font-size: 15px;
  padding: 5px;
  color: #fafafb;
  top: -50%;
  z-index: 2;
  transition: all 0.5s ease;
  text-align: initial;
}
.video-page .video-box:hover .video-title {
  top: 0%;
  background-color: rgba(31, 41, 91, 0.5411764706);
  width: 100%;
}

/*end our videos*/
/* Start contact us */
.contact-us-page .title-section {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
  text-align: initial;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
}
.contact-us-page .form-contact {
  width: 100%;
}
.contact-us-page .form-contact .input {
  margin-bottom: 10px;
}
.contact-us-page .form-contact .text-input {
  font-size: 14px;
  margin-bottom: 2px;
}
.contact-us-page textarea,
.contact-us-page input {
  width: 100%;
  border: none;
  padding: 7px;
  background-color: #eee;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contact-us-page textarea {
  height: auto;
  resize: none;
}
.contact-us-page .form-contact input:hover,
.contact-us-page .form-contact textarea:hover,
.contact-us-page .form-contact input:focus,
.contact-us-page .form-contact textarea:focus {
  background-color: rgba(0, 0, 0, 0.38);
  color: #8c90a3;
}
.contact-us-page button {
  float: right;
  padding: 5px 20px;
  border: none;
  color: #8c90a3;
  background-color: #eee;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contact-us-page button:hover {
  background-color: rgba(0, 0, 0, 0.38);
  color: #eee;
}
.contact-us-page .address .title {
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
}
.contact-us-page .info {
  font-size: 14px;
}
.contact-us-page .modal-title {
  color: #8c90a3;
  font-weight: 600;
}
.contact-us-page .modal-footer,
.contact-us-page .modal-header {
  background-color: rgba(15, 20, 45, 0.88);
}
.contact-us-page .modal-body {
  color: rgba(15, 20, 45, 0.88);
  font-size: 14px;
}

/* End contact us */
/*==End of Regular CSS==*/
/*==============================================*/
@media only screen and (max-width: 1190px) {
  .news-page .left-section .news {
    padding: 20px 40px 20px 40px;
  }
  .news-page .left-section .news .item {
    padding: 5px 0 25px 0;
  }
  .properties-page .info .container-details .detail {
    margin-bottom: 15px;
  }
  .properties-page .info .container-details .detail .number {
    font-size: 18px;
    color: #9ca1b7;
  }
  .properties-page .info .container-details .detail .text {
    font-size: 14px;
    color: #9ca1b7;
  }
}
@media only screen and (max-width: 1199px) {
  .main-menu .menu-footer {
    padding: 20px 60px;
  }
  /*  .no-scroll-mobile {
      overflow: hidden !important;
      height: 100%;
  }*/
  .navbar-default .navbar-nav {
    padding: 20px 60px;
  }
  .main-menu .top {
    padding: 35px 30px 35px 60px;
  }
  .main-menu .info {
    padding-left: 60px;
  }
  .width-18 {
    width: 100% !important;
  }
  .properties .item.active {
    z-index: 9;
    position: absolute;
    height: 100% !important;
    width: 100% !important;
  }
  /*    .item-width-200{
      height:200px !important;
  }*/
  .logo {
    height: 65px;
  }
  .logo img {
    width: 160px;
  }
  #slider .caption {
    font-size: 31.2px;
    height: 44px;
  }
  #slider .carousel-control {
    right: 15px;
  }
  #slider .carousel-control.left {
    left: 15px;
  }
  .full-page-content .left-section {
    padding-top: 100px;
  }
  .full-page-content .left-section .page-title {
    font-size: 49.2px;
  }
  .full-page-content .right-section {
    padding: 100px 40px 100px;
  }
  .properties {
    margin-top: -99px;
  }
  .properties .item {
    position: relative;
    width: 100%;
    height: 250px !important;
    min-height: initial;
    overflow: visible;
    /* &:first-child {
        .info {
            padding-top: 120px;
            width: 100%;
            top: -20px;
            min-height: 360px;
        }
    }*/
  }
  .properties .item .image {
    background-size: 100% auto;
    background-position: center;
  }
  .properties .item > .title {
    bottom: 20px;
    top: auto;
    right: 60px;
  }
  .properties .item > .title .title-line1 {
    font-size: 24px;
    padding-right: 0px;
    margin-top: -30px;
  }
  .properties .item > .title .title-line2 {
    font-size: 16px;
    padding-right: 0px;
  }
  .properties .item:hover .image, .properties .item .active .image {
    z-index: 3;
    transform: scaleY(1.2);
  }
  .properties .item:hover .image:after, .properties .item .active .image:after {
    opacity: 1;
  }
  .properties .item:hover > .title, .properties .item .active > .title {
    opacity: 1;
    z-index: 4;
    transform: translateX(-20%);
  }
  .properties .item .info {
    height: 120%;
    padding-top: 20px;
    width: 100%;
    top: -20px;
    min-height: auto;
    right: 0px;
    /*position: fixed;
    top: 0;
    height: auto;*/
  }
  .properties .item .info .title {
    width: 100%;
    text-align: center;
  }
  .properties .item .info .detail {
    float: right;
  }
  .properties .item .info .detail2 {
    float: left;
  }
  .properties .item .info .summary {
    clear: both;
    text-align: end;
  }
  .properties .item .info .text-container {
    height: auto;
    position: relative;
    top: 125px;
  }
  .properties .item .info .read-more {
    width: 100%;
    text-align: center;
  }
  .properties .item:last-child.active {
    transform: translateY(-10%);
  }
  .properties .item:last-child.active .info {
    padding-top: 120px;
  }
  .properties .properties-item-height-active {
    height: 180px !important;
  }
  .details-link {
    right: auto;
    left: 15px;
  }
  .inner-details {
    background: #1f295b;
    padding-bottom: 0px;
  }
  .inner-details .right-section {
    margin-left: 0;
    width: 100%;
    max-width: initial;
    padding: 30px 0 0px;
  }
  .inner-details .left-section {
    width: 100%;
    max-width: initial;
    padding: 50px 0 0px;
  }
  .news-page .left-section .news .item .title {
    max-width: 218px;
  }
  .news-page .right-section .subtitle .title {
    max-width: 75%;
  }
  .news-page .right-section .subtitle .date {
    padding: 7px 12px;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #slider .caption {
    font-size: 24px;
    height: 34px;
  }
  #slider .item {
    height: 100%;
  }
  #slider .slider-controls {
    display: none;
  }
  .facts {
    padding: 0 15px;
    bottom: 15px;
    top: auto;
    transform: translateY(0);
  }
  .facts .facts-row .item {
    margin-bottom: 15px;
  }
  .facts .facts-row .item:last-child {
    clear: left;
    margin-left: 100px;
  }
  .facts .facts-row:last-child {
    display: none;
  }
  .moving.facts {
    transform: translate(55%, 0);
  }
  .navbar-default.in {
    max-width: none;
  }
  .navbar-default .navbar-nav {
    margin: 0;
    padding-right: 0px;
  }
  .navbar-default .navbar-nav li.active a:before, .navbar-default .navbar-nav li.active span:before {
    display: block;
  }
  .navbar-default .menu-logo img {
    width: 100%;
  }
  .full-page-content > div {
    display: block;
    width: 100%;
    float: left;
    position: relative;
    height: 50%;
  }
  .full-page-content > div:last-child {
    left: 0px;
  }
  .full-page-content .left-section .page-title {
    text-align: left;
  }
  .full-page-content .right-section {
    padding: 0px 40px 50px;
  }
  .inner-image .large-slide {
    display: none;
  }
  .inner-image .small-slide {
    display: block;
  }
  .inner-details .container {
    padding: 0px;
  }
  .inner-details .right-section {
    margin-left: 0;
    width: 100%;
    padding: 30px 20px 0px;
  }
  .inner-details .left-section {
    WIDTH: 100%;
    max-width: initial;
    padding: 30px 20px 0px;
  }
  .inner-details .left-section .page-title {
    margin-bottom: 15px;
  }
  .inner-details .left-section p {
    margin-bottom: 0px;
  }
  .inner-image .facts .facts-row:last-child {
    display: block;
  }
  .moving-logo {
    left: -80px;
  }
  .full-page-content {
    position: absolute;
  }
  .full-page-content .left-section, .full-page-content .right-section, .full-page-content .news {
    position: relative;
    width: 100%;
    height: auto;
  }
  .full-page-content .right-section {
    background: #1f295b;
  }
  .full-page-content .left-section .news {
    position: relative;
    margin-top: 20px;
    padding: 20px 20px 20px 20px;
  }
  .full-page-content .left-section .news .item .summary {
    padding-bottom: 15px;
  }
  .full-page-content .left-section .news .item .title {
    max-width: 73%;
  }
  .full-page-content .left-section .news .item .title .text {
    margin-bottom: 0px;
  }
  .details-link {
    display: block;
  }
  .inner-image .title .title-line1 {
    font-size: 26px;
  }
  .facts .item {
    width: 190px;
    height: 60px;
    padding: 13px 13px 0 0;
  }
  .facts .item .number {
    font-size: 14px !important;
  }
  .facts .item .text {
    font-size: 12px;
  }
  .facts .item.main {
    padding: 7px 13px 0 0;
  }
  .facts .item.main .number {
    font-size: 24px;
  }
}
@media only screen and (max-width: 480px) {
  #slider .caption {
    font-size: 24px;
    height: 34px;
  }
  .facts .item {
    width: 145px;
    height: 60px;
    padding: 13px 13px 0 0;
  }
  .facts .item .number {
    font-size: 14px !important;
  }
  .facts .item .text {
    font-size: 12px;
  }
  .facts .item.main {
    padding: 7px 13px 0 0;
  }
  .facts .item.main .number {
    font-size: 24px;
  }
  .full-page-content > div {
    display: block;
    width: 100%;
    float: left;
    position: relative;
    height: 50%;
  }
  .full-page-content > div:last-child {
    left: 0px;
  }
  .full-page-content .left-section .page-title {
    text-align: left;
    font-size: 36px;
  }
  .full-page-content .right-section {
    padding: 0px 20px 50px;
  }
  .full-page-content .right-section .subtitle {
    margin: 20px 0 15px;
  }
  .full-page-content .right-section ul {
    padding-left: 20px;
  }
  .inner-image .small-slide {
    display: none;
  }
  .inner-image .smaller-slide {
    display: block;
  }
  .inner-image .title {
    right: 0;
    left: 0;
    width: 90%;
    margin: auto;
  }
  .inner-image .title .title-line1 {
    font-size: 24px;
  }
  .inner-image .facts {
    height: 140px;
  }
  .moving-logo {
    left: -230px;
  }
  .reports {
    margin-top: 20px;
  }
  .properties .item .info {
    padding: 15px 0px 0;
  }
  .properties .item .info .title .title-line1 {
    font-size: 16px;
  }
  .properties .item .info .detail .number {
    font-size: 24px;
    margin-bottom: -5px;
  }
  .properties .item .info .detail .text {
    font-size: 12px;
  }
  .properties .item > .title {
    bottom: 20px;
  }
  .properties .item > .title .title-line1 {
    font-size: 16px;
  }
  .news-page .left-section .news .item {
    padding: 5px 0 25px 0;
  }
  .news-page .left-section .news .item .title {
    padding-top: 4px;
  }
  .news-page .left-section .news .item .title .text {
    font-size: 12px;
  }
  .news-page .left-section .news .item .date {
    padding: 4px 13px;
    margin-right: 9px;
  }
  .news-page .left-section .news .item .date .day {
    font-size: 19.92px;
  }
  .news-page .right-section .subtitle .title {
    max-width: 74%;
  }
  .news-page .right-section .subtitle .date {
    padding: 5px 10px;
  }
  .main-menu .top {
    padding: 25px 15px 25px 30px;
  }
  .navbar-default .navbar-nav li a, .navbar-default .navbar-nav li span {
    font-size: 14px;
    padding: 0 0 0 16px;
    margin: 5px 0;
  }
  .navbar-default .navbar-nav li a:hover:before, .navbar-default .navbar-nav li.active > a:before {
    top: 7px;
    width: 6px;
    height: 6px;
  }
  .email-info {
    gap: 10px;
    font-size: 14px;
  }
  .email-info img {
    height: 20px;
  }
  .inner-image .title .title-line1 {
    padding: 7px 20px 7px 20px;
  }
  .no-scroll-mobile {
    overflow: hidden !important;
    height: 100%;
  }
  /* .properties .item.active {
      position: fixed;
      top: 0px;
  }*/
}
@media only screen and (max-width: 768px) and (max-height: 430px) and (orientation: landscape) {
  .facts {
    height: 135px;
    bottom: 3px;
  }
  .facts .facts-row .item {
    margin-bottom: 7px;
    width: 165px;
    height: 60px;
    padding: 9px 15px 0 0;
  }
  .facts .facts-row .item.main {
    padding: 4px 15px 0 0;
  }
  .facts .item .number {
    font-size: 19.2px;
  }
  .facts .item.main .number {
    font-size: 25.2px;
  }
  .moving-logo {
    left: -80px;
  }
  .main-menu .menu-logo {
    margin: 15px 0 0 48px;
  }
  .main-menu .top {
    padding: 25px 15px 15px 35px;
  }
  .navbar-default .navbar-nav li a, .navbar-default .navbar-nav li span {
    font-size: 14px;
    margin: 5px 0;
  }
  .main-menu .menu-footer {
    padding: 15px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-height: 550px) {
  .news-page .left-section .news {
    max-height: 50%;
  }
}
/*
       Languages will be removed and the default will be Spanish

2.       Properties Menu/Icon will be removed

3.       About Us section will be removed

4.       Facts will be removed from Home Page as we didn't receive any.

5.       Dummy Text will be removed and it will not be replaced by any in all pages.

*/
.facts {
  display: block !important;
}

@media only screen and (min-width: 1199px) {
  .spaces-link {
    display: flex !important;
  }
  .properties .item > .title .title-line3 {
    position: absolute;
    bottom: -130px;
    right: 0px;
  }
  .back-btn {
    display: none;
  }
}
.carousel {
  position: relative;
  line-height: 1;
}

.carousel-inner {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-inner > .item {
  display: none;
  position: relative;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 40%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  text-align: center;
  border: 3px solid white;
}
.carousel-control.right {
  left: auto;
  right: 15px;
}
.carousel-control:hover, .carousel-control:focus {
  color: white;
  text-decoration: none;
}

.carousel-indicators {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  margin: 0;
  list-style: none;
}
.carousel-indicators li {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  text-indent: -999px;
  background-color: #ccc;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}
.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.75);
}

.carousel-caption h4,
.carousel-caption p {
  color: white;
}

.carousel-caption h4 {
  margin: 0 0 5px;
}

.carousel-caption p {
  margin-bottom: 0;
}

.menu-link {
  display: flex;
  gap: 12px;
  /* &:hover {
      color: #1f295b !important;
  }*/
}

.properties-link {
  padding-inline-end: 15px;
  display: flex;
  align-items: baseline;
}
.properties-link i {
  height: 25px;
  position: relative;
  bottom: -3px;
  font-size: 19px !important;
}

.spaces-link {
  padding-inline-start: 15px;
  display: flex;
  align-items: baseline;
}
.spaces-link img {
  height: 21px;
  position: relative;
  bottom: -3px;
}

.border-inline-start {
  border-inline-start: 2px solid #c6d4d9;
}

@media (max-width: 479px) {
  .properties-page .slider-container .swiper-slide img {
    height: 170px !important;
  }
  .properties-page .slider-container .swiper-button-prev {
    top: 45%;
  }
  .properties-page .slider-container .swiper-button-next {
    top: 45%;
  }
  .header-item {
    font-size: 12px;
  }
  .spaces-link {
    padding-inline-start: 8px;
  }
  .spaces-link i {
    height: 18px;
    font-size: 19px !important;
  }
  .properties-link {
    padding-inline-end: 8px;
  }
  .properties-link i {
    height: 18px;
    font-size: 19px !important;
  }
  .menu-link {
    gap: 6px;
  }
  .inner-logo img {
    width: 70px;
  }
  .header.active {
    position: fixed;
  }
  .properties .item .image {
    background-size: cover;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1170px;
  }
}
.d-none {
  display: none;
}

/*.first-info-slide{
    right:-1% !important;
}*/
.btn-border {
  border: 1px solid #717797;
}

.test {
  position: relative;
}
