body {
  background-image: url("../images/background.jpg");
  background-position: center center;
  /* background-size: cover; */
  color: #fff !important;
  font-size: 15px;
  font-family: "ft_polarlight";
}

html, body {
  overflow-x: hidden;
}

h2 {
  font-size: 0.9rem;
  font-family: "ft_polarblack";
  text-align: center;
  line-height: 1.2em;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5em;
  weight: 900;
  display: inline-block;
  margin-bottom: 2rem;
}
h3 {
  font-size: 0.9rem;
  font-family: "ft_polarlight";
  text-align: center;
  line-height: 1.2em;
}
table,
tbody,
td,
tr {
  background: none !important;
  border: 0;
}
table {
  margin-bottom: 2rem;
}
th,
td {
  text-align: left;
  padding: 0.25rem !important;
}
tr {
  border-bottom: 1px solid #fff !important;
}

iframe {
  margin-bottom: 2rem;
}
.grid-container {
  max-width: 1440px;
  padding: 0 2rem;
  position: relative;
}
.vertical {
  transform: rotate(-90deg);
  font-family: "domain_display";
}
.vertical.antiClockwise {
  transform: rotate(-90deg);
}
.vertical.clockwise {
  transform: rotate(90deg);
}
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{
  position: relative;
  height: 100vh;
}
nav {
  position: fixed;
  overflow: hidden;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("../images/background.svg");
  background-position: center center;
  background-size: cover;
  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: block;
  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: "ft_polarblack";
  color: #fff;
  /* -webkit-transition: color .3s ease;
  transition: color .3s ease */
}

nav ul li a:hover {
  text-decoration: underline;
  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: 60px;
  height: 30px;
  margin: 0;
  float: inherit;
  /* position: absolute;
   right: 40px; */
   z-index: 9999;

}

header span.menu i {
  background-color: #fff;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
}
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;
}

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;
}

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(11px) rotate(0deg);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    transform: translateY(-11px) rotate(135deg);
  }
}
/* #logo {
  padding-top: 2rem;
} */
.logo {
  max-width: 250px
}
#splash {
  background-color: #000;
  background-image: url("../images/hero.jpg");
  background-position: center center;
  background-size: cover;
  height: 100vh;
}
#theArea {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#theArea h1 {
  font-size: 7rem;
  margin-left: 0;
  margin-top: 5rem;
  width: 500px;
  position: absolute;
  left: -150px;
  margin-top: 150px;
}
#theArea p:last-of-type {
  margin-bottom: 30px;
}
#outAndAbout {
  padding-top: 4rem;
}
#outAndAbout .relative {
  position: relative;
}
#outAndAbout h1 {
  font-size: 9em;
  writing-mode: tb-rl;
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
white-space: nowrap;
line-height: 1;
float: right
}
#outAndAbout img {
  margin-bottom: 2rem;
}
#outAndAbout p {
  padding-top: 2em;
  padding-right: 4em
}
#location {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}
#gallery {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#gallery h1 {
  font-size: 9rem;
  writing-mode: tb-rl;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
white-space: nowrap;
line-height: 1;
  /* margin-top: 0px; */
}
#gallery .gallery a img {
  margin-bottom: 30px
}
#accommodation {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#accommodation h1 {
  font-size: 5rem;
  margin-left: 0;
  width: 500px;
  position: absolute;
  right: -150px;
  margin-top: 200px;
}
#accommodation .feature {
  text-align: center;
}
#accommodation .feature img {
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 3rem;
  width: 50%;
}
#accommodation table th, #accommodation table tr td {
  padding: .8rem 0!important
}
 table .right {
  text-align: right!important
}
table tr:last-child {
  border-bottom: 0!important
}
#accommodation table .total {
  font-weight: bold;
  font-size: 17px
}


#floorPlans, #spacePlans  {
  padding-bottom: 100px;
}
#floorPlans h1, #spacePlans h1  {
  writing-mode: tb-rl;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
