@font-face {
  font-family: 'SFPro Regular';
  src: url(../fonts/SFProDisplay-Regular.woff2) format("woff2"),
    url(../fonts/SFProDisplay-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal
}

:root {
  --font-face: 'SFPro Regular';
}

.flash {
  max-width: 250px;
  position: absolute;
  right: 0;
  top: 0
}

header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 40px 0;
  /* -webkit-transition: background .5s ease;
  transition: background .5s ease; */
  /* height: 120px; */
}

header .grid-container {
  max-width: 100rem;
  margin: 0 auto
}

header.active {
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  background: transparent;
}

header.active h1 .st0,
header.active h1 .st2,
header.active h1 .st3 {
  fill: #c2002a;
  -webkit-transition-delay: .5s;
  transition-delay: .5s
}

header.active span.menu {
  /* -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) */
  color: #c2002a
}

header.active span.menu #Group-5 {
  fill: #c2002a;
  -webkit-transition-delay: .5s;
  transition-delay: .5s
}

nav .grid-container {
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
  height: 100vh;
}

nav {
  position: fixed;
  overflow: hidden;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
  background: #ea564b;
  z-index: 99;
  height: 100vh;
  min-height: 400px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform .75s ease;
  transition: -webkit-transform .75s ease;
  transition: transform .75s ease;
  transition: transform .75s ease, -webkit-transform .75s ease
}

a {
  cursor: pointer;
}

nav.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

#navbar {
  float: right;
  display: none;
  transition: top 0.3s;
}

nav ul {
  margin: 0;
  list-style: none;
  text-align: left;
  position: absolute;
  bottom: 150px;
  left: 40px;
}

nav ul li a {
  font-size: 30px;
  line-height: 1.6;
  text-transform: uppercase;
  font-family: var(--font-face);
  color: #403e3c;
  /* -webkit-transition: color .3s ease;
  transition: color .3s ease */
}

nav ul li a:hover {
  color: #fff
}

header span.menu.active i {
  background-color: #fff
}

/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */
header span.menu {
  cursor: pointer;
  width: 40px;
  height: 20px;
  margin: 0;
  float: right;
  /* position: absolute;
   right: 40px; */
  z-index: 9999;

}

header span.menu i {
  background-color: #403e3c;
  content: '';
  display: block;
  width: 100%;
  height: 5px;
}

header.active span.menu i:nth-child(1) {
  display: none
}

header span.menu i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

header span.menu i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  width: 60%
}

header span.menu i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

header.active span.menu i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

header.active span.menu i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
  width: 100%
}

header.active span.menu i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(7px) rotate(0deg);
  }

  100% {
    transform: translateY(7px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(9px) rotate(0deg);
  }

  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0deg);
  }

  100% {
    transform: translateY(-10px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0deg);
  }

  100% {
    transform: translateY(-10px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-9px) rotate(0deg);
  }

  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

body {
  color: #403e3c;
  font-family: var(--font-face);


}

#hero {
  position: relative;
  /* background: url(../img/landing.jpg);
  height: 100vh;
  width: 100vw;
min-height: 2000px;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat; */
}

#DC4 #hero {
  position: relative;
  background: url(../img/DC4-bg.jpg);
  height: 100vh;
  width: 100vw;
  min-height: 1000px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#hero .heading-text {
  position: absolute;
  height: 100%;
  top: 200px;
  text-align: center;
  width: 100%;
  left: 0;
  right: 0;


}

.logo {
  max-width: 120px;
}

#hero .heading-text h1 {
  font-family: var(--font-face);
  font-size: 4em;
  color: #fff;
  line-height: 1.2
}

#hero .heading-text h1 span,
#specification-orange .title h1 span,
#DC4 #floorplan .plan h1 span {
  color: #403e3c
}

#DC4 #hero .heading-text h1 {
  font-size: 5em;

}

#hero .heading-text h3 {
  text-align: center;
  font-family: var(--font-face);
  font-size: 4em;
  line-height: 1.3;

}

#hero .heading-text p {
  max-width: 800px;
  margin: 2em auto;
  text-align: center;
  font-family: var(--font-face);
  font-size: 18px;
  line-height: 1.3;

}

