* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  overflow: auto;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  color: #fff;
}

img {
  pointer-events: none;
}

p {
  margin-bottom: 10px;
}

.cn-header {
  width: 100vw;
  max-height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 960px) {
  .cn-header {
    padding: 50px;
  }
}

.transparent-background {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.dark-background {
  background: linear-gradient(to bottom, #001c21 70%, #000 100%);
}

.fixed-logo {
  width: 108px;
  height: 72px;
}

.cn-logo-small {
  width: 100%;
  height: 100%;
}

.header-info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  column-gap: 20px;
}


.cta {
  width: 40px;
  height: 40px;
}

.locations {
  display: inline-block;
  margin-left: 20px;
  border-bottom: 2px solid #fff;
  border-radius: 2px;
}

.check-availability {
  width: max-content;
  border: 2px solid #fff;
  padding: 6px;
  border-radius: 8px;
  display: inline-block;
}

@media (min-width: 768px) {
  .check-availability {
    border: 4px solid #fff;
  }
}


.book-now-button {
  color: #fff;
  font-size: 1.2em;
  text-decoration: none;
}

main {
  width: 100vw;
  height: 100vh;
  position: relative;
}

video#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-title {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  padding: 8px;
  border-radius: 2px;
}

.hero-name {
  font-size: 2em;
  margin-bottom: 20px;
}

@media (min-width: 960px) {

  .hero-title {
    width: 50%;
  }

  .hero-name {
    font-size: 3em;
  }
}

.hero-tag {
  font-size: 1em;
}

@media (min-width: 960px) {
  .hero-tag {
    font-size: 1.5em;
  }
}

.hero-amenities {
  width: 300px;
  height: 30px;
  margin-top: 20px;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.amenities-img {
  width: 100%;
  height: 100%;
}

.down-button {
  position: absolute;
  width: 20vw;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  border-radius: 8px;
  padding: 4px 0;
}

@media (min-width: 968px) {
  .down-button {
    width: 10vw;
    bottom: 4px;
  }
}

.down-button div {
  text-align: center;
  padding: 4px 0;
}

.down-button span {
  display: block;
  width: 4vw;
  height: 4vw;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  animation: animate 2s infinite;
  transform: translate(-50%, -50%);
  margin: auto;
}

@media (min-width: 960px) {
  .down-button span{
    width: 1.3vw;
    height: 1.3vw;
    margin-left: 35%;
  }
}

.down-button span:nth-child(2) {
  animation-delay: -0.1s;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-15px, -15px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(15px, 15px);
  }
}

/*
.down-button {
  width: 60px;
  height: 60px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background-color: #fff;
  border: 2px double whitesmoke;
  cursor: pointer;
  border-radius: 10px;
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translate(-50%, -50%);
}
*/

.extra-space {
  display: inline;
  margin-left: 2px;
  margin-right: 2px;
}

@media (min-width: 600px) {
  .extra-space {
    margin-left: 13px;
    margin-right: 13px;
  }
}

@media (min-width: 960px) {
  .extra-space {
    margin-left: 16px;
    margin-right: 16px;
  }
}

