/*
Theme Name: Enterprise Centre
Theme URI: https://www.enterprise-centre.org/
Author: Dan Curtis for Bamb
Author URI: https://www.bambcreative.com
Description: A custom WordPress website for Enterprise Shopping Centre
Text Domain: enterprisecentre
version: 1.0
*/
/*******************************************
Global
*******************************************/
html, body {
  width: 100%;
  max-width: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #0C182D;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.vertical-align {
  display: flex;
  align-items: center;
}

/*******************************************
Typography
*******************************************/
h1 {
  font-family: "Antonio", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -4%;
  font-size: 86px;
  color: #F26019;
}

h2 {
  font-family: "Antonio", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -4%;
  font-size: 46px;
  color: #F26019;
}

h3 {
  font-family: "Antonio", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -4%;
  font-size: 36px;
  color: #F26019;
}

h4 {
  font-family: "Antonio", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -4%;
  font-size: 30px;
  color: #F26019;
}

h5 {
  font-family: "Antonio", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -4%;
  font-size: 26px;
  color: #F26019;
}

h6 {
  font-family: "Antonio", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -4%;
  font-size: 20px;
  color: #F26019;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
}
p span.lead-text {
  font-size: 22px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  p span.lead-text {
    font-size: 18px;
  }
}

/*******************************************
Style Classes
*******************************************/
.pad-top-none {
  padding-top: 0;
}

.pad-top-sm {
  padding-top: 60px;
}

.pad-top-md {
  padding-top: 80px;
}

.pad-top-lg {
  padding-top: 120px;
}

.pad-bottom-none {
  padding-bottom: 0;
}

.pad-bottom-sm {
  padding-bottom: 60px;
}

.pad-bottom-md {
  padding-bottom: 80px;
}

.pad-bottom-lg {
  padding-bottom: 120px;
}

@media (max-width: 998px) {
  .pad-top-sm {
    padding-top: 20px;
  }
  .pad-top-md {
    padding-top: 40px;
  }
  .pad-top-lg {
    padding-top: 60px;
  }
  .pad-bottom-sm {
    padding-bottom: 20px;
  }
  .pad-bottom-md {
    padding-bottom: 40px;
  }
  .pad-bottom-lg {
    padding-bottom: 60px;
  }
}
/*******************************************
Buttons
*******************************************/
.btn-primary {
  background-color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 17px 30px;
  border-radius: 50px;
  display: inline-block;
  color: #0C182D;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  border: 1.5px solid #fff;
}
.btn-primary:hover {
  background-color: #F26019;
  border: 1.5px solid #F26019;
}

.btn-secondary {
  background-color: transparent;
  font-size: 14px;
  font-weight: 700;
  padding: 17px 30px;
  border-radius: 50px;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  border: 1.5px solid #fff;
}
.btn-secondary:hover {
  background-color: transparent;
  border: 1.5px solid #F26019;
  color: #F26019;
}

.video-btn {
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 700;
  padding: 17px 30px 17px 62.5px;
  border-radius: 50px;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  border: 1.5px solid #fff;
  background-image: url("./img/play-btn.svg");
  background-position: left 6px top 6px;
  background-repeat: no-repeat;
}
.video-btn:hover {
  background-color: transparent;
  border: 1.5px solid #E14CC2;
  color: #E14CC2;
  background-position: right 6px top 6px;
  padding: 17px 62.5px 17px 30px;
}

/*******************************************
Header
*******************************************/
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 200;
  padding: 25px 30px 0 30px;
}
header .top-bar .top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top-bar .top-info p {
  margin: 0;
}
header .top-bar .top-info p.hours {
  background-image: url("./img/clock.svg");
  background-repeat: no-repeat;
  background-position: left center;
  padding: 0 0 0 36px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}