#floorplan {
  position: relative;
  background: url(../img/orange-bg.jpg);
  background-position: center;
  background-size: cover;

}

#floorplan .floorplan {
  position: relative;
}

#floorplan .plan {
  padding-top: 80px;
  padding-bottom: 90px;
  margin-top: 7px
}

#floorplan .plan ul,
#DC4 #floorplan .plan h1 {

  list-style: none;
  color: #fff;

}

#DC4 #floorplan .plan h1 {
  font-size: 3em;
  font-family: var(--font-face);
}

#accommodation .plan ul li {
  font-family: var(--font-face);
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 1em
}

#floorplan .plan ul li::before {
  content: "+";
  margin-right: 10px;
}

#accommodation .plan ul li::before {
  content: "+";
  margin-right: 10px;
}

#specification-orange {
  background: #ea564b;
  padding-top: 40px;
  padding-bottom: 40px;

}

#accommodation {
  background: #ea564b;
  padding-top: 40px;


}

#accommodation .grid-container {
  max-width: 80rem;
  margin: 0 auto
}

#accommodation .title h1 {
  font-family: var(--font-face);
  font-size: 5em;
  color: #fff;
  line-height: 1
}

#accommodation .title h5 {
  font-family: var(--font-face);
  font-size: 2.5em;
  margin-bottom: 1.5em;
  color: #403e3c;
  line-height: 1;
  text-align: center;
}

#DC4 #accommodation {
  text-align: center;
  margin-top: 7px
}

.DC4 {
  padding-bottom: 80px;
  padding-top: 40px;
  background: #ea564b;
  text-align: center;
  position: relative;
  width: 100%
}

.DC4 img {
  max-width: 2300px;
  margin: 0 auto;

}

.DC4 img:nth-child(2) {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%
}

#DC4 #accommodation .title h1 {
  font-size: 5em;
}

#DC4 #accommodation .title p {

  font-family: var(--font-face);
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  max-width: 800px;
  margin: 1em auto
}

#DC4 #accommodation table {
  max-width: 800px;
  margin: 0 auto 2em
}

#accommodation .title h3 {
  font-family: var(--font-face);
  font-size: 4em;
  color: #fff;
  margin-top: 1em;
  margin-bottom: .5em;
  line-height: 1
}

#accommodation table tbody,
tbody tr:nth-child(even) {
  border: none;
  background: none;

}

#accommodation table {
  border-collapse: separate;
  border-spacing: 10px 5px;
}

#accommodation table tbody tr td {
  text-align: center;
  padding: 0.25rem 0rem 0rem;
  border-top: 2px solid #403e3c;
  color: #fff;

}

#accommodation table tr td.grey {
  color: #403e3c
}

#accommodation table tr td.pink {
  color: #f18773
}

#accommodation table tbody tr th {
  padding: 0.35rem 0rem 0rem;
}

#accommodation table tbody tr td.no-border {
  border: none !important
}

#specs-icons-top {
  border: 2px solid #fff;
  border-bottom: none;
  margin-top: 2em
}

#accommodation .white {
  background: #fff
}

#accommodation .specs-icons-top {
  text-align: center;
  padding: 2.5em 0
}

#accommodation .specs-icons-top img {
  height: 50px;
  margin-bottom: 1em
}

#accommodation .specs-icons-top p {
  color: #fff;
  font-family: var(--font-face);
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 0
}

#accommodation .white .specs-icons-top p {
  color: #ea564b
}

#accommodation .specs-icons-top.grey p {
  color: #403e3c
}

#specification-orange .left-box {

  max-width: 500px;
  float: right;
  width: 100%;
  text-align: right;
  margin-top: 1em
}

#specification-orange .left-box hr {
  border-bottom: 2px solid #403e3c;
  max-width: unset;
  margin: 0;
  display: inline-block;
  width: 70%;
  margin-right: 10px;

}

#specification-orange .left-box h3 {
  font-family: var(--font-face);
  font-size: 3.5em;
  color: #fff;


}

#specification-orange .left-box p {
  font-family: var(--font-face);
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;

}

/* #specification-orange .left-box .bottom-section{
    text-align: right;
    float: right
} */
#specification-orange .left-box span.sub {
  font-size: 14px;
  text-align: right;
  float: right
}