.section-title {
  font-size: 2em;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  color: white;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.know-us-section {
  width: 100vw;
  background: linear-gradient(to right, #001C21 20%, #158B93 45%, #040000 80%);
}

@media (min-width: 1024px) {
  .know-us-section {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 100px);
    align-items: flex-start;
    overflow: hidden;
  }
}


.about-us {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
  overflow: hidden;
  background-color: #040000;
  color: white;
  padding: 20px;
}


@media (min-width: 1024px) {
  .about-us {
    width: 50vw;
    height: calc(100vh - 100px);
    flex-direction: row;
    column-gap: 20px;
    row-gap: 0;
    justify-content: center;
    align-items: center;
  }
}

.who-we-are {
  font-size: 2em;
}

@media (min-width: 1024px) {
  .who-we-are {
    height: 100%;
    font-size: 2.5em;
    padding-left: 30px;
    padding-right: 0;
  }
}

.who-we-are-title {
  width: max-content;
  display: inline;
  border-bottom: none;
  line-height: 2em;
  color: #fff;
}

@media (min-width: 1024px) {
  .who-we-are-title {
    border-bottom: 2px solid #158B93;
    flex: 1;
  }
}

.cn-description p {
  text-align: justify;
  padding: 10px 20px;
  flex: 2;
  color: #fff;
  font-size: 1em;
}

.italic {
  font-style: italic;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 20px;
  justify-content: center;
  background: linear-gradient(to bottom, #001C21 80%, #000 100%);
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .gallery img {
    width: 70%;
  }
}


@media (min-width: 960px) {
  .gallery img {
    width: 40%;
  }
}


.experiences-section {
  width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  background: #040000;
  padding: 5px;
}

.experiences-video-container {
  max-width: 478px;
  max-height: 850px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}


@media (orientation: landscape), (min-width: 848px) {
  .experiences-video-container {
    max-width: 848px;
    max-height: 478px;
  }
}

.experiences-video {
  width: 100%;
  height: 100%;
}

.video-play-button-centre {
  height: 50px;
  width: 50px;
  background-color: #001C21;
  border: 4px solid #001C21;
  border-radius: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-controls {
  width: 60%;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 4px solid #001C21;
  border-radius: 12px;
  padding: 4px;
}

@media (min-width: 848px) {
  .video-controls {
    width: 40%;
  }
}

@media (display-mode: fullscreen) {
  .video-controls {
    width: 30%;
    bottom: 40px;
  }
}

.video-controls button {
  width: 40px;
  cursor: pointer;
  color: #fff !important;
  font-size: 1.3em;
  border: 2px outset #006C75;
  border-radius: 12px;
  padding: 6px 8px;
  background: #001C21 !important;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.events-workshops {
  width: 100vw;
  background: linear-gradient(to right, #006C75 40%, #0f1a19 100%);

}

.event-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

@media (min-width: 960px) {
  .event-container {
    width: 50%;
  }
}

.event {
  width: 100%;
  margin-bottom: 30px;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 16px;
  padding: 16px;
  border: 4px outset #ac1e44;
}

@media (min-width: 768px) {
  .event {
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
    border: 8px outset #ac1e44;

  }
}

.event-sponsor {
  border-top: 2px solid #ac1e44;
  background: rgba(4, 0, 0, 0.8);
  border-radius: 10px;
  color: white;
  font-size: 0.8em;
}

.event-sponsor-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  column-gap: 10px;
}

@media (min-width: 768px) {

  .event-sponsor {
    border-left: 2px solid #ac1e44;
    border-top: none;
  }

  .event-sponsor-logos {
    flex-direction: column;
    row-gap: 10px;
    column-gap: 0;
    padding: 20px;
  }

}

.event-presented-by {
  text-align: center;
  padding: 13px 0;
  color: white;
  font-size: 0.8em;
}


.event-sponsor-logo {
  width: 30%;
  object-fit: contain;
  padding: 10px;
  min-width: 120px;
}

@media (min-width: 768px) {
  .event-sponsor-logo {
    width: 60%;
    margin-bottom: 12px;
    max-width: 160px;

  }
}

.event-details {
  color: white;
  padding: 13px;
}

@media (min-width: 768px) {
  .event-details {
    padding-right: 24px;
  }
}
.event-name {
  font-size: 1.5em;
}

.event-description {
  font-size: 0.9em;
  margin-top: 8px;
  margin-bottom: 10px;
  text-align: justify;
}

.event-date,
.event-time {
  font-size: 1em;
  margin-bottom: 8px;
  text-align: end;
}

.testimonials {
  width: 100vw;
  color: white;
  background-image: url('../media/dark_night_moon.webp');
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .testimonials {
    height: calc(100vh - 100px);
  }
}

.testimonials-title {
  font-size: 2.5em;
  font-style: italic;
  padding-top: 60px;
}

@media (min-width: 1024px) {
  .testimonials-title div{
    position: absolute;
    left: 400px;
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.testimony-container {
  width: 90vw;
  padding: 24px;
  line-height: 1.6;
  margin: auto;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .testimony-container {
    width: 60vw;
    position: relative;
    left: -160px;
    top: 40px;
  }
}

.testimony {
  text-align: center;
  font-size: 1.3em;
  transition: left 1s;
  height: 400px;
}

@media (min-width: 1024px) {
  .testimony {
    height: 300px;
  }
}

.testimony.previous {
  display: none;
}

.testimony .review {
  margin-bottom: 20px;
  text-align: center;
}

.testimony .user {
  font-size: 0.8em;
}

.rating {
  font-size: 1.5em;
  color: #FF9933;
}

.arrows {
  padding-bottom: 40px;
}

@media (min-width: 1024px) {
  .arrows {
    position: relative;
    left: -140px;
  }
}

.arrow {
  background-color: transparent;
  border: none;
  z-index: 2;
  cursor: pointer;
}

.arrow.left {
  margin-right: 30px;
}

.arrow.right {
  margin-left: 30px;
}

.our-story-section {
  width: 100%;
  height: calc(100vh - 100);
  background-color: #006C75;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #7cefd2;
}

.our-story-section p {
  text-align: justify;
  font-size: 1em;
  color: white;
  margin-bottom: 13px;
}

.our-story {
  width: 100%;
}

@media (min-width: 768px) {
  .our-story-section {
    flex-direction: row;
    column-gap: 60px;
    position: relative;
    justify-content: space-evenly;
  }

  .vertical-section-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    background: rgba(4, 0, 0, 0.8);
    padding: 8px;
    width: 13%;
    font-size: 3em;
    z-index: 100;
    max-width: 80px;
    border-right: 2px solid #7cefd2;
    border-bottom: 2px solid #7cefd2;
  }

  .our-story {
    width: 70%;
  }
}


.vision-future-container {
  width: 100%;
  margin: auto;
  line-height: 1.3em;
  padding: 20px;
  font-size: 1em;
}


.about-card {
  width: 90%;
  height: 60%;
  background-color: #014d4b;
  border: 4px outset #7cefd2;
  border-radius: 4px;
  color: white;
  padding: 20px 20px;
  display: inline-block;
  text-align: justify;
}

.about-card-title {
  width: max-content;
  font-size: 2em;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .vision-future-container {
    width: 70%;
  }
}

.vision-future-container .our-future {
  position: relative;
  top: -16px;
  left: 14%;
}

@media (min-width: 768px) {
  .vision-future-container .our-vision {
    position: relative;
    left: 5%;
  }

  .vision-future-container .our-future {
    left: 25%;
  }
}

.communications {
  width: 100vw;
  background: linear-gradient(to right, #006C75 40%, #0f1a19 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 30px 30px;
  font-size: 1em;
  row-gap: 40px;
  color: white;
}

@media (min-width: 768px) {
  .communications {
    height: max-content;
  }
}

@media (min-width: 960px) {
  .communications {
    flex-direction: row;
    column-gap: 40px;
    height: max-content;
  }
}

.cn-logo-footer {
  max-width: 300px;
  max-height: 200px;
  flex: 1;
}

.cn-logo-footer-img {
  width: 100%;
  height: 100%;
}

.book-now-section {
  width: 100vw;
  background-color: #000;
  text-align: center;
  padding: 40px;
}

.book-now-title {
  padding: 20px;
  font-size: 2em;
  font-style: italic;
  font-weight: 700;
}

.booking-partners {
  display: flex;
  flex-direction: row;
  column-gap: 18px;
  justify-content: center;
  align-items: center;
}


.booking-partners {
  display: flex;
  column-gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}


.book-now-partner-logo {
  width: 90px;
}


.book-now-partner-img {
  max-width: 100%;
  max-height: 100%;
  background: transparent;
}

.connect {
  max-width: 400px;
  flex: 1;
}


.connect .location-pin {
  margin-bottom: 10px;
}

.connect .phone {
  margin-top: 15px;
}

.phone a,
.email a {
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 10px;
}

.socials {
  margin-top: 20px;
}


.socials a {
  text-decoration: none;
  margin-right: 10px;
}


.phone svg,
.socials svg, 
.email svg{
  margin-right: 6px;
}

footer {
  width: 100vw;
  font-size: 0.8em;
  display: block;
  color: white;
  text-align: center;
  padding: 4px;
  border-top: 2px solid #014d4b;
  background: linear-gradient(to right, #006C75 40%, #0f1a19 100%);

}

.techroom-link {
  color: #fff;
}