@font-face {
  font-family: 'RobotoCondensed-Light';
  src: url('../fonts/RobotoCondensed-Light.eot');
  src: url('../fonts/RobotoCondensed-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/RobotoCondensed-Light.woff2') format('woff2'),
      url('../fonts/RobotoCondensed-Light.woff') format('woff'),
      url('../fonts/RobotoCondensed-Light.ttf') format('truetype'),
      url('../fonts/RobotoCondensed-Light.svg#RobotoCondensed-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RobotoCondensed-Regular';
  src: url('../fonts/RobotoCondensed-Regular.eot');
  src: url('../fonts/RobotoCondensed-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/RobotoCondensed-Regular.woff2') format('woff2'),
      url('../fonts/RobotoCondensed-Regular.woff') format('woff'),
      url('../fonts/RobotoCondensed-Regular.ttf') format('truetype'),
      url('../fonts/RobotoCondensed-Regular.svg#RobotoCondensed-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RobotoCondensed-Bold';
  src: url('../fonts/RobotoCondensed-Bold.eot');
  src: url('../fonts/RobotoCondensed-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/RobotoCondensed-Bold.woff2') format('woff2'),
      url('../fonts/RobotoCondensed-Bold.woff') format('woff'),
      url('../fonts/RobotoCondensed-Bold.ttf') format('truetype'),
      url('../fonts/RobotoCondensed-Bold.svg#RobotoCondensed-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
	margin: 0;
	padding: 0;
}
html, body {
	color: #767a7e;
	font-family: 'RobotoCondensed-Regular', sans-serif;
	font-size: 20px;
	line-height: 1.6;
	height: 100%;
	letter-spacing: 0.6px;
	-webkit-overflow-scrolling:touch;
	font-weight: normal;
	font-style: normal;
}
b,
strong, .bold {
	font-family: 'RobotoCondensed-Bold';
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px 0;
	line-height: 1.2;
	font-weight: normal;
}
h1 {
  font-size: 72px;
  color: #2a578d;
  margin-bottom: 25px;
  font-family: 'RobotoCondensed-Bold';
  text-transform: uppercase;
}
h2 {
	font-size: 50px;
	margin-bottom: 25px;
	text-transform: uppercase;
	color: #2a578d;
	font-family: 'RobotoCondensed-Bold';
}
h3 {
	font-size: 40px;
	margin-bottom: 25px;
    color: #2a578d;
	text-transform: uppercase;
}
h4 {
	font-size: 30px;
  color: #2a578d;
	text-transform: uppercase;
	margin-bottom: 26px;
}
ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
[role=button] {
  cursor: pointer;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}
p {
	margin-bottom: 25px;
}
a {
	/*color: #323232;*/
  color: #e62243;
	/*text-decoration:none;*/
}
*:focus { outline: none; }
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
}

.pos-rel {position: relative;}
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.d-flex { display: flex; }

.align-items-center {
  align-items: center;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-end {
  align-items: flex-end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.row {
  --bs-gutter-x: 30px;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row.gutter-60 {
	--bs-gutter-x: 60px;
}
.row.gutter-40 {
	--bs-gutter-x: 40px;
}
.row.gutter-0 {
	--bs-gutter-x: 0;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.list-none {
  list-style: none;
}

.px-0 {
	padding-left: 0;
	padding-right: 0;
}
.px-50 {
	padding-left: 50px;
	padding-right: 50px;
}
.px-20 {
	padding-left: 20px;
	padding-right: 20px;
}
.py-0 {
	padding-top: 0;
	padding-bottom: 0;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.ml-auto {
	margin-left: auto;
}
.mt-auto {
	margin-top: auto;
}

.mt-20 {margin-top: 20px;}
.mb-20 {margin-bottom: 20px;}
.mb-25 {margin-bottom: 25px;}
.mb-50 {margin-bottom: 50px !important;}
.mb-60 {margin-bottom: 60px;}
.mb-70 {margin-bottom: 60px;}
.mb-100 {margin-bottom: 100px;}

.pb-60 {padding-bottom: 60px;}
.pb-20 {padding-bottom: 20px;}




.pt-0 {padding-top: 0;}
.pb-0 {padding-bottom: 0;}
.pt-100 {padding-top: 100px;}
.pt-80 {padding-top: 80px;}
.pt-70 {padding-top: 70px;}
.pt-50 {padding-top: 50px;}
.pt-60 {padding-top: 60px;}
.pt-30 {padding-top: 30px;}
.pt-20 {padding-top: 20px;}
.pt-10 {padding-top: 10px;}
.pt-5 {padding-top: 5px;}
.pb-100 {padding-bottom: 100px;}
.pb-80 {padding-bottom: 80px;}
.pb-70 {padding-bottom: 70px;}

.pb-50 {padding-bottom: 50px;}
.pb-40 {padding-bottom: 40px;}
.pb-30 {padding-bottom: 30px;}

.mb-10 {margin-bottom: 10px;}
.mb-15 {margin-bottom: 15px;}

.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-80 {margin-bottom: 80px;}
.mb-90 {margin-bottom: 90px;}

.mt-10 {margin-top: 10px;}
.mt-25 {margin-top: 25px;}
.mt-50 {margin-top: 50px;}
.mt-70 {margin-top: 70px;}
.mt-80 {margin-top: 80px;}
.mt-90 {margin-top: 90px;}
.mt-100 {margin-top: 100px;}

.mn-5 {
	margin-left: -5px;
	margin-right: -5px;
}
.mb-0 {
  margin-bottom: 0;
}
.frame-space-after-medium {
	padding-bottom: 90px;
}
.frame-space-after-medium, .frame-space-after-large {
	margin-bottom: 0
}
.frame-space-before-medium, .frame-space-before-large {
	margin-top: 0;
}
.frame-space-before-medium {
	padding-top: 120px;
}
.frame-space-before-large {
	padding-top: 160px;
}
.frame-space-after-large {
	padding-top: 160px;
}
.frame-space-after-small {
  margin-bottom: 50px;
}
.frame-space-before-small {
  margin-top: 50px;
}
.frame-space-before-extra-small {
  margin-top: 25px;
}
.frame-space-after-extra-small {
  margin-bottom: 25px;
}
.wt-80 {
	width: 80%;
}
.wt-90 {
	width: 90%;
}
.text-uppercase {
	text-transform: uppercase;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.d-block {
	display: block;
}
.d-none {
	display: none;
}
.frame-space-before-extra-large {
    margin-top: 8em;
}
.frame-space-after-extra-large {
    margin-bottom: 8em;
}
.btn {
  color: #fff;
  text-decoration: none;
  background-color: #2a578d;
  text-transform: uppercase;
  padding: 12px 20px;
  min-width: 270px;
  display: inline-block;
  font-size: 24px;
  text-align: center;
}
.btn-red {
  background-color: #e62243;
}
.btn-small {
  min-width: 142px;
  font-size: 20px;
  padding: 6px 15px;
}
.container {
  max-width: 1180px;
  width: 80%;
  margin: auto;
  /*
  padding-left: 15px;
  padding-right: 15px;
  */
}
.container-1040 {
  max-width: 1040px;
}
.container-900 {
  max-width: 900px;
}
#header {
  height: 145px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: #fff;
}
#header .container, .banner-text .container {
  max-width: 1320px;
  width: 90%;
}
.header-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
#content-area {
  padding-top: 145px;
}
.footer-wrap {
  padding-top: 45px;
  padding-bottom: 35px;
}
.footer-bottom .copyright p {
  margin-bottom: 15px;
}
.bg-blue {
  background-color: #2a578d;
  color: #fff;
}
.bg-white {
  background-color: #fff;
}
.bg-blue a {
  color: #fff;
}
#logo {
  position: relative;
  width: 280px;
  height: 230px;
  text-align: center;
/*
  width: 400px;
  height: 330px;
  */
}
#logo img {
  position: relative;
  z-index: 2;
  max-width: 80%;
  margin-top: 45px;
}
.home #logo {
  width: 485px;
  height: 400px;
  transition: 0.3s ease;
}
.home #logo img {
    margin-top: 10px;
}
.home.nav-open #logo {
  width: 280px;
  height: 230px;
}
#logo::before, #logo::after {
  content: '';
  position: absolute;
  top: 125px;
  z-index: 1;
  width: 70%;
  height: 85%;
}
#logo::before {
  right: -20%;
  background: linear-gradient(to right bottom, #fff 50%, transparent 50%);
}
#logo::after {
  left: -20%;
  background: linear-gradient(to left bottom, #fff 50%, transparent 50%);
}
.menu-btn {
  align-self: center;
  cursor: pointer;
}
.menu-btn .icon {
   width: 40px;
   height: 40px;
   display: inline-block;
   vertical-align: middle;
   transition: 0.3s ease;
}
.menu-btn .text {
  margin-left: 15px;
  display: inline-block;
  vertical-align: middle;
  font-size: 30px;
  color: #2a578d;
}
.menu-btn .close {
  display: none;
}
.nav-open .menu-btn .icon {
  transform: rotate(45deg);
}
.nav-open .menu-btn .close {
  display: block;
}
.nav-open .menu-btn .text {
  color: #e62243;
}
.nav-open .menu-btn svg .cls-1 {
  fill: #e62243;
}
.nav-open .menu-btn .open {
  display: none;
}
.footer-links ul {
  padding-left: 0;
  margin-bottom: 25px;
}
.footer-links li {
  list-style: none;
  display: inline-block;
}
.footer-links li:not(:last-child){
  padding-right: 5px;
}
.footer-links li:not(:last-child):after {
  content: '/';
  display: inline-block;
  padding-left: 5px;
}
.footer-links {
  font-size: 30px;
}
.banner {
  min-height: calc(100vh - 150px);
  height: 600px;
  overflow: hidden;
}
.banner-text {
  position: absolute;
  bottom: 14%;
  left: 0;
  width: 100%;
}
.banner-text-inner {
  max-width: 620px;
  position: relative;
  min-height: 250px;
}
.banner-text h1 {
	font-size: 70px;
}
.banner-text, .banner-text h1, .banner-text h2, .banner-text a {
  color: #fff;

}
.banner-text .sub-text, .banner-text .text {
  max-width: 520px;
}
.banner-text p, .banner-text .subheader {
  font-size: 30px;
  line-height: 1.4;
}
.banner-text .sub-text {
  font-size: 40px;
}