#specification-orange .right-box {

  border-top: 2px solid #403e3c;
  max-width: 100px;
  margin-top: 1.7em;
  margin-left: 1em
}

.right-box img {
  height: 90px;
  margin-top: 1.5em;

}

#specification-orange .left-box span {
  display: inline-block;

}

#specification-orange .title h1 {
  margin-bottom: .5em
}

#specification,
#connectivity {
  background: #403e3c;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
  text-align: center;
  margin-top: 7px
}

#specification .title h1,
#specification-orange .title h1 {
  font-family: var(--font-face);
  font-size: 5em;
  color: #fff;
  text-align: center;
  line-height: 1.2
}

#specification .title h1 span,
#specification .title p span {
  color: #ea564b
}

#specification .title p {

  text-align: center;
  font-family: var(--font-face);
  font-size: 18px;
  line-height: 1.3;

}

#specification .specs {
  margin-top: 2em;
  margin-bottom: 1em;
  text-align: center
}

#specification .specs img {
  height: 50px;
  margin-bottom: 1em
}

#specification .specs p {
  font-family: var(--font-face);
  font-size: 12px;
  line-height: 1.2;
  color: #ea564b
}

#specification .title.short {
  max-width: 800px;
  margin: 2em auto;
}

#connectivity .title img {
  max-width: 600px;
  margin-bottom: 3em
}

#connectivity .title p {
  font-family: var(--font-face);
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 2em;
  margin-top: 1em;
  padding-left: 2em;
  padding-right: 2em
}

#connectivity .title p span {
  color: #ea564b
}

#connectivity .connectivity-details img {
  width: 40px;
  margin-bottom: 1em
}

#connectivity .connectivity-details ul {
  margin: 0;
  list-style: none
}

#connectivity .connectivity-details ul li {
  font-family: var(--font-face);
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
}

#connectivity .connectivity-details ul li span {
  color: #ea564b
}

#connectivity .map-btn {
  background: #ea564b;
  max-width: 350px;
  margin: 3em auto 2em;
  padding: 20px 20px 15px;
}

#connectivity .map-btn a {
  font-family: var(--font-face);
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

#places {
  background: #fff;
  padding-top: 7px
}

#places .slide {
  position: relative;
}

#places .slide .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  z-index: 3
}

#places .slide .caption h2 {
  font-family: var(--font-face);
  font-size: 3em;
  color: #fff;

}

#places .slide .overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2
}

#places .slick-dots li.slick-active button:before {
  color: #ea564b;
  opacity: 1
}

.slick-dots li button::before {
  opacity: 1 !important
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  color: #ea564b;
}

#accommodation .list ul li {
  color: #fff;
  list-style: none !important;
  list-style-type: none !important;
}

#accommodation .list ul li::before {
  content: "+";
  margin-right: 10px;

}

#accommodation .list {
  padding: 80px 0px;
}

#DC4 #floorplan .plan {
  padding-bottom: 0;
  padding-top: 0;
  margin-top: 0
}

#DC4 #floorplan .plan hr {
  border-bottom: 3px solid #fff;
  margin-bottom: 3em
}

#occupiers {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ea564b
}

#occupiers .title {
  text-align: center;
}

#occupiers .title h1 {
  font-family: var(--font-face);
  font-size: 5em;
  color: #fff;
}

#occupiers .title span,
#accommodation .title h1 span {
  color: #403e3c
}

#occupiers .title p {
  max-width: 800px;
  margin: 1em auto 2em;
  text-align: center;
  font-family: var(--font-face);
  font-size: 18px;
  line-height: 1.3;
  color: #fff
}

.occupiers-list {
  text-align: center;
  margin-top: 1em;

}

.occupiers-list hr {
  border-bottom: 2px solid #fff;
  margin-top: 3em;
  max-width: 75rem;

}

#contact {
  padding-top: 20px
}

#occupiers .title h2 {
  font-family: var(--font-face);
  font-size: 4em;
  color: #fff;

}

#contact hr {
  border-bottom: 3px solid #fff
}

.agent-details {
  margin-top: 2em
}

.agent-details.bottom {
  margin-top: 7em
}

.agent-details img {
  height: 60px
}

.agent-details h5 {
  font-family: var(--font-face);
  font-size: 14px;
  line-height: 1.2;
  color: #fff;

}