white-space: nowrap;
  font-size: 7rem;
  /* margin-left: 0;
  margin-top: 5rem;
  width: 500px; */
  /* margin-top: 150px; */
}
#floorPlans .floorplans-group h3, #spacePlans .floorplans-group h3 {
  font-family: "domain_display";
  font-size: 2rem;
  margin-bottom: 0
}
#floorPlans .floorplans-group p, #spacePlans .floorplans-group p  {
  text-align: center;
  font-family: "ft_polarlight";
}
#floorPlans .floorplans-group img, #spacePlans .floorplans-group img  {
  margin-top: 1em
}
.spaceplans-schedule {
  margin-top: 11em;
  padding-left: 30px
}
.spaceplans-schedule h2 {
  margin-bottom: 0.5em
}
.spaceplans-schedule ul {
  margin: 0;
  list-style: none
}
.spaceplans-schedule ul li {
  font-family: "ft_polarlight";
  margin-bottom: .75em
}
.spaceplans-schedule ul li.head{
  font-family: "ft_polarblack";
  margin-bottom: 1em;
  margin-top: 1em
}
.spaceplans-schedule ul li img {
  height: 26px;
  margin-right: 10px
}
#location .match img {
  height: 570px
}
#connect .relative {
  position: relative
}
#connect h1 {
  font-size: 10em;
  writing-mode: tb-rl;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  white-space: nowrap;
  line-height: 1.4;
  float: right
}
#addresses {
  padding: 2rem 0;
}
#addresses a {
  color: #fff;
  font-weight: bold;
}
#contacts {
  border-top: 1px solid #fff;
  padding-top: 3rem;
}
#contacts p a {
  color: #fff
}
#misrep {
  padding-top: 2rem;
}
#misrep p {
  font-size: 0.6rem;
  line-height: 1.2em;
}
#contacts img {
  max-width: 150px;

}
#contacts img.braytox {
  max-width: 120px
}
/* the slides */
.slick-slide {
    margin: 0 20px;
}
/* the parent */
.slick-list {
    margin: 0 -20px;
}
.slide-wrap, .gallery-wrap {
  position: relative;
}
.slide-wrap .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    cursor: pointer;
}


.slide-wrap .arrow img{
    width: 30px;
}
.slide-wrap .arrow-right {
    right: -50px;
}
.slide-wrap .arrow-left {
    left: -50px;
}
@media screen and (max-width: 1439px) {
  .grid-container {
    padding: 0 60px
  }
  .slide-wrap, .gallery-wrap {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1023px) {
  .vertical, .vertical.clockwise{
    transform: unset
  }
  #outAndAbout, #gallery, #accommodation, #location {
    padding-top: 0;
    padding-bottom: 2rem
  }
  #theArea {
    padding-bottom: 2rem
  }
  #connect {
    padding-top: 2rem
  }
  #outAndAbout h1, #gallery h1, #accommodation h1, #floorPlans h1, #spacePlans h1, #connect h1, #theArea h1 {
    writing-mode: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -o-transform: unset;
    -ms-transform: unset;
    transform: unset;
    white-space: unset;
    float: left;
    margin-bottom: 0.25em;
    font-size: 6rem
  }
  #outAndAbout p {
    margin-bottom: 2em
  }
  #theArea h1, #accommodation h1 {
    position: unset;
    left: unset;
    margin-top: 0;
    right: unset
  }
  #location .match img {
    margin-bottom: 50px
  }
  #accommodation .feature img {
    width: 80px
  }
  #spacePlans {
    padding-bottom: 0
  }
  .spaceplans-schedule {
    margin-top: 2em;
    padding-left: unset
  }
  #contacts img {
    height: 100px
  }
}
@media screen and (max-width: 768px) {
    /* #outAndAbout h1, #gallery h1, #accommodation h1, #floorPlans h1, #spacePlans h1, #connect h1, #theArea h1 {
    font-size: 4rem
  } */
  #accommodation .feature img {
    width: 60px
  }
  #floorPlans .floorplans-group h3, #spacePlans .floorplans-group h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 639px) {
  nav ul li a {
    font-size: 24px
  }
  #outAndAbout h1, #gallery h1, #accommodation h1, #floorPlans h1, #spacePlans h1, #connect h1, #theArea h1 {
    font-size: 3rem
  }
  .logo {
    max-width: 200px
  }

  header span.menu {
    width: 40px
  }

  .grid-container {
    padding: 0 30px
  }
  .slide-wrap .arrow img {
      width: 20px;
  }
  .slide-wrap .arrow-right {
      right: -30px;
  }
  .slide-wrap .arrow-left {
      left: -30px;
  }
}

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

}