.banner-text .banner-text-inner::before {
  content: '';
  position: absolute;
  left: -57%;
  bottom: -180%;
  width: calc(105% + 50px);
  height: calc(288% + 200px);
  background: #2a578d;
  transform: rotate(45deg);
  opacity: 0.9;
  mix-blend-mode: multiply;
}
.banner-image {
  height: 100%;
  background-size: cover;
}
.header-with-bar, .frame-header-with-bar {
  margin-bottom: 25px;
}
.frame-header-with-bar {
  margin-bottom: 80px;
}
.header-with-bar h1, .header-with-bar h2, .frame-header-with-bar h1, .frame-header-with-bar h2 {
  position: relative;
  display: inline;
  background-image: linear-gradient(180deg, rgba(255,255,255,0) 65%, #e62243 -100%);
}
.container-bg-graphic {
	background-image: url(../images/container-bg-graphic.jpg);
	background-repeat: repeat;
}
.ce-intext.ce-left .ce-gallery {
  margin-right: 20px;
}
.ce-image.ce-center .ce-row, .frame-item-center .ce-textpic.ce-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ce-image.ce-center .ce-column:not(:last-child) {
  margin-right: 100px;
}
ul.list-arrow {
  padding-left: 0;
}
ul.list-arrow li {
  list-style: none;
  padding-left: 20px;
}
ul.list-arrow li:before {
  content: '>';
  display: inline-block;
  width: 15px;
  margin-left: -15px;
}
.menu li {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.menu li a {
  color: #767a7e;
  text-decoration: none;
}
.menu-group {
  padding-bottom: 25px;
  padding-right: 20px;
}
.menu-group .region-header {
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #767a7e;
}
.menu-group .region-header .logo {
  width: 85px;
  height: 35px;
  margin-right: 10px;
}
.menu-group .region-header .logo img {
  max-height: 100%;
  width: auto;
}
.menu-group .region-header .title {
  font-size: 18px;
  color: #2a578d;
  line-height: 1.4;
}
#wrapper {
  overflow: hidden;
  -webkit-overflow-scrolling:touch;
}
#menu-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  min-height: calc(100vh - 145px);
  background-color: #fafafa;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  top: 145px;
}
#menu-wrapper .container {
  padding-top: 65px;
  padding-bottom: 45px;
}
.nav-open #menu-wrapper {
  opacity: 1;
  visibility: visible;
}