header .top-bar .top-info .line {
  flex-grow: 1;
  height: 1px;
  background-color: #F26019;
  margin: 0 26px;
}
header .top-bar .top-info .info-right {
  display: flex;
  gap: 10px;
}
header .top-bar .top-info .info-right a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  background-repeat: no-repeat;
  background-position: left center;
}
header .top-bar .top-info .info-right a:hover {
  color: #F26019;
}
header .top-bar .top-info .info-right a.directions {
  background-image: url("./img/pin.svg");
  padding: 0 0 0 30px;
}
header .top-bar .top-info .info-right a.parking {
  background-image: url("./img/car.svg");
  padding: 0 0 0 32px;
}
header .top-bar .top-info .info-right a:last-child {
  margin: 0 0 0 20px;
}
header .site-navbar {
  padding: 40px 0 0 0;
}
header .site-navbar .navbar-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  header .site-navbar .navbar-items .site-logo {
    width: 160px;
  }
}
header .site-navbar .navbar-items .social {
  flex: 1;
}
header .site-navbar .navbar-items .social a {
  display: inline-block;
  margin: 0 14px 0 0;
}
header .site-navbar .navbar-items .social a:hover {
  transform: scale(1.1);
}
header .site-navbar .navbar-items .social a .social-item {
  border: 1.5px solid #fff;
  display: inline-block;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 60px;
}
header .site-navbar .navbar-items .social a .social-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
header .site-navbar .navbar-items .social a:last-child {
  margin: 0;
}
header .site-navbar .navbar-items .burger-wrapper {
  flex: 1;
}
header .site-navbar .navbar-items .burger-wrapper .burger {
  display: block;
  width: 56px;
  height: 56px;
  border: 1.5px solid #fff;
  border-radius: 60px;
  position: relative;
  float: right;
  cursor: pointer;
}
header .site-navbar .navbar-items .burger-wrapper .burger::before {
  content: "menu";
  color: #fff;
  position: absolute;
  left: -60px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 55px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
header .site-navbar .navbar-items .burger-wrapper .burger span {
  width: 18px;
  height: 1.75px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  left: 17.5px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
header .site-navbar .navbar-items .burger-wrapper .burger span:first-child {
  top: 21px;
}
header .site-navbar .navbar-items .burger-wrapper .burger span:last-child {
  top: 29px;
}
header .site-navbar .navbar-items .burger-wrapper .burger.active {
  border: 1.5px solid #0C182D;
}
header .site-navbar .navbar-items .burger-wrapper .burger.active span {
  top: 26px;
  background-color: #0C182D;
}
header .site-navbar .navbar-items .burger-wrapper .burger.active span:first-child {
  transform: rotate(45deg);
}
header .site-navbar .navbar-items .burger-wrapper .burger.active span:last-child {
  transform: rotate(-45deg);
}
header .site-navbar .navbar-items .burger-wrapper .burger.active::before {
  opacity: 0;
}
@media only screen and (max-width: 998px) {
  header {
    padding: 25px 7px 0 7px;
  }
}
@media only screen and (max-width: 768px) {
  header .site-navbar {
    padding: 20px 0 0 0;
  }
  header .site-navbar .navbar-items .social {
    display: none;
  }
  header .top-bar .top-info {
    justify-content: center;
  }
  header .top-bar .top-info .line {
    display: none;
  }
  header .top-bar .top-info .info-right {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  header .site-navbar .navbar-items .burger-wrapper .burger:before {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  header {
    padding: 5px 7px 0 7px;
  }
  header .top-bar {
    display: none;
  }
}

/*******************************************
Menu
*******************************************/
body.menu-active {
  height: 100vh;
  overflow: hidden;
}

.main-nav {
  background-color: #F26019;
  display: inline-block;
  padding: 60px 100px 60px 60px;
  border-radius: 20px;
  position: fixed;
  top: 90px;
  right: -60%;
  z-index: 210;
  max-width: 50%;
  max-height: calc(100vh - 120px);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
@media only screen and (max-width: 998px) {
  .main-nav {
    padding: 60px 140px 40px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .main-nav {
    max-width: 90%;
    width: 90%;
    right: -92%;
  }
}
@media only screen and (max-width: 576px) {
  .main-nav {
    top: 20px;
  }
}
@media only screen and (max-width: 420px) {
  .main-nav {
    padding: 60px 40px 20px 20px;
  }
}
.main-nav.active {
  right: 30px;
}
@media only screen and (max-width: 576px) {
  .main-nav.active {
    right: 20px;
  }
}
.main-nav .main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav .main-menu li a {
  font-family: "Antonio", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -4%;
  font-size: 46px;
  color: #F26019;
  color: #0C182D;
}
@media only screen and (max-width: 998px) {
  .main-nav .main-menu li a {
    font-size: 36px;
  }
}
@media only screen and (max-width: 576px) {
  .main-nav .main-menu li a {
    font-size: 30px;
  }
}
.main-nav .main-menu li a:hover {
  color: #fff;
}
.main-nav::-webkit-scrollbar {
  display: none;
}
.main-nav .burger-two {
  display: block;
  width: 56px;
  height: 56px;
  border: 1.5px solid #fff;
  border-radius: 60px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.main-nav .burger-two span {
  width: 18px;
  height: 1.75px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  left: 17.5px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.main-nav .burger-two span:first-child {
  top: 21px;
}
.main-nav .burger-two span:last-child {
  top: 29px;
}
.main-nav .burger-two.active {
  border: 1.5px solid #0C182D;
}
.main-nav .burger-two.active span {
  top: 26px;
  background-color: #0C182D;
}
.main-nav .burger-two.active span:first-child {
  transform: rotate(45deg);
}
.main-nav .burger-two.active span:last-child {
  transform: rotate(-45deg);
}
.main-nav .burger-two.active::before {
  opacity: 0;
}

.curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C182D;
  opacity: 0.8;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.curtain.active {
  visibility: visible;
  opacity: 0.8;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

/*******************************************
Footer
*******************************************/
footer {
  padding: 40px 0;
  text-align: center;
}
footer .footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-menu li {
  display: inline-block;
  margin: 0 28px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
}
footer .footer-menu li a {
  color: #fff;
}
footer .footer-menu li a:hover {
  color: #F26019;
}
@media only screen and (max-width: 998px) {
  footer .footer-menu li {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer-menu li {
    display: block;
    margin: 0 0 16px 0;
  }
  footer .footer-menu li:last-child {
    margin: 0;
  }
}
footer .content {
  margin: 40px 0 0 0;
}
footer .content p {
  font-size: 12px;
  margin: 0 0 10px 0;
}
footer .content p:first-child {
  opacity: 0.5;
}
footer .content p a {
  color: #fff;
  opacity: 0.5;
}
footer .content p a:hover {
  opacity: 1;
}
footer .content .legal-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: -2px;
}
footer .content .legal-menu li {
  display: inline-block;
  margin: 0 6px 0 0;
  padding: 0 10px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1;
}
footer .content .legal-menu li a {
  color: #fff;
  opacity: 0.5;
}
footer .content .legal-menu li a:hover {
  opacity: 1;
}
footer .content .legal-menu li:last-child {
  border-right: none;
}

.newsletter-cta {
  position: relative;
}
.newsletter-cta .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.newsletter-cta .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #0C182D;
}
.newsletter-cta .content {
  position: relative;
  z-index: 3;
  padding: 160px 0;
}
@media only screen and (max-width: 768px) {
  .newsletter-cta .content {
    padding: 100px 0;
  }
}
.newsletter-cta .content h4 {
  margin: 0 0 20px 0;
}
.newsletter-cta .content p {
  line-height: 1.8;
}
.newsletter-cta .content .nl-form {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  height: 74px;
  position: relative;
  border-radius: 200px;
  border: 1px solid #fff;
  width: calc(100% - 80px);
  margin: 40px 0 0 40px;
}
@media only screen and (max-width: 576px) {
  .newsletter-cta .content .nl-form {
    width: 100%;
    margin: 20px 0 0 0;
    height: 60px;
  }
}
.newsletter-cta .content .nl-form input[type=email] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  color: #fff;
  border-radius: 200px;
  outline: none;
  padding: 0 74px 0 28px;
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (max-width: 576px) {
  .newsletter-cta .content .nl-form input[type=email] {
    padding: 0 50px 0 10px;
  }
}
.newsletter-cta .content .nl-form input[type=submit] {
  background-image: url("./img/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0px;
  border: none;
  border-radius: 100px;
  width: 54px;
  height: 54px;
  background-color: #E14CC2;
  position: absolute;
  top: 9px;
  right: 10px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
@media only screen and (max-width: 576px) {
  .newsletter-cta .content .nl-form input[type=submit] {
    width: 40px;
    height: 40px;
    top: 9px;
  }
}
.newsletter-cta .content .nl-form input[type=submit]:hover {
  transform: scale(1.08);
}
.newsletter-cta .content .nl-form ::-moz-placeholder {
  color: #fff;
}
.newsletter-cta .content .nl-form ::placeholder {
  color: #fff;
}
.newsletter-cta .content .nl-form .gfield_validation_message {
  position: absolute;
  background-color: #E14CC2;
  color: #fff;
  border: none;
  border-radius: 300px;
  bottom: -50px;
  padding: 6px 20px;
}
.newsletter-cta .content .nl-form .gform_validation_errors {
  position: relative;
  top: -80px;
  background-color: #0C182D;
  border: 1px solid #E14CC2;
}
.newsletter-cta .content .nl-form .gform_validation_errors h2 {
  color: #fff;
}
.newsletter-cta .content .nl-form .gform_validation_errors h2 span {
  color: #E14CC2;
}

/*******************************************
Heros
*******************************************/
.home-hero {
  position: relative;
  min-height: 100vh;
}
.home-hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 7;
}
.home-hero .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C182D;
  z-index: 9;
}
.home-hero .fade-filter {
  position: absolute;
  width: 100%;
  height: 150px;
  bottom: 0;
  z-index: 9;
  background: linear-gradient(to bottom, rgba(12, 24, 45, 0) 0%, rgb(12, 24, 45) 100%);
}
.home-hero .video-container {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 8 !important;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}
.home-hero .video-container video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-hero .content {
  width: 100%;
  bottom: 60px;
  position: absolute;
  z-index: 10;
}
.home-hero .content h1 {
  font-size: 106px;
}
.home-hero .content h1 img {
  height: 92px;
  width: auto;
  margin: -8px 0 0 0;
}
.home-hero .content .hero-btns {
  margin: 60px 0 0 0;
}
.home-hero .content .hero-btns a {
  margin: 0 20px 0 0;
}
.home-hero .content .hero-btns a:last-child {
  margin: 0;
}
.home-hero .arrow {
  position: absolute;
  bottom: -150px;
  right: 0;
  z-index: 10;
}
@media only screen and (max-height: 500px) {
  .home-hero .content {
    position: relative;
    padding: 300px 0 70px 0;
  }
  .home-hero .content h1 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 998px) {
  .home-hero {
    min-height: 300px;
  }
  .home-hero .content {
    position: relative;
    padding: 400px 0 70px 0;
    bottom: initial;
  }
  .home-hero .content h1 {
    font-size: 80px;
  }
  .home-hero .arrow {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .home-hero .content {
    padding: 280px 0 60px 0;
  }
  .home-hero .content h1 {
    font-size: 48px;
  }
  .home-hero .content h1 img {
    height: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .home-hero .content {
    padding: 220px 0 0px 0;
  }
  .home-hero .content h1 {
    font-size: 40px;
    line-height: 1.4;
  }
  .home-hero .content h1 img {
    height: 36px;
  }
  .home-hero .content .hero-btns {
    margin: 30px 0 0 0;
  }
  .home-hero .content .hero-btns .btn-primary,
  .home-hero .content .hero-btns .btn-secondary {
    margin: 0 10px 10px 0;
  }
}

.page-hero {
  position: relative;
}
.page-hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 7;
}
.page-hero .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C182D;
  z-index: 9;
}
.page-hero .fade-filter {
  position: absolute;
  width: 100%;
  height: 150px;
  bottom: -1px;
  z-index: 9;
  background: linear-gradient(to bottom, rgba(12, 24, 45, 0) 0%, rgb(12, 24, 45) 100%);
}
.page-hero .video-container {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 8 !important;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}
.page-hero .video-container video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-hero .content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 260px 0 170px 0;
}
@media only screen and (max-width: 998px) {
  .page-hero .content {
    padding: 240px 0 80px 0;
  }
}
@media only screen and (max-width: 576px) {
  .page-hero .content {
    padding: 180px 0 80px 0;
  }
}
@media only screen and (max-width: 998px) {
  .page-hero .content h1 {
    font-size: 62px;
  }
}
@media only screen and (max-width: 768px) {
  .page-hero .content h1 {
    font-size: 38px;
  }
}
.page-hero .content h1 img {
  height: 75px;
  width: auto;
  margin: -8px 0 0 0;
}
@media only screen and (max-width: 998px) {
  .page-hero .content h1 img {
    height: 56px;
  }
}
@media only screen and (max-width: 768px) {
  .page-hero .content h1 img {
    height: 32px;
  }
}
.page-hero .content .hero-btns {
  margin: 60px 0 0 0;
}
.page-hero .content .hero-btns a {
  margin: 0 20px 0 0;
}
.page-hero .content .hero-btns a:last-child {
  margin: 0;
}
.page-hero .content .label {
  margin: 30px auto 0 auto;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 10px 18px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: table;
}
.page-hero .arrow {
  position: absolute;
  bottom: -150px;
  right: 0;
  z-index: 10;
}

.event-hero .content {
  padding: 260px 0 60px 0;
}
.event-hero .content h1 {
  font-size: 46px;
}
.event-hero .content .date {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin: 20px 0 0 0;
}
.event-hero .content .event-points {
  background-color: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin: 50px 0 0 0;
  display: inline-flex;
  gap: 120px;
  padding: 30px 40px;
  border-radius: 20px;
}
@media only screen and (max-width: 998px) {
  .event-hero .content .event-points {
    gap: 30px;
    padding: 20px 30px;
  }
}
@media only screen and (max-width: 758px) {
  .event-hero .content .event-points {
    display: block;
  }
}
.event-hero .content .event-points .item {
  display: flex;
  flex-direction: column;
  width: auto;
  border-radius: 8px;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 40px;
  background-size: auto 30px;
}
@media only screen and (max-width: 758px) {
  .event-hero .content .event-points .item {
    margin: 0 0 30px 0;
  }
  .event-hero .content .event-points .item:last-child {
    margin: 0;
  }
}
.event-hero .content .event-points .item.dates {
  background-image: url("./img/calendar-lg.svg");
}
.event-hero .content .event-points .item.website {
  background-image: url("./img/mouse-lg.svg");
}
.event-hero .content .event-points .item.phone {
  background-image: url("./img/phone-lg.svg");
}
.event-hero .content .event-points .item h5 {
  color: #fff;
  font-size: 21px;
}
.event-hero .content .event-points .item p {
  margin: 0;
  font-size: 16px;
  opacity: 0.8;
}
.event-hero .content .event-points .item a {
  color: #fff;
  font-size: 16px;
  opacity: 0.8;
}
.event-hero .content .event-points .item a:hover {
  opacity: 1;
  color: #F26019;
}
.event-hero.news-hero .content {
  padding: 260px 0 60px 0;
}

/*******************************************
Sections
*******************************************/
.tenant-highlight .intro {
  margin: 0 0 60px 0;
}
.tenant-highlight .intro p:last-child {
  margin: 0;
}
.tenant-highlight .tenant-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .tenant-highlight .tenant-slider {
    height: 380px;
  }
}
.tenant-highlight .tenant-slider .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tenant-highlight .tenant-slider .slick-slide {
  margin: 0 27px;
}
@media only screen and (max-width: 768px) {
  .tenant-highlight .tenant-slider .slick-slide {
    margin: 0 5px;
  }
}
.tenant-highlight .tenant-slider .slick-list {
  margin: 0 -27px;
}
@media only screen and (max-width: 768px) {
  .tenant-highlight .tenant-slider .slick-list {
    margin: 0 -5px;
  }
}
.tenant-highlight .tenant-slider .tenant-slide {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.tenant-highlight .tenant-slider .tenant-slide img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .tenant-highlight .tenant-slider .tenant-slide img {
    height: 300px;
  }
}
.tenant-highlight .tenant-slider .tenant-slide:hover img {
  transform: scale(1.1);
}
.tenant-highlight .tenant-slider .tenant-slide .filter {
  position: absolute;
  background-color: #0C182D;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  border-radius: 20px;
  z-index: 4;
}
.tenant-highlight .tenant-slider .tenant-slide .content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .tenant-highlight .tenant-slider .tenant-slide .content {
    bottom: 20px;
    left: 20px;
  }
}
.tenant-highlight .tenant-slider .tenant-slide .content h4 {
  color: #fff;
  margin: 0 0 16px 0;
}
.tenant-highlight .tenant-slider .tenant-slide .content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tenant-highlight .tenant-slider .tenant-slide .content ul li {
  display: inline-block;
  margin: 0 10px 0 0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 10px 20px;
}
.tenant-highlight .tenant-slider .tenant-slide .content ul li:last-child {
  margin: 0;
}
.tenant-highlight .tenant-slider .tenant-slide .content ul li.term {
  color: #0C182D;
}
.tenant-highlight .tenant-slider .tenant-slide .content ul li.label {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.tenant-highlight .tenant-slider .tenant-slide.slick-center img {
  height: 500px;
}
@media only screen and (max-width: 768px) {
  .tenant-highlight .tenant-slider .tenant-slide.slick-center img {
    height: 380px;
  }
}
.tenant-highlight .controls {
  margin: 60px 0 0 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .tenant-highlight .controls {
    margin: 40px 0 0 0;
  }
}
.tenant-highlight .controls div {
  width: 56px;
  height: 56px;
  border: 1px solid #fff;
  border-radius: 60px;
  display: inline-block;
  margin: 0 10px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  background-repeat: no-repeat;
}
.tenant-highlight .controls div:hover {
  transform: scale(1.1);
}
.tenant-highlight .controls div.prev {
  background-image: url("./img/arrow-sm-left.svg");
  background-position: left 20px center;
}
.tenant-highlight .controls div.next {
  background-image: url("./img/arrow-sm-right.svg");
  background-position: right 20px center;
}

.latest-info .latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 0px;
}
@media only screen and (max-width: 768px) {
  .latest-info .latest-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}
.latest-info .latest-grid .item {
  position: relative;
}
.latest-info .latest-grid .item h4.side {
  position: absolute;
  margin: 0;
  transform: rotate(-90deg);
  width: 300px;
  height: 40px;
  text-align: right;
  top: 130px;
  left: -140px;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  .latest-info .latest-grid .item h4.side {
    font-size: 26px;
  }
}
.latest-info .latest-grid .item h4.side span {
  background-color: #0C182D;
  padding-left: 20px;
}
.latest-info .latest-grid .item .line {
  width: 1px;
  height: 100%;
  background-color: #F26019;
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 1;
}
.latest-info .latest-grid .item .inner {
  padding: 0 0 0 50px;
}
.latest-info .latest-grid .item .inner .img-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 120%;
  border-radius: 20px;
  margin: 0 0 30px 0;
}
@media only screen and (max-width: 576px) {
  .latest-info .latest-grid .item .inner .img-wrapper {
    margin: 0 0 20px 0;
  }
}
.latest-info .latest-grid .item .inner .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.latest-info .latest-grid .item .inner .img-wrapper:hover img {
  transform: scale(1.1);
}
.latest-info .latest-grid .item .inner p.date {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}
.latest-info .latest-grid .item .inner h4 {
  color: #fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
@media only screen and (max-width: 576px) {
  .latest-info .latest-grid .item .inner h4 {
    font-size: 24px;
  }
}
.latest-info .latest-grid .item .inner h4:hover {
  color: #F26019;
}

.tenant-listing {
  position: relative;
}
.tenant-listing .arrow {
  position: absolute;
  top: 200px;
  right: 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .tenant-listing .arrow {
    display: none;
  }
}
.tenant-listing .content {
  position: relative;
  z-index: 10;
}
.tenant-listing .tenant-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  margin: 0 0 24px 0;
}
.tenant-listing .tenant-card img {
  width: 100%;
  height: 340px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  z-index: 1;
}
.tenant-listing .tenant-card:hover img {
  transform: scale(1.1);
}
.tenant-listing .tenant-card .filter {
  position: absolute;
  background-color: #0C182D;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  border-radius: 20px;
  z-index: 4;
}
.tenant-listing .tenant-card .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}
.tenant-listing .tenant-card .content h4 {
  color: #fff;
  margin: 0 0 16px 0;
  font-size: 26px;
}
.tenant-listing .tenant-card .content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tenant-listing .tenant-card .content ul li {
  display: inline-block;
  margin: 0 10px 0 0;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 10px 18px;
}
.tenant-listing .tenant-card .content ul li:last-child {
  margin: 0;
}
.tenant-listing .tenant-card .content ul li.term {
  color: #0C182D;
  display: none;
}
.tenant-listing .tenant-card .content ul li.label {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: calc(100% - 20px);
}
.tenant-listing .ec-filter {
  margin: 0 0 60px 0;
}
@media only screen and (max-width: 998px) {
  .tenant-listing .ec-filter {
    margin: 0 0 40px 0;
  }
}
.tenant-listing .ec-filter .ec-search {
  background: transparent;
}
.tenant-listing .ec-filter .ec-search .search-filter-input-text {
  background-color: transparent;
  border: none;
  height: 54px;
  border: 1.5px solid #fff;
  height: 54px;
  color: #fff;
  padding-left: 20px;
  background-image: url("./img/loop.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  border-radius: 50px;
}
.tenant-listing .ec-filter .ec-search .search-filter-input-text input[type=text] {
  background-color: transparent;
  height: 54px;
  color: #fff !important;
}
.tenant-listing .ec-filter .ec-search .search-filter-input-text .search-filter-icon {
  display: none !important;
}
.tenant-listing .ec-filter ::-moz-placeholder {
  color: #fff !important;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.tenant-listing .ec-filter ::placeholder {
  color: #fff !important;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.tenant-listing .ec-filter .search-filter-component-combobox-base {
  background-color: transparent;
  height: 54px;
  border: 1.5px solid #fff;
  border-radius: 60px;
  cursor: pointer;
}
.tenant-listing .ec-filter .search-filter-component-combobox-base input[type=text] {
  display: none;
}
@media only screen and (max-width: 998px) {
  .tenant-listing .ec-filter .search-filter-component-combobox-base {
    margin: 0 0 20px 0;
  }
}
.tenant-listing .ec-filter .search-filter-component-combobox-base .search-filter-icon {
  background-image: url("./img/dd-arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.tenant-listing .ec-filter .search-filter-component-combobox-base .search-filter-icon svg {
  display: none !important;
}

.search-filter-component-popup {
  background-color: transparent;
  border: 1.5px solid #fff;
  border-radius: 10px;
}
.search-filter-component-popup li {
  color: #fff;
  cursor: pointer;
}
.search-filter-component-popup li.search-filter-component-combobox-base__listbox-option--selected {
  background-color: #F26019;
}

.search-filter-component-combobox-base__listbox-option--active {
  background-color: #F26019 !important;
}

.search-filter-component-combobox__header {
  height: 54px;
  padding-left: 14px;
}
.search-filter-component-combobox__header span {
  color: #fff !important;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 1.6px;
  background-color: #0C182D;
}
.search-filter-component-combobox__header::before {
  content: "Sort by";
  color: #fff !important;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 1.6px;
  position: absolute;
  top: 18px;
  left: 22px;
}

.search-filter-component-combobox__clear-selection {
  display: none !important;
}

.cta-cards .cta-grid {
  display: grid;
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.cta-cards .cta-grid.card-grid-one {
  grid-template-columns: repeat(1, 1fr);
}
.cta-cards .cta-grid.card-grid-one .cta-card .content {
  padding: 120px 30px 120px 120px;
  text-align: left;
}
@media only screen and (max-width: 998px) {
  .cta-cards .cta-grid.card-grid-one .cta-card .content {
    padding: 100px 20px;
    text-align: center;
  }
}
.cta-cards .cta-grid.card-grid-one .cta-card .content h3 {
  font-size: 36px;
}
.cta-cards .cta-grid.card-grid-one .cta-card .content h3 img {
  height: 34px;
}
.cta-cards .cta-grid.card-grid-two {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 998px) {
  .cta-cards .cta-grid.card-grid-two {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cta-cards .cta-grid.card-grid-two .cta-card .content {
  padding: 150px 30px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .cta-cards .cta-grid.card-grid-two .cta-card .content {
    padding: 100px 10px;
  }
}
.cta-cards .cta-grid.card-grid-three {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 998px) {
  .cta-cards .cta-grid.card-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .cta-cards .cta-grid.card-grid-three {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cta-cards .cta-grid.card-grid-three .cta-card .content {
  padding: 100px 20px;
  text-align: center;
}
.cta-cards .cta-grid .cta-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.cta-cards .cta-grid .cta-card .filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0C182D;
  opacity: 0.4;
  z-index: 20;
}
.cta-cards .cta-grid .cta-card .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta-cards .cta-grid .cta-card .content {
  position: relative;
  z-index: 20;
}
.cta-cards .cta-grid .cta-card .content h3 {
  font-size: 46px;
  color: #fff;
  margin: 0 0 30px 0;
}
@media only screen and (max-width: 998px) {
  .cta-cards .cta-grid .cta-card .content h3 {
    font-size: 32px;
  }
}
.cta-cards .cta-grid .cta-card .content h3 img {
  height: 40px;
  width: auto;
  margin: -6px 0 0 4px;
}
@media only screen and (max-width: 998px) {
  .cta-cards .cta-grid .cta-card .content h3 img {
    height: 30px;
  }
}
.cta-cards .cta-grid .cta-card .content .btn-secondary {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.img-slider-block .img-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 680px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .img-slider-block .img-slider {
    height: 580px;
  }
}
@media only screen and (max-width: 576px) {
  .img-slider-block .img-slider {
    height: 380px;
  }
}
.img-slider-block .img-slider .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-slider-block .img-slider .slick-slide {
  margin: 0 27px;
}
@media only screen and (max-width: 998px) {
  .img-slider-block .img-slider .slick-slide {
    margin: 0 10px;
  }
}
.img-slider-block .img-slider .slick-list {
  margin: 0 -27px;
}
@media only screen and (max-width: 998px) {
  .img-slider-block .img-slider .slick-list {
    margin: 0 -10px;
  }
}
.img-slider-block .img-slider .tenant-img-slide {
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .img-slider-block .img-slider .tenant-img-slide {
    height: 420px;
  }
}
@media only screen and (max-width: 576px) {
  .img-slider-block .img-slider .tenant-img-slide {
    height: 260px;
  }
}
.img-slider-block .img-slider .tenant-img-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-slider-block .img-slider .tenant-img-slide.slick-center {
  height: 600px;
}
@media only screen and (max-width: 768px) {
  .img-slider-block .img-slider .tenant-img-slide.slick-center {
    height: 500px;
  }
}
@media only screen and (max-width: 576px) {
  .img-slider-block .img-slider .tenant-img-slide.slick-center {
    height: 300px;
  }
}
.img-slider-block .img-slider .slick-dots {
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
  bottom: 0px;
}
.img-slider-block .img-slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.img-slider-block .img-slider .slick-dots li button {
  font-size: 0px;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.img-slider-block .img-slider .slick-dots li.slick-active button {
  background-color: #F26019;
  width: 20px;
}

.tenant-details {
  position: relative;
}
.tenant-details .details {
  background-color: #F26019;
  padding: 36px 25px;
  border-radius: 20px;
}
@media only screen and (max-width: 1200px) {
  .tenant-details .details {
    padding: 30px;
  }
}
.tenant-details .details .detail-item {
  margin: 0 0 30px 0;
  padding: 0 0 0 54px;
  background-repeat: no-repeat;
  background-position: top left;
}
.tenant-details .details .detail-item.website {
  background-image: url("./img/mouse.svg");
  background-position: top left 2px;
}
.tenant-details .details .detail-item.phone {
  background-image: url("./img/phone.svg");
  background-position: top left 3px;
}
.tenant-details .details .detail-item.email {
  background-image: url("./img/tenant-email.svg");
  background-position: top left 0px;
}
.tenant-details .details .detail-item.hours {
  background-image: url("./img/clock-two.svg");
}
.tenant-details .details .detail-item h5 {
  color: #0C182D;
  font-size: 20px;
  margin: 0 0 10px 0;
}
.tenant-details .details .detail-item a {
  color: #0C182D;
  font-weight: 600;
}
.tenant-details .details .detail-item table tr td {
  font-weight: 600;
}
.tenant-details .details .detail-item table tr td:first-child {
  padding: 4px 40px 4px 0;
}
.tenant-details .details .social img {
  margin: 0 10px 0 0;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  width: 44px;
  height: 44px;
}
.tenant-details .details .social img:hover {
  transform: scale(1.1);
}
.tenant-details .content {
  padding: 0 0 0 8%;
}
@media only screen and (max-width: 1200px) {
  .tenant-details .content {
    padding: 0;
    margin: 0 0 30px 0;
  }
}
.tenant-details .content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tenant-details .content ul li {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  background-image: url("./img/bullet.svg");
  background-repeat: no-repeat;
  background-position: top 9px left;
  padding: 0 0 0 40px;
  margin: 0 0 8px 0;
}
.tenant-details .content .useful-info {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 23px 50px 23px 70px;
  border-radius: 4px;
  background-image: url("./img/information.svg");
  background-position: top 29px left 30px;
  background-repeat: no-repeat;
  margin: 40px 0 0 0;
}
.tenant-details .content .useful-info p {
  font-size: 16px;
  font-weight: 700;
}
.tenant-details .content .useful-info p:last-child {
  margin: 0;
}

.img-and-text img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media only screen and (max-width: 998px) {
  .img-and-text img {
    margin: 0 0 30px 0;
  }
}
.img-and-text .content.space-left {
  padding: 0 0 0 80px;
}
@media only screen and (max-width: 998px) {
  .img-and-text .content.space-left {
    padding: 0;
  }
}
.img-and-text .content.space-right {
  padding: 0 80px 0 0;
}
@media only screen and (max-width: 998px) {
  .img-and-text .content.space-right {
    padding: 0;
  }
}
.img-and-text .content :is(h1, h2, h3, h4, h5, h6):first-of-type {
  margin: 0 0 24px 0;
}
.img-and-text .content .ec-btns {
  margin: 40px 0 0 0;
}
.img-and-text .content .ec-btns .btn-primary,
.img-and-text .content .ec-btns .btn-secondary {
  margin: 0 18px 0 0;
}
@media only screen and (max-width: 768px) {
  .img-and-text .content .ec-btns .btn-primary,
  .img-and-text .content .ec-btns .btn-secondary {
    margin: 0 10px 10px 0;
  }
}
.img-and-text .content .ec-btns .btn-primary:last-child,
.img-and-text .content .ec-btns .btn-secondary:last-child {
  margin: 0;
}

.hero-scrollspy-nav {
  position: sticky;
  top: 40px;
  z-index: 180;
  display: table;
  margin: -60px auto 0 auto;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 100px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media only screen and (max-width: 768px) {
  .hero-scrollspy-nav {
    display: block;
    border-radius: 20px;
    position: relative;
    top: 0px;
  }
}
.hero-scrollspy-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-scrollspy-nav ul li {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .hero-scrollspy-nav ul li {
    display: block;
  }
}

.hero-scrollspy-nav a {
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 17px 60px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
@media only screen and (max-width: 998px) {
  .hero-scrollspy-nav a {
    padding: 14px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .hero-scrollspy-nav a {
    display: block;
    text-align: center;
  }
}
.hero-scrollspy-nav a:hover {
  color: #F26019;
}

.hero-scrollspy-nav a.active {
  color: #0C182D;
  background-color: #F26019;
}

.events-listing .next-event .img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding-top: 60%;
  margin: 0 0 30px 0;
}
.events-listing .next-event .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.events-listing .next-event .date {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}
.events-listing .next-event h4 {
  color: #fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.events-listing .next-event:hover h4 {
  color: #F26019;
}
.events-listing .next-event:hover .img-wrapper img {
  transform: scale(1.06);
}
.events-listing .events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 60px;
  margin: 80px 0 0 0;
}
@media only screen and (max-width: 998px) {
  .events-listing .events-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 40px;
    margin: 40px 0 0 0;
  }
}
@media only screen and (max-width: 576px) {
  .events-listing .events-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 40px;
    margin: 40px 0 0 0;
  }
}
.events-listing .events-grid .event-sm .img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding-top: 95%;
  margin: 0 0 30px 0;
}
@media only screen and (max-width: 576px) {
  .events-listing .events-grid .event-sm .img-wrapper {
    padding-top: 60%;
  }
}
.events-listing .events-grid .event-sm .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.events-listing .events-grid .event-sm .date {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}
.events-listing .events-grid .event-sm h4 {
  color: #fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.events-listing .events-grid .event-sm:hover h4 {
  color: #F26019;
}
.events-listing .events-grid .event-sm:hover .img-wrapper img {
  transform: scale(1.06);
}

.pager-navigation {
  background-color: rgba(255, 255, 255, 0.15);
  display: table;
  margin: 60px auto 0 auto;
  padding: 10px 5px;
  border-radius: 80px;
}
.pager-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.pager-navigation ul li {
  display: inline-block;
}
.pager-navigation ul li a {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  line-height: 50px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  margin: 0 5px;
}
.pager-navigation ul li a:hover {
  color: #0C182D;
  background-color: #F26019;
}
.pager-navigation ul li.active a {
  background-color: #F26019;
  color: #0C182D;
}

.news-listing .news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 64px;
  grid-row-gap: 60px;
}
@media only screen and (max-width: 1200px) {
  .news-listing .news-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}
@media only screen and (max-width: 998px) {
  .news-listing .news-grid {
    grid-column-gap: 24px;
    grid-row-gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .news-listing .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-listing .news-grid .item .img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 0 30px 0;
}
.news-listing .news-grid .item .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.news-listing .news-grid .item h4 {
  color: #fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.news-listing .news-grid .item p.date {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}
.news-listing .news-grid .item:hover .img-wrapper img {
  transform: scale(1.06);
}
.news-listing .news-grid .item:hover h4 {
  color: #F26019;
}

.direction-instructions h4 {
  color: #fff;
  margin: 0 0 30px 0;
}
@media only screen and (max-width: 998px) {
  .direction-instructions h4 {
    text-align: center;
  }
}
.direction-instructions .nav-pills {
  background-color: rgba(255, 255, 255, 0.08);
  display: table;
  padding: 10px 5px;
  border-radius: 80px;
  margin: 0 0 40px 0;
}
@media only screen and (max-width: 998px) {
  .direction-instructions .nav-pills {
    margin: 0 auto 20px auto;
  }
}
.direction-instructions .nav-pills li {
  display: inline-block;
}
.direction-instructions .nav-pills li button {
  background-color: transparent;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 60px;
  border-radius: 60px;
  color: #fff;
  margin: 0 5px;
}
@media only screen and (max-width: 768px) {
  .direction-instructions .nav-pills li button {
    padding: 14px 20px;
  }
}
.direction-instructions .nav-pills li button.active {
  background-color: #F26019;
  color: #0C182D;
}
.direction-instructions .nav-pills li button:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.direction-instructions .content {
  padding: 0 28% 0 0;
}
@media only screen and (max-width: 998px) {
  .direction-instructions .content {
    padding: 0 10%;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .direction-instructions .content {
    padding: 0;
  }
}
.direction-instructions .content .btn-secondary {
  margin: 30px 0 0 0;
}
.direction-instructions .acf-map {
  width: 100%;
  height: 500px;
  border-radius: 20px;
}
@media only screen and (max-width: 998px) {
  .direction-instructions .acf-map {
    margin: 30px 0 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .direction-instructions .acf-map {
    height: 380px;
  }
}
.direction-instructions .address {
  margin: 30px 0 0 0;
  background-image: url("./img/pin-lg.svg");
  background-repeat: no-repeat;
  background-position: left center;
  padding: 0 0 0 50px;
}
.direction-instructions .address h6 {
  font-size: 21px;
  color: #fff;
}
.direction-instructions .address p {
  font-size: 16px;
}

.letting-listing .letting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 60px;
}
@media only screen and (max-width: 998px) {
  .letting-listing .letting-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 576px) {
  .letting-listing .letting-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
.letting-listing .letting-grid .unit .img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 90%;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 0 30px 0;
}
.letting-listing .letting-grid .unit .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.letting-listing .letting-grid .unit h4 {
  color: #fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.letting-listing .letting-grid .unit p {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.letting-listing .letting-grid .unit:hover h4 {
  color: #F26019;
}
.letting-listing .letting-grid .unit:hover .img-wrapper img {
  transform: scale(1.08);
}

.testimonials {
  text-align: center;
}
.testimonials p {
  font-size: 24px;
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 768px) {
  .testimonials p {
    font-size: 19px;
  }
}
.testimonials p:last-of-type {
  margin: 0;
}
.testimonials h5 {
  margin: 40px 0 0 0;
}
.testimonials .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 20px 0 0 0;
}
.testimonials .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.testimonials .slick-dots li button {
  font-size: 0px;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.testimonials .slick-dots li.slick-active button {
  background-color: #F26019;
  width: 20px;
}

.contact-details .details {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 64px 42px 64px 42px;
  border-radius: 20px;
}
@media only screen and (max-width: 998px) {
  .contact-details .details {
    padding: 30px;
  }
}
.contact-details .details .item {
  margin: 0 0 60px 0;
  background-repeat: no-repeat;
  padding: 0 0 0 44px;
}
@media only screen and (max-width: 998px) {
  .contact-details .details .item {
    text-align: center;
    background-position: top center;
    padding: 50px 0 0 0;
    margin: 0 0 30px 0;
  }
  .contact-details .details .item:last-child {
    margin: 0;
  }
}
.contact-details .details .item:last-child {
  margin: 0;
}
.contact-details .details .item:last-child p {
  margin-bottom: 0;
}
.contact-details .details .item h6 {
  font-size: 21px;
  color: #fff;
}
.contact-details .details .item a,
.contact-details .details .item p {
  color: #fff;
  opacity: 0.8;
  font-size: 16px;
}
.contact-details .details .item a:hover {
  opacity: 1;
  color: #F26019;
}
.contact-details .details .item.phone {
  background-image: url("./img/phone-lg.svg");
}
.contact-details .details .item.email {
  background-image: url("./img/mouse-lg.svg");
}
.contact-details .details .item.address {
  background-image: url("./img/pin-lg.svg");
}
.contact-details .acf-map {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 998px) {
  .contact-details .acf-map {
    height: 380px;
    margin: 30px 0 0 0;
  }
}
@media only screen and (max-width: 576px) {
  .contact-details .acf-map {
    height: 300px;
  }
}

.text-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.text-block ul li {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  background-image: url("./img/bullet.svg");
  background-repeat: no-repeat;
  background-position: top 9px left;
  padding: 0 0 0 40px;
  margin: 0 0 8px 0;
}
.text-block ol {
  padding: 0 0 0 14px;
}
.text-block ol li {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 8px 0;
}
.text-block p a {
  color: #fff;
  text-decoration: underline;
}
.text-block p a:hover {
  color: #F26019;
}
.text-block p:last-child {
  margin: 0;
}
.text-block h1:not(:first-child),
.text-block h2:not(:first-child),
.text-block h3:not(:first-child),
.text-block h4:not(:first-child),
.text-block h5:not(:first-child),
.text-block h6:not(:first-child) {
  margin: 40px 0 20px 0;
}
.text-block h1:first-child,
.text-block h2:first-child,
.text-block h3:first-child,
.text-block h4:first-child,
.text-block h5:first-child,
.text-block h6:first-child {
  margin: 0 0 20px 0;
}
.text-block .ec-btns {
  margin: 40px 0 0 0;
}
.text-block .ec-btns.btns-are-left .btn-primary,
.text-block .ec-btns.btns-are-left .btn-secondary {
  margin: 0 10px 0 0;
}
@media only screen and (max-width: 768px) {
  .text-block .ec-btns.btns-are-left .btn-primary,
  .text-block .ec-btns.btns-are-left .btn-secondary {
    margin: 0 10px 10px 0;
  }
}
.text-block .ec-btns.btns-are-center {
  text-align: center;
}
.text-block .ec-btns.btns-are-center .btn-primary,
.text-block .ec-btns.btns-are-center .btn-secondary {
  margin: 0 10px;
}
@media only screen and (max-width: 768px) {
  .text-block .ec-btns.btns-are-center .btn-primary,
  .text-block .ec-btns.btns-are-center .btn-secondary {
    margin: 10px;
  }
}
.text-block .ec-btns.btns-are-right {
  text-align: right;
}
.text-block .ec-btns.btns-are-right .btn-primary,
.text-block .ec-btns.btns-are-right .btn-secondary {
  margin: 0 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .text-block .ec-btns.btns-are-right .btn-primary,
  .text-block .ec-btns.btns-are-right .btn-secondary {
    margin: 0 0 10px 10px;
  }
}

.opening-hours .intro {
  text-align: center;
  margin: 0 0 30px 0;
}
.opening-hours .intro h4 {
  margin: 0 0 20px 0;
}
.opening-hours .hour-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px 30px;
  border-radius: 20px;
  display: table;
  width: 80%;
  margin: 0 auto 10px auto;
}
@media only screen and (max-width: 998px) {
  .opening-hours .hour-item {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .opening-hours .hour-item {
    padding: 10px 20px;
  }
}
.opening-hours .hour-item:last-child {
  margin: 0 auto;
}
.opening-hours .hour-item p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}
@media only screen and (max-width: 576px) {
  .opening-hours .hour-item p {
    font-size: 14px;
  }
}
.opening-hours .hour-item .col-6:last-child {
  text-align: right;
}

.floorplan h4 {
  text-align: center;
  color: #fff;
  margin: 0 0 30px 0;
}
.floorplan .nav-pills {
  background-color: rgba(255, 255, 255, 0.08);
  display: table;
  padding: 10px 5px;
  border-radius: 80px;
  margin: 0 auto 40px auto;
}
.floorplan .nav-pills li {
  display: inline-block;
}
.floorplan .nav-pills li button {
  background-color: transparent;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 60px;
  border-radius: 60px;
  color: #fff;
  margin: 0 5px;
}
@media only screen and (max-width: 998px) {
  .floorplan .nav-pills li button {
    padding: 14px 20px;
  }
}
.floorplan .nav-pills li button.active {
  background-color: #F26019;
  color: #0C182D;
}
.floorplan .nav-pills li button:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.floorplan .content img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.floorplan .info {
  background-color: rgba(255, 255, 255, 0.08);
  display: table;
  width: 60%;
  margin: 30px auto 0 auto;
  padding: 20px 20px 20px 70px;
  border-radius: 4px;
  background-image: url("./img/information.svg");
  background-repeat: no-repeat;
  background-position: top 26px left 30px;
}
@media only screen and (max-width: 998px) {
  .floorplan .info {
    width: 100%;
  }
}
.floorplan .info p {
  font-size: 16px;
  margin: 0;
}

.careers-listing .intro {
  text-align: center;
  margin: 0 0 30px 0;
  padding: 0 5%;
}
.careers-listing .intro h4 {
  margin: 0 0 20px 0;
}
.careers-listing .top {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  position: relative;
  margin: 30px 0 0 0;
}
.careers-listing .top:first-child {
  margin: 0;
}
.careers-listing .top .content {
  padding: 40px 120px 40px 200px;
  position: relative;
  left: 0px;
}
@media only screen and (max-width: 998px) {
  .careers-listing .top .content {
    padding: 30px 80px 30px 30px;
  }
}
.careers-listing .top .content h5 {
  color: #fff;
  font-size: 20px;
  margin: 0;
}
.careers-listing .top .content ul.details {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 20px 0 0 0;
}
.careers-listing .top .content ul.details li {
  display: inline-block;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  margin: 0 10px 0 0;
}
@media only screen and (max-width: 998px) {
  .careers-listing .top .content ul.details li {
    margin: 0 10px 10px 0;
  }
  .careers-listing .top .content ul.details li:last-child {
    margin: 0;
  }
}
.careers-listing .top .content .toggle-arrow {
  width: 42px;
  height: 42px;
  background-color: #0C182D;
  position: absolute;
  right: 30px;
  top: calc(50% - 21px);
  border-radius: 60px;
  background-image: url("./img/dd-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.careers-listing .top .content .toggle-arrow:not(.collapsed) {
  transform: rotate(-180deg);
}
.careers-listing .top .img-wrapper {
  position: absolute;
  width: 160px;
  height: 100%;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
@media only screen and (max-width: 998px) {
  .careers-listing .top .img-wrapper {
    display: none;
  }
}
.careers-listing .top .img-wrapper img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.careers-listing .bottom {
  background-color: rgba(255, 255, 255, 0.08);
  margin: 30px 0 0 0;
  border-radius: 20px;
  padding: 40px;
}
@media only screen and (max-width: 998px) {
  .careers-listing .bottom {
    padding: 30px;
  }
}
.careers-listing .bottom p:last-child {
  margin: 0;
}
.careers-listing .bottom .btn-secondary {
  margin-top: 20px;
}

.img-block img {
  border-radius: 20px;
}

.related-posts h3 {
  font-size: 30px;
  text-align: center;
  margin: 0 0 50px 0;
}
.related-posts .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 0px;
}
@media only screen and (max-width: 998px) {
  .related-posts .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .related-posts .related-posts-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 40px;
  }
}
.related-posts .related-posts-grid .event-sm .img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding-top: 95%;
  margin: 0 0 30px 0;
}
.related-posts .related-posts-grid .event-sm .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.related-posts .related-posts-grid .event-sm .date {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}
.related-posts .related-posts-grid .event-sm h4 {
  color: #fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.related-posts .related-posts-grid .event-sm:hover h4 {
  color: #F26019;
}
.related-posts .related-posts-grid .event-sm:hover .img-wrapper img {
  transform: scale(1.06);
}
.related-posts .related-posts-grid .unit .img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 90%;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 0 30px 0;
}
.related-posts .related-posts-grid .unit .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.related-posts .related-posts-grid .unit h4 {
  color: #fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.related-posts .related-posts-grid .unit p {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.related-posts .related-posts-grid .unit:hover h4 {
  color: #F26019;
}
.related-posts .related-posts-grid .unit:hover .img-wrapper img {
  transform: scale(1.08);
}
.related-posts .related-posts-grid .item .img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 0 30px 0;
}
.related-posts .related-posts-grid .item .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.related-posts .related-posts-grid .item h4 {
  color: #fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.related-posts .related-posts-grid .item p.date {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}
.related-posts .related-posts-grid .item:hover .img-wrapper img {
  transform: scale(1.06);
}
.related-posts .related-posts-grid .item:hover h4 {
  color: #F26019;
}

.text-img-tabs .nav-pills {
  background-color: rgba(255, 255, 255, 0.08);
  display: table;
  padding: 10px 5px;
  border-radius: 80px;
  margin: 0 auto 60px auto;
}
@media only screen and (max-width: 998px) {
  .text-img-tabs .nav-pills {
    margin: 0 auto 30px auto;
  }
}
@media only screen and (max-width: 768px) {
  .text-img-tabs .nav-pills {
    border-radius: 20px;
  }
}
.text-img-tabs .nav-pills li {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .text-img-tabs .nav-pills li {
    display: block;
    width: 100%;
  }
}
.text-img-tabs .nav-pills li button {
  background-color: transparent;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 60px;
  border-radius: 60px;
  color: #fff;
  margin: 0 5px;
}
@media only screen and (max-width: 998px) {
  .text-img-tabs .nav-pills li button {
    padding: 12px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .text-img-tabs .nav-pills li button {
    width: calc(100% - 10px);
    display: block;
  }
}
.text-img-tabs .nav-pills li button.active {
  background-color: #F26019;
  color: #0C182D;
}
.text-img-tabs .nav-pills li button:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.text-img-tabs .content.is-left {
  padding: 0 10% 0 0;
}
@media only screen and (max-width: 998px) {
  .text-img-tabs .content.is-left {
    padding: 0;
    text-align: center;
  }
}
.text-img-tabs .content.is-right {
  padding: 0 0 0 10%;
}
@media only screen and (max-width: 998px) {
  .text-img-tabs .content.is-right {
    padding: 0;
    text-align: center;
  }
}
.text-img-tabs .content h1:not(:first-child),
.text-img-tabs .content h2:not(:first-child),
.text-img-tabs .content h3:not(:first-child),
.text-img-tabs .content h4:not(:first-child),
.text-img-tabs .content h5:not(:first-child),
.text-img-tabs .content h6:not(:first-child) {
  margin: 40px 0 20px 0;
}
.text-img-tabs .content h1:first-child,
.text-img-tabs .content h2:first-child,
.text-img-tabs .content h3:first-child,
.text-img-tabs .content h4:first-child,
.text-img-tabs .content h5:first-child,
.text-img-tabs .content h6:first-child {
  margin: 0 0 20px 0;
}
.text-img-tabs .content p a {
  color: #fff;
  text-decoration: underline;
}
.text-img-tabs .content p a:hover {
  color: #F26019;
}
.text-img-tabs .content ul,
.text-img-tabs .content ol {
  padding-left: 12px;
}
.text-img-tabs .content ul li,
.text-img-tabs .content ol li {
  color: #fff;
  margin-bottom: 14px;
}
.text-img-tabs .content ul li:last-child,
.text-img-tabs .content ol li:last-child {
  margin: 0;
}
.text-img-tabs img {
  border-radius: 20px;
}
.text-img-tabs .btn-secondary {
  margin: 30px 0 0 0;
}

.parking-costs h4 {
  margin: 0 0 50px 0;
}
@media only screen and (max-width: 998px) {
  .parking-costs h4 {
    text-align: center;
  }
}
.parking-costs table {
  width: 100%;
}
.parking-costs table thead tr {
  background-color: #F26019;
}
.parking-costs table thead tr th {
  font-family: "Antonio", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -4%;
  font-size: 22px;
  color: #F26019;
  color: #0C182D;
  padding: 10px 33px;
  border-radius: 20px 20px 0 0;
}
.parking-costs table tbody tr td {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 20px 33px;
}
.parking-costs table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.08);
}
.parking-costs table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 20px;
}
.parking-costs table tbody tr:last-child td:last-child {
  border-radius: 0 0 20px 0;
}
.parking-costs .left {
  padding: 0 5% 0 0;
}
@media only screen and (max-width: 998px) {
  .parking-costs .left {
    padding: 0;
  }
}
.parking-costs .left .table-responsive {
  max-height: 440px;
  overflow: hidden;
  transition: max-height 0.8s ease;
}
.parking-costs .left .table-responsive table tbody tr:last-child td {
  border-radius: 0;
}
.parking-costs .left .table-responsive.expanded {
  max-height: 1500px;
}
.parking-costs .left .view-toggle {
  display: block;
  margin-top: 0px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px 33px;
  border-radius: 0 0 20px 20px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  font-weight: 700;
}
.parking-costs .left .view-toggle:hover {
  background-color: #F26019;
}
.parking-costs .right {
  padding: 0 0 0 5%;
}
@media only screen and (max-width: 998px) {
  .parking-costs .right {
    padding: 0;
    margin: 30px 0 0 0;
  }
}
.parking-costs .right table {
  margin-bottom: 36px;
}
.parking-costs .right table tbody tr:last-child td {
  border-radius: 0 0 20px 20px;
}

.feature-strip .feats-container {
  display: flex;
  justify-content: center;
}
.feature-strip .feats-wrapper {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 40px;
  border-radius: 20px;
  gap: 100px;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .feature-strip .feats-wrapper {
    gap: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .feature-strip .feats-wrapper {
    display: block;
  }
}
.feature-strip .feats-wrapper .feat {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .feature-strip .feats-wrapper .feat {
    display: block;
    margin: 0 0 20px 0;
  }
  .feature-strip .feats-wrapper .feat:last-child {
    margin: 0;
  }
}
.feature-strip .feats-wrapper .feat h4 {
  font-size: 22px;
}
.feature-strip .feats-wrapper .feat p {
  margin: 0;
}

.error {
  text-align: center;
  padding: 400px 0 200px 0;
}/*# sourceMappingURL=style.css.map */