#DC4 .agent-details h5 {
  font-size: 12px;
}

.agent-details p,
.agent-details a {
  font-family: var(--font-face);
  font-size: 12px;
  line-height: 1.4;
  color: #403e3c
}

.missprep {
  margin-top: 4em;
  font-family: var(--font-face);
  font-size: 9px;
  line-height: 1.1;
  color: #403e3c
}

.missprep a {
  margin-top: 2em;
  font-family: var(--font-face);
  font-size: 9px;
  line-height: 1.1;
  color: #403e3c;
  font-weight: 600
}

.grid-container {
  padding-left: 50px;
  padding-right: 50px
}

@media screen and (max-width:1200px) {
  #accommodation .title h1 {
    font-size: 5.5em
  }

}

@media screen and (max-width:1023px) {

  #hero .heading-text h1,
  #accommodation .title h1,
  #specification .title h1,
  #specification-orange .title h1,
  #occupiers .title h1,
  #DC4 #hero .heading-text h1,
  #DC4 #accommodation .title h1 {
    font-size: 3.5em;
    text-align: center;
  }

  .grid-container {
    padding-left: 30px;
    padding-right: 30px
  }

  #connectivity .title img {
    max-width: 500px
  }

  #specification-orange .left-box h3,
  #occupiers .title h2,
  #places .slide .caption h2,
  #hero .heading-text h3,
  #accommodation .title h3 {
    font-size: 2.5em
  }

  #accommodation .title h5 {
    font-size: 2em
  }

  #hero {
    background: #ea564b;
    background-position: unset;
    background-size: unset;
    min-height: unset;
    height: unset
  }

  #hero .heading-text {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    padding: 40px;
    height: unset
  }

  #floorplan .plan ul {
    margin-top: 2em
  }

  #specification-orange .left-box hr {
    width: 60%
  }

  #specification-orange .left-box {
    max-width: unset
  }

  #floorplan .plan,
  #accommodation .grid-container,
  #connectivity .grid-container,
  #specification-orange .grid-container,
  #specification .grid-container,
  #occupiers .grid-container {
    padding-left: 40px;
    padding-right: 40px
  }

  .agent-details img {
    height: 40px
  }

  #DC4 #hero .heading-text {
    position: absolute;
    top: 170px;

    padding: 0;
    left: 0;
    right: 0;
  }

  #DC4 #floorplan .plan h1 {
    text-align: center;
  }
}

@media screen and (max-width:768px) {
  nav ul li a {
    font-size: 24px
  }
}

@media screen and (max-width:639px) {
  .bottom-section img {
    height: 40px;
    margin-bottom: 1em;
    margin-top: 1em
  }

  .agent-details.bottom img {
    height: 50px
  }

  nav ul {
    left: 20px
  }

  header {
    padding: 20px
  }

  .logo {
    max-width: 100px
  }

  #connectivity .title img {
    max-width: 350px
  }

  #hero .heading-text h1,
  #accommodation .title h1,
  #specification .title h1,
  #specification-orange .title h1,
  #occupiers .title h1,
  #DC4 #hero .heading-text h1,
  #DC4 #hero .heading-text h1,
  #DC4 #accommodation .title h1 {
    font-size: 2.5em;
    text-align: center;
  }

  #specification-orange .left-box h3,
  #occupiers .title h2,
  #places .slide .caption h2,
  #hero .heading-text h3,
  #accommodation .title h3,
  #DC4 #floorplan .plan h1 {
    font-size: 1.8em
  }

  #floorplan .plan,
  #accommodation .grid-container,
  #connectivity .grid-container,
  #specification-orange .grid-container,
  #specification .grid-container,
  #occupiers .grid-container {
    padding-left: 20px;
    padding-right: 20px
  }

  #accommodation table tbody tr td,
  #accommodation table tbody tr th {
    font-size: 12px
  }

  #accommodation .specs-icons-top {
    padding: 1.5em
  }

  #accommodation .specs-icons-top img,
  #specification .specs img {
    height: 40px
  }

  #accommodation .white .specs-icons-top p {
    font-size: 14px
  }

  #DC4 #accommodation .title p {
    font-size: 16px
  }
}

@media screen and (max-width:500px) {}