.banner-text .region-logo {
  width: 200px;
}
.property-overview .banner {
  height: 510px;
  min-height: 510px;
}
.property-overview .banner-text .banner-text-inner::before {
  content: '';
  position: absolute;
  left: -30%;
  bottom: -165%;
  width: calc(85% + 50px);
  height: calc(200% + 200px);
  transform: rotate(45deg);
}
.property-overview .header-with-bar {
  min-width: 50vw;
  width: 1000px;
  max-width: 90vw;
}

.sticker {
  position: absolute;
  right: 0;
  top: -90px;
  width: 460px;
  height: 150px;
  /*
  background-image: url(../images/sticker.png);
  background-size: cover;
  font-size: 36px;
  line-height: 1.1;
  padding: 0px 90px;
  color: #fff;
  */

}
.sticker span {
  transform: rotate(-5deg);
}
#header a, #footer a {
  text-decoration: none;
}

.img-item {
  padding-bottom: 15px;
  padding-top: 15px;
}
.img-item-wrap {
  padding-bottom: 62%;
  position: relative;
  overflow: hidden;
}
.img-item-wrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  max-width: inherit;
}
.img-scale-hover img {
  transition: transform .5s ease;
  transform-origin: 0 0;
}
.img-item-wrap.img-scale-hover:hover img {
  transform: scale(1.5) translate(-50%, -50%);
}
.facilities-row .img {
  width: 160px;
}
.facilities-row .text {
  width: calc(100% - 160px);
}
.facilities-row.text-right ul, ol {
	direction: rtl;
}
.bg-overlay-botm {
  position: relative;
}
.bg-overlay-botm:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background-color: #fff;
}
.bg-overlay-botm >div {
  position: relative;
  z-index: 1;
}
.region-logos .logo {
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  max-width: 145px;
  display: block;
}
.region-logos .logo img, .select-region .logo img {
  max-height: 60px;
  width: auto;
}
.select-region {
  max-width: 860px;
  width: 90%;
  margin: auto;
  background-color: #fff;
}
.select-region .logo {
  width: 145px;
  margin-left: 0;
  margin-right: 40px;
}
.select-region a {
  text-decoration: none;
  color: #767a7e;
}
.select-region .logo img {
  display: block;
  margin: auto;
}
.select-region .select-input {
  border: 2px solid #2a578d;
}
.select-region .select-input .input-block {
  cursor: pointer;
}
.select-region .select-input .input-block, .select-region .select-dropdown li {
  padding: 10px 20px;
  font-size: 28px;
  text-transform: uppercase;
  min-height: 80px;
}
.select-region .select-dropdown li:nth-child(2n) {
  background-color: #e9eef3;
}
.select-dropdown {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #fff;
  top: 0;
  border: 2px solid #2a578d;
  z-index: 3;
}

