@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img,
object,
embed,
video {
  max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

body {
  overflow-x: hidden;
}

.gridContainer {
  width: 100vw;
  display: block;
  float: left;
  clear: none;
  overflow-x: hidden;
}

.topslider {
  width: 100%;
  height: 90vh;
  display: block;
  float: left;
  clear: none;
  background-color: #063d3c;
  /*display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;*/
  margin: 0;
  padding: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  overflow: hidden;
}

.topslider .inner {
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr;
  gap: 1em 1em;
  width: calc(100% - 2em);
  height: calc(100vh - 2em);
  margin: 1em 1em;
  position: absolute;
  z-index: 0;
}

.topslider .inner .slider {
  background-color: #10a3a0;
  height: 100%;
  width: 100%;
  display: block;
  float: left;
  clear: both;
  border-radius: 1em;
  overflow: hidden;
  background-size: cover;
}

.ts-top {
  background: rgb(6, 61, 60);
  background: linear-gradient(
    164deg,
    rgba(6, 61, 60, 1) 5%,
    rgba(6, 61, 60, 0.95) 45%,
    rgba(16, 163, 160, 0.3) 100%
  );
  width: 100%;
  height: 110%;
  display: block;
  float: left;
  clear: none;
  position: absolute;
  z-index: 10;
}

.tst-inner {
  color: #fff;
  position: relative;
  z-index: 10;
  width: 80%;
  height: auto;
  display: block;
  float: left;
  clear: both;
  top: 15%;
  left: 5%;
}

.tst-inner p {
  width: 90%;
  display: block;
  float: left;
  clear: none;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-size: cover;
  background-position: center top;
}

.scroll-downs {
  position: absolute;
  display: none;
  float: left;
  clear: both;
  bottom: 25%;
  left: 7.5%;
  margin: auto;
  z-index: 20;
  width: 34px;
  height: 55px;
}
.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.bookingblock {
  background-color: #10a3a0;
  width: calc(90vw - 5em);
  height: auto;
  display: block;
  float: right;
  clear: none;
  padding: 1.5em 2.5em;
  color: #fff;
  position: relative;
  z-index: 20;
  top: -20vh;
  right: 5%;
}

.bookingblock h3 {
  font-weight: 200;
  margin: 0.3em auto 0.3em;
}

.bookingblock p {
  margin-bottom: 2em;
}

.browngradient {
  width: 80vh;
  height: 80vh;
  border-radius: 40vh;
  display: block;
  float: left;
  clear: none;
  position: absolute;
  z-index: 30;
  background: rgb(198, 153, 118);
  background: radial-gradient(
    circle,
    rgba(198, 153, 118, 1) 0%,
    rgba(198, 153, 118, 0) 70%
  );
  right: -40vh;
  top: 60vh;
}

.b {
  width: 80%;
  margin: -10vh 10% 0vh;
  height: auto;
  display: block;
  float: left;
  clear: none;
  position: relative;
  z-index: 50;
}

.eventcentre-stroke {
  width: 100%;
  height: 40vh;
  position: relative;
  clear: none;
  display: block;
  float: left;
  background-image: url("../img/eventcenter-strokes.svg");
  background-position: center top;
  background-size: 80%;
  background-repeat: no-repeat;
}

.pulsate-fwd {
  -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
  animation: pulsate-fwd 2s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.star {
  position: absolute;
  -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
  animation: pulsate-fwd 2s ease-in-out infinite both;
}

.star:nth-of-type(1) {
  width: 20px;
  height: auto;
  transition-delay: 10ms;
}

.star:nth-of-type(2) {
  width: 50px;
  height: auto;
  right: 1em;
  top: 30%;
  transition-delay: 20ms;
}

.star:nth-of-type(3) {
  width: 15px;
  height: auto;
  right: 0;
  top: 10%;
  transition-delay: 30ms;
}

.star:nth-of-type(4) {
  width: 15px;
  height: auto;
  right: 1em;
  top: 70%;
  transition-delay: 40ms;
}

.star:nth-of-type(5) {
  width: 25px;
  height: auto;
  left: 1em;
  top: 70%;
  transition-delay: 50ms;
}

.b h2 {
  width: 100%;
  height: auto;
  position: relative;
  clear: none;
  display: block;
  float: right;
  color: #094e4c;
}

.b h2 span:first-of-type {
  color: #c69976;
}

.b h2 span:nth-of-type(2) {
  color: #10a3a0;
  font-family: "runalto";
  font-weight: 100;
}

.c {
  width: 100%;
  height: 40vh;
  display: block;
  float: left;
  clear: none;
  margin: 10vh auto 5vh;
  clip-path: polygon(100% 0%, 100% 100%, 50% 95%, 0 100%, 0 0, 50% 5%);
  background-image: url("../img/caseimg/Pics-10.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.c .inner {
  width: 100%;
  height: 100%;
  background: rgb(6, 61, 60);
  background: -webkit-linear-gradient(
    bottom left,
    rgba(6, 61, 60, 0.8) 5%,
    rgba(16, 163, 160, 0) 100%
  );
  background: -o-linear-gradient(
    bottom left,
    rgba(6, 61, 60, 0.8) 5%,
    rgba(16, 163, 160, 0) 100%
  );
  background: linear-gradient(
    to top right,
    rgba(6, 61, 60, 0.8) 5%,
    rgba(16, 163, 160, 0) 100%
  );
  display: block;
  float: left;
  clear: none;
  z-index: 10;
  position: absolute;
}

.c video {
  height: 150%;
  width: auto;
  display: block;
  float: left;
  z-index: 0;
  position: absolute;
}

.c button {
  float: right;
  background-color: #fff;
  color: #10a3a0;
  margin: 5% 5% auto auto;
}

.d {
  width: 60%;
  margin: 10vh 20%;
  height: auto;
  display: block;
  float: left;
  clear: none;
}

.d p {
  text-align: center;
  color: #094e4c;
}

.d-ico {
  width: 3em;
  height: auto;
  display: block;
  float: left;
  clear: none;
  margin: 6em calc(50% - 2.5em);
  text-align: center;
}

.e {
  width: 90%;
  margin: 0vh 5% 5vh;
  height: auto;
  display: block;
  float: left;
  clear: none;
  position: relative;
  height: auto;
}

.e h2 {
  width: 100%;
  height: auto;
  float: left;
  clear: none;
  display: block;
  position: sticky;
  top: 1.5em;
  bottom: 1.5em;
  font-weight: 600;
  color: #094e4c;
  font-family: "GeneralSansRegular";
  padding: 0.5em;
  background-color: #eeffff;
}

.am-list {
  width: calc(100% - 2em);
  height: 170vh;
  float: left;
  clear: none;
  display: block;
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 1em 1em;
  grid-template-areas:
    ". ."
    ". ."
    ". ."
    ". ."
    ". .";
}

.am {
  border-radius: 1em;
  background-color: white;
  padding: 1.5em;
  width: calc(100% - 3em);
  height: calc(100% - 3em);
}

.am svg {
  height: 2em;
  width: auto;
  display: block;
  float: left;
  clear: none;
  margin: 0.5em auto 1.5em;
}

.am h4 {
  color: #094e4c;
  margin: 0em auto 0.4em;
}

.am p {
  color: #817974;
  font-weight: 600;
}

.f {
  width: 100%;
  height: auto;
  display: block;
  float: left;
  clear: none;
  background-color: #10a3a0;
  margin: 10vh auto;
}

.testimony-slide {
  width: 85%;
  margin: auto 7.5%;
  height: 10vh;
  display: block;
  float: left;
  clear: none;
}

.testimony-slide .swiper-slide {
  text-align: left;
  font-size: inherit;
  display: block;
}

.f .spanline {
  height: 5vh;
  width: 2px;
  background-color: #fff;
  display: block;
  float: left;
  clear: both;
  margin: 2.5em 5em;
}

.f h6 {
  color: #fff;
  clear: both;
  display: block;
  float: left;
  width: 100%;
  font-family: "GeneralSans";
}

.f h6 span {
  font-size: 0.8em;
  opacity: 0.7;
}

.instagram {
  width: 100%;
  height: auto;
  display: block;
  float: left;
  clear: both;
}

.instagram-top {
  width: 85%;
  margin: 3em 7.5%;
  display: block;
  clear: both;
  float: left;
}

.instagram-top h2 {
  color: #094e4c;
  font-family: "GeneralSansRegular";
}

.instagram-pane {
  width: 100vw;
  height: auto;
  display: block;
  float: left;
  clear: none;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
  .gridContainer {
    width: 100vw;
    display: block;
    float: left;
    clear: none;
    overflow-x: hidden;
  }

  .topslider {
    width: 100%;
    height: 110vh;
    display: block;
    float: left;
    clear: none;
    background-color: #063d3c;
    /*display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;*/
    margin: 0;
    padding: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    overflow: hidden;
  }

  .topslider .inner {
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3em 3em;
    width: calc(100% - 6em);
    height: calc(100vh - 6em);
    margin: 2em 2em;
    position: absolute;
    z-index: 0;
  }

  .topslider .inner .slider {
    background-color: #10a3a0;
    height: 100%;
    width: 100%;
    display: block;
    float: left;
    clear: both;
    border-radius: 1em;
    overflow: hidden;
    background-size: cover;
  }

  .ts-top {
    background: rgb(6, 61, 60);
    background: linear-gradient(
      164deg,
      rgba(6, 61, 60, 1) 5%,
      rgba(6, 61, 60, 0.95) 45%,
      rgba(16, 163, 160, 0.3) 100%
    );
    width: 100%;
    height: 110%;
    display: block;
    float: left;
    clear: none;
    position: absolute;
    z-index: 10;
  }

  .tst-inner {
    color: #fff;
    position: relative;
    z-index: 10;
    width: 65%;
    height: auto;
    display: block;
    float: left;
    clear: both;
    top: 25%;
    left: 5%;
  }

  .tst-inner p {
    width: 70%;
    display: block;
    float: left;
    clear: none;
  }

  .swiper-container {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-position: center top;
  }

  .scroll-downs {
    position: absolute;
    display: block;
    float: left;
    clear: both;
    bottom: 25%;
    left: 5%;
    margin: auto;
    z-index: 20;
    width: 34px;
    height: 55px;
  }
  .mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
  }
  .scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-iteration-count: infinite;
  }
  @keyframes scroll {
    0% {
      opacity: 0;
    }
    10% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(15px);
      opacity: 0;
    }
  }

  .bookingblock {
    background-color: #10a3a0;
    width: calc(30vw + 1em);
    height: auto;
    display: block;
    float: right;
    clear: none;
    padding: 1.1em 2em;
    color: #fff;
    position: relative;
    z-index: 20;
    top: -47vh;
    right: 5%;
  }

  .bookingblock h3 {
    font-weight: 200;
    margin: 0.3em auto 0.3em;
  }

  .bookingblock p {
    margin-bottom: 7em;
  }

  .browngradient {
    width: 80vh;
    height: 80vh;
    border-radius: 40vh;
    display: block;
    float: left;
    clear: none;
    position: absolute;
    z-index: 30;
    background: rgb(198, 153, 118);
    background: radial-gradient(
      circle,
      rgba(198, 153, 118, 1) 0%,
      rgba(198, 153, 118, 0) 70%
    );
    right: -40vh;
    top: 60vh;
  }

  .b {
    width: 90%;
    margin: -20vh 5% 0vh;
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: relative;
    z-index: 50;
  }

  .eventcentre-stroke {
    width: 45%;
    height: 60vh;
    position: relative;
    clear: none;
    display: block;
    float: left;
    background-image: url("../img/eventcenter-strokes.svg");
    background-position: center top;
    background-size: 80%;
    background-repeat: no-repeat;
  }

  .pulsate-fwd {
    -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
    animation: pulsate-fwd 2s ease-in-out infinite both;
  }

  @-webkit-keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.4);
      transform: scale(1.4);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.4);
      transform: scale(1.4);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .star {
    position: absolute;
    -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
    animation: pulsate-fwd 2s ease-in-out infinite both;
  }

  .star:nth-of-type(1) {
    width: 20px;
    height: auto;
    transition-delay: 10ms;
  }

  .star:nth-of-type(2) {
    width: 50px;
    height: auto;
    right: 1em;
    top: 30%;
    transition-delay: 20ms;
  }

  .star:nth-of-type(3) {
    width: 15px;
    height: auto;
    right: 0;
    top: 10%;
    transition-delay: 30ms;
  }

  .star:nth-of-type(4) {
    width: 15px;
    height: auto;
    right: 1em;
    top: 70%;
    transition-delay: 40ms;
  }

  .star:nth-of-type(5) {
    width: 25px;
    height: auto;
    left: 1em;
    top: 70%;
    transition-delay: 50ms;
  }

  .b h2 {
    width: 50%;
    height: auto;
    position: relative;
    clear: none;
    display: block;
    float: right;
    color: #094e4c;
  }

  .b h2 span:first-of-type {
    color: #c69976;
  }

  .b h2 span:nth-of-type(2) {
    color: #10a3a0;
    font-family: "runalto";
    font-weight: 100;
  }

  .c {
    width: 100%;
    height: 70vh;
    display: block;
    float: left;
    clear: none;
    margin: 10vh auto;
    clip-path: polygon(100% 0%, 100% 100%, 49% 90%, 0 100%, 0 0, 50% 10%);
    background-image: url("../img/caseimg/Pics-10.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .c .inner {
    width: 100%;
    height: 100%;
    background: rgb(6, 61, 60);
    background: -webkit-linear-gradient(
      bottom left,
      rgba(6, 61, 60, 0.8) 5%,
      rgba(16, 163, 160, 0) 100%
    );
    background: -o-linear-gradient(
      bottom left,
      rgba(6, 61, 60, 0.8) 5%,
      rgba(16, 163, 160, 0) 100%
    );
    background: linear-gradient(
      to top right,
      rgba(6, 61, 60, 0.8) 5%,
      rgba(16, 163, 160, 0) 100%
    );
    display: block;
    float: left;
    clear: none;
    z-index: 10;
    position: absolute;
  }

  .c video {
    height: 120%;
    width: auto;
    display: block;
    float: left;
  }

  .c button {
    float: right;
    background-color: #fff;
    color: #10a3a0;
    margin: 25% 7.5% auto auto;
  }

  .d {
    width: 50%;
    margin: 15vh 25%;
    height: auto;
    display: block;
    float: left;
    clear: none;
  }

  .d p {
    text-align: center;
    color: #094e4c;
  }

  .d-ico {
    width: 3em;
    height: auto;
    display: block;
    float: left;
    clear: none;
    margin: 6em calc(50% - 2.5em);
    text-align: center;
  }

  .e {
    width: 90%;
    margin: 0vh 7.5% 5vh;
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: relative;
    height: auto;
  }

  .e h2 {
    width: 30%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    position: sticky;
    top: 1.5em;
    bottom: 1.5em;
    font-weight: 600;
    color: #094e4c;
    font-family: "GeneralSansRegular";
    padding: auto;
    background-color: transparent;
  }

  .am-list {
    width: 60%;
    height: 170vh;
    float: right;
    clear: none;
    display: block;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    gap: 1em 1em;
    grid-template-areas:
      ". ."
      ". ."
      ". ."
      ". ."
      ". .";
  }

  .am {
    border-radius: 1em;
    background-color: white;
    padding: 2em;
    width: calc(100% - 4em);
    height: calc(100% - 4em);
  }

  .am svg {
    height: 2.5em;
    width: auto;
    display: block;
    float: left;
    clear: none;
    margin: 0.5em auto 1.5em;
  }

  .am h4 {
    color: #094e4c;
    margin: 0em auto 0.4em;
  }

  .am p {
    color: #817974;
    font-weight: 600;
  }

  .f {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    background-color: #10a3a0;
    margin: 5vh auto;
  }

  .testimony-slide {
    width: 85%;
    margin: auto 7.5%;
    height: 20vh;
    display: block;
    float: left;
    clear: none;
  }

  .testimony-slide .swiper-slide {
    text-align: left;
    font-size: inherit;
    display: block;
  }

  .f .spanline {
    height: 5vh;
    width: 2px;
    background-color: #fff;
    display: block;
    float: left;
    clear: both;
    margin: 2.5em 10em;
  }

  .f h6 {
    color: #fff;
    clear: both;
    display: block;
    float: left;
    width: 100%;
    font-family: "GeneralSans";
  }

  .f h6 span {
    font-size: 0.8em;
    opacity: 0.7;
  }

  .instagram {
    width: 100%;
    height: auto;
  }

  .instagram-top {
    width: 85%;
    margin: 3em 7.5%;
    display: block;
    clear: both;
    float: left;
  }

  .instagram-top h2 {
    color: #094e4c;
    font-family: "GeneralSansRegular";
  }

  .instagram-pane {
    width: 100vw;
    height: 100vh;
    display: block;
    float: left;
    clear: none;
  }
}
/* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
}

/* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {
  .gridContainer {
    width: 100vw;
    display: block;
    float: left;
    clear: none;
    overflow-x: hidden;
  }

  .topslider {
    width: 100%;
    height: 110vh;
    display: block;
    float: left;
    clear: none;
    background-color: #063d3c;
    /*display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;*/
    margin: 0;
    padding: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    overflow: hidden;
  }

  .topslider .inner {
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3em 3em;
    width: calc(100% - 6em);
    height: calc(100vh - 6em);
    margin: 3em 3em;
    position: absolute;
    z-index: 0;
  }

  .topslider .inner .slider {
    background-color: #10a3a0;
    height: 100%;
    width: 100%;
    display: block;
    float: left;
    clear: both;
    border-radius: 1em;
    overflow: hidden;
    background-size: cover;
  }

  .ts-top {
    background: rgb(6, 61, 60);
    background: linear-gradient(
      164deg,
      rgba(6, 61, 60, 1) 5%,
      rgba(6, 61, 60, 0.95) 45%,
      rgba(16, 163, 160, 0.3) 100%
    );
    width: 100%;
    height: 110%;
    display: block;
    float: left;
    clear: none;
    position: absolute;
    z-index: 10;
  }

  .tst-inner {
    color: #fff;
    position: relative;
    z-index: 10;
    width: 50%;
    height: auto;
    display: block;
    float: left;
    clear: both;
    top: 25%;
    left: 7.5%;
  }

  .tst-inner p {
    width: 70%;
    display: block;
    float: left;
    clear: none;
  }

  .swiper-container {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-position: center top;
  }

  .scroll-downs {
    position: absolute;
    display: block;
    float: left;
    clear: both;
    bottom: 25%;
    left: 7.5%;
    margin: auto;
    z-index: 20;
    width: 34px;
    height: 55px;
  }
  .mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
  }
  .scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-iteration-count: infinite;
  }
  @keyframes scroll {
    0% {
      opacity: 0;
    }
    10% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(15px);
      opacity: 0;
    }
  }

  .bookingblock {
    background-color: #10a3a0;
    width: 25vw;
    height: auto;
    display: block;
    float: right;
    clear: none;
    padding: 1.5em 2.5em;
    color: #fff;
    position: relative;
    z-index: 20;
    top: -47vh;
    right: 7.5%;
  }

  .bookingblock h3 {
    font-weight: 200;
    margin: 0.3em auto 0.3em;
  }

  .bookingblock p {
    margin-bottom: 7em;
  }

  .browngradient {
    width: 80vh;
    height: 80vh;
    border-radius: 40vh;
    display: block;
    float: left;
    clear: none;
    position: absolute;
    z-index: 30;
    background: rgb(198, 153, 118);
    background: radial-gradient(
      circle,
      rgba(198, 153, 118, 1) 0%,
      rgba(198, 153, 118, 0) 70%
    );
    right: -40vh;
    top: 60vh;
  }

  .b {
    width: 85%;
    margin: -20vh 7.5% 0vh;
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: relative;
    z-index: 50;
  }

  .eventcentre-stroke {
    width: 45%;
    height: 60vh;
    position: relative;
    clear: none;
    display: block;
    float: left;
    background-image: url("../img/eventcenter-strokes.svg");
    background-position: center top;
    background-size: 80%;
    background-repeat: no-repeat;
  }

  .pulsate-fwd {
    -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
    animation: pulsate-fwd 2s ease-in-out infinite both;
  }

  @-webkit-keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.4);
      transform: scale(1.4);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.4);
      transform: scale(1.4);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .star {
    position: absolute;
    -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
    animation: pulsate-fwd 2s ease-in-out infinite both;
  }

  .star:nth-of-type(1) {
    width: 20px;
    height: auto;
    transition-delay: 10ms;
  }

  .star:nth-of-type(2) {
    width: 50px;
    height: auto;
    right: 1em;
    top: 30%;
    transition-delay: 20ms;
  }

  .star:nth-of-type(3) {
    width: 15px;
    height: auto;
    right: 0;
    top: 10%;
    transition-delay: 30ms;
  }

  .star:nth-of-type(4) {
    width: 15px;
    height: auto;
    right: 1em;
    top: 70%;
    transition-delay: 40ms;
  }

  .star:nth-of-type(5) {
    width: 25px;
    height: auto;
    left: 1em;
    top: 70%;
    transition-delay: 50ms;
  }

  .b h2 {
    width: 50%;
    height: auto;
    position: relative;
    clear: none;
    display: block;
    float: right;
    color: #094e4c;
  }

  .b h2 span:first-of-type {
    color: #c69976;
  }

  .b h2 span:nth-of-type(2) {
    color: #10a3a0;
    font-family: "runalto";
    font-weight: 100;
  }

  .c {
    width: 100%;
    height: 70vh;
    display: block;
    float: left;
    clear: none;
    margin: 10vh auto;
    clip-path: polygon(100% 0%, 100% 100%, 49% 90%, 0 100%, 0 0, 50% 10%);
    background-image: url("../img/caseimg/Pics-10.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .c .inner {
    width: 100%;
    height: 100%;
    background: rgb(6, 61, 60);
    background: -webkit-linear-gradient(
      bottom left,
      rgba(6, 61, 60, 0.8) 5%,
      rgba(16, 163, 160, 0) 100%
    );
    background: -o-linear-gradient(
      bottom left,
      rgba(6, 61, 60, 0.8) 5%,
      rgba(16, 163, 160, 0) 100%
    );
    background: linear-gradient(
      to top right,
      rgba(6, 61, 60, 0.8) 5%,
      rgba(16, 163, 160, 0) 100%
    );
    display: block;
    float: left;
    clear: none;
    z-index: 10;
    position: absolute;
  }

  .c video {
    height: auto;
    width: 100%;
    display: block;
    float: left;
  }

  .c button {
    float: right;
    background-color: #fff;
    color: #10a3a0;
    margin: 25% 7.5% auto auto;
  }

  .d {
    width: 50%;
    margin: 15vh 25%;
    height: auto;
    display: block;
    float: left;
    clear: none;
  }

  .d p {
    text-align: center;
    color: #094e4c;
  }

  .d-ico {
    width: 5em;
    height: auto;
    display: block;
    float: left;
    clear: none;
    margin: 6em calc(50% - 2.5em);
    text-align: center;
  }

  .e {
    width: 85%;
    margin: 0vh 7.5% 5vh;
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: relative;
    height: auto;
  }

  .e h2 {
    width: 30%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    position: sticky;
    top: 1.5em;
    bottom: 1.5em;
    font-weight: 600;
    color: #094e4c;
    font-family: "GeneralSansRegular";
  }

  .am-list {
    width: 60%;
    height: 140vh;
    float: right;
    clear: none;
    display: block;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 2em 2em;
    grid-template-areas:
      ". . ."
      ". . ."
      ". . ."
      ". . .";
  }

  .am {
    border-radius: 1em;
    background-color: white;
    padding: 2em;
    width: calc(100% - 4em);
    height: calc(100% - 4em);
  }

  .am svg {
    height: 3em;
    width: auto;
    display: block;
    float: left;
    clear: none;
    margin: 0.5em auto 1.5em;
  }

  .am h4 {
    color: #094e4c;
    margin: 0em auto 0.4em;
  }

  .am p {
    color: #817974;
    font-weight: 600;
  }

  .f {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    background-color: #10a3a0;
    margin: 10vh auto;
  }

  .testimony-slide {
    width: 85%;
    margin: auto 7.5%;
    height: 10vh;
    display: block;
    float: left;
    clear: none;
  }

  .testimony-slide .swiper-slide {
    text-align: left;
    font-size: inherit;
    display: block;
  }

  .f .spanline {
    height: 5vh;
    width: 2px;
    background-color: #fff;
    display: block;
    float: left;
    clear: both;
    margin: 2.5em 10em;
  }

  .f h6 {
    color: #fff;
    clear: both;
    display: block;
    float: left;
    width: 60%;
    font-family: "GeneralSans";
  }

  .f h6 span {
    font-size: 0.8em;
    opacity: 0.7;
  }

  .instagram {
    width: 100%;
    height: auto;
  }

  .instagram-top {
    width: 85%;
    margin: 3em 7.5%;
    display: block;
    clear: both;
    float: left;
  }

  .instagram-top h2 {
    color: #094e4c;
    font-family: "GeneralSansRegular";
  }

  .instagram-pane {
    width: 100vw;
    height: 100vh;
    display: block;
    float: left;
    clear: none;
  }
}

/* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
}
/* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
}