.select-region .dropdown-btn {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 0;
  background-color: #2a578d;
  background-image: url(../images/selectbox-arrow-down.svg);
  background-size: 30px 15px;
  background-position: center center;
  background-repeat: no-repeat;
  width: 80px;
  z-index: 5;
  cursor: pointer;
}
.select-region.active .dropdown-btn {
  transform: rotate(180deg);
}

.map-info-winow {
    width: 350px;
    background-color: #fff;
    position: absolute;
    z-index: 4;
    display: none;
    margin-top: 25px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.map-info-winow .image-block .property-img{
    width: 100%;
}
.map-info-winow .image-block{
    min-height: 218px;
    background-color: #fafafa;
}
.map-info-winow .cblock {
  padding: 20px;
}
.map-info-winow h4 {
  font-size: 24px;
  font-family: 'RobotoCondensed-Bold';
  margin-bottom: 5px;
}
.map-info-winow .region-logo {
  width: 100px;
  position: absolute;
  left: 0;
  top: 0;
}
.map-botm-info {
  position: absolute;
  right: -50px;
  bottom: 100px;
  width: 30%;
  max-width: 300px;
  z-index: 2;
}
.btn-group > .btn:not(:last-child){
  margin-right: 15px;
}
.frame-layout-3 h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color:#767a7e;
  letter-spacing: 1px;
}
.frame-layout-3 h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.frame-layout-3 h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
#region-map-container {
	max-width: 1140px;
	margin: auto;
	padding-left: 15px;
	padding-right: 15px;
}
#region-map {
	position: relative;
}
#gmap_region, #gmap_wrap, .gmap_allpoints {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
#gmap_region {
	z-index: 2;
}
#gbase-img img, #gmap_wrap img, #gmap_region img, .gmap_allpoints img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}
#gimgmap {
  border: none;
}
#gmap-wrap {
  z-index: 3;
}
#gmap_region img {
  display: none;
  left: 0;
  position: absolute;
  top: 0;
}
#gmap_region img.impallpoint {
  display: block;
}
.fancybox-bg {
  background-color: #fff;
}
.fancybox-button {
  background: transparent !important;
}
.fancybox-button, .fancybox-button:visited, .fancybox-button:link {
  color: #000 !important;
}
.region-logos-container {
	max-width: 1600px;
	margin: auto;
}
#c1 .ce-gallery {
  /*margin-top: 10px;*/
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.home #loader {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-logo {
  width: 300px;
  max-width: 80%;
  display: none;
}
.archive-list .menu {
  padding-right: 0;
}
.header-with-subheader h2 {
  margin-bottom: 0;
}
.archive-list .menu ul {
  padding-left: 0;
}
.archive-list .menu li .property-title {
  padding-left: 10px;
  padding-top: 2px;
  width: calc(100% - 75px);
}
.archive-list .menu li .property-title:before {
  content: '>';
  display: inline-block;
  width: 7px;
  margin-left: -10px;
}
.archive-list .menu li .property-img {
  width: 65px;
  height: 30px;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
.archive-list .menu li > a {
  display: flex;
}
.archive-list .menu li .property-img img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  max-width: inherit;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner-cont-img {
	width: 400px;
	position: absolute;
	right: calc(0px + (100vw - 1860px)/2);
	top: 100px;
	z-index: 2;
}