@font-face {
  font-family: "Raleway Bold";
  src: url("../fonts/Raleway-Bold.f49f3d2d.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway Regular";
  src: url("../fonts/Raleway-Regular.9942588a.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway Medium";
  src: url("../fonts/Raleway-Medium.bb5ae98e.ttf") format("truetype");
}

:root {
  --font-color-01: #353535;
  --font-color-02: #126441;
  --font-color-03: #537f68;
  --background-color-01: #eef7ea;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  color: var(--font-color-01);
  font-family: sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
}

body {
  background-color: var(--background-color-01);
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 63px 0 0;
  z-index: 2;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

h1 {
  font-family: "Raleway Bold";
  font-size: calc(32rem / 16);
  margin: 0 0 16px 0;
}

h2 {
  font-family: "Raleway Medium";
  font-size: calc(28rem / 16);
  margin: 0 0 16px 0;
}

h3 {
  font-family: "Raleway Medium";
  font-size: calc(20rem / 16);
  margin: 0 0 10px 0;
}

p {
  font-family: "Raleway Regular";
  font-size: calc(16rem / 16);
  line-height: 22px;
  margin: 0 0 16px 0;
}

hr {
  height: 1px;
  background: #cbdec3;
  font-size: 0;
  border: 0;
  width: 100%;
}

/* Home Page */
.gray {
  background: gray;
}
.banner-container {
  position: relative;
  width: 100%;
  max-width: 2200px;
  margin: 0 auto;
  padding-top: 60px;
}

.banner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 600px;
  margin: 0 auto 0;
  background: url("../img/banner.png") 50% 0 no-repeat;
  background-position: center bottom;
  background-size: cover;
  overflow-x: hidden;
}

.banner-wavy {
  position: absolute;
  z-index: 1;
  bottom: -70px;
  right: 0;
  width: 100%;
}

.banner-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 700px;
  text-align: center;
}

.banner-heading {
  font-family: "Raleway Bold";
  font-size: 38px;
  padding: 0 10px 30px;
  margin: 0px;
  color: white;
  min-height: auto;
  height: 200px;
  text-shadow: rgba(0, 0, 0, 0.351) 1px 1px 6px;
  line-height: normal;
}

.inquire-button {
  color: #ffffff;
  background-color: #116441;
  border: 1.5px solid #116441;
  border-radius: 2em;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 20px;
}

.inquire-button > a {
  color: white;
}

.inquire-button:hover {
  color: #ffffff;
  background-color: transparent;
  border: 1.5px solid #116441;
  -webkit-transition: all ease-in-out 350ms;
  -o-transition: all ease-in-out 350ms;
  transition: all ease-in-out 350ms;
}

@media screen and (max-width: 1200px) {
  .banner {
    width: 100%;
    height: 500px;
  }

  .banner-wavy {
    bottom: -30px;
  }
}

@media screen and (max-width: 800px) {
  .banner-heading {
    font-size: 30px;
  }

  .banner {
    width: 100%;
    height: 400px;
  }

  .banner-wavy {
    width: 800px;
    bottom: -50px;
  }

  .banner-text-container {
    padding-top: 0;
  }

  .banner-heading {
    height: 150px;
  }
}

@media screen and (max-width: 600px) {
  .banner {
    height: 320px;
  }

  .banner-heading {
    height: 130px;
    padding: 0 10px 20px;
  }
}

.intro-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto 48px;
  overflow-x: hidden;
  padding: 0 24px;
  max-width: var(--max-width);
  z-index: 1;
}

.intro-img {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .intro-container {
    gap: 0;
    padding-right: 0;
  }

  .intro-img {
    margin-left: 50px;
  }
}

@media screen and (max-width: 800px) {
  .intro-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding-right: 24px;
  }

  .intro-img {
    max-width: 490px;
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 500px) {
  .intro-container {
    padding: 0 16px;
  }

  .intro-img {
    margin-left: -45px;
    width: calc(100% + 100px);
    max-width: none;
  }
}

.holder {
  position: relative;
  width: 200px;
  height: 50px;
}

.clip {
  overflow: hidden;
  margin: 10px auto 0px;
}

/* Funky line */
.ellipse {
  position: absolute;
  background: -o-radial-gradient(
    ellipse,
    transparent,
    transparent 7px,
    #11644174 7px,
    #11644174 10px,
    transparent 11px
  );
  background: radial-gradient(
    ellipse,
    transparent,
    transparent 7px,
    #11644174 7px,
    #11644174 10px,
    transparent 11px
  );
  background-size: 36px 40px;
  width: 200px;
  height: 20px;
}

.ellipse2 {
  top: 20px;
  left: 18px;
  background-position: 0px -20px;
}

.carousal-container {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: center;
  overflow-x: hidden;
}

/* Carousal */
.carousal {
  position: relative;
  height: 300px;
}

.items {
  position: relative;
  top: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.items .item {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: -1;
  opacity: 0;
}

.item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.item.active {
  opacity: 1;
  z-index: 3;
}

.item.prev {
  z-index: 2;
  opacity: 0.2;
  -webkit-transform: translate(-125%, -50%) scale(0.7);
  -ms-transform: translate(-125%, -50%) scale(0.7);
  transform: translate(-125%, -50%) scale(0.7);
}

.item.next {
  z-index: 2;
  opacity: 0.2;
  -webkit-transform: translate(25%, -50%) scale(0.7);
  -ms-transform: translate(25%, -50%) scale(0.7);
  transform: translate(25%, -50%) scale(0.7);
}

.items .button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 325px;
  z-index: 100;
}

.button-container .button {
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  position: relative;
  opacity: 0.75;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.button-container .button:hover {
  opacity: 1;
}

.button-container .button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #116441;
  border-radius: 50%;
  z-index: -99;
}

.button-container .button:nth-child(1) {
  float: left;
}

.button-container .button:nth-child(2) {
  float: right;
}

.arrow {
  border: solid rgb(255, 255, 255);
  border-width: 0 5px 5px 0;
  display: inline-block;
  padding: 5px;
  border-radius: 3px;
}

.right {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.accommodation-banner-wavy {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin-top: -120px;
}

.accommodation-container {
  display: block;
  width: 100%;
  background: white;
}

.accommodation-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media screen and (max-width: 1200px) {
  .accommodation-banner-wavy {
    margin-top: 0;
  }
}

@media screen and (max-width: 900px) {
  .accommodation-content {
    padding: 0;
  }

  .accommodation-info {
    padding: 0 24px;
  }
}

@media screen and (max-width: 800px) {
  .accommodation-content {
    margin: 0 auto;
    padding: 75px 0;
  }

  .accommodation-banner-wavy {
    margin-top: -120px;
  }
}

@media screen and (max-width: 800px) {
  .accommodation-info {
    padding: 0 16px;
  }
}

.left-spacing {
  margin-left: 20px;
}

.top-spacing {
  padding-top: 20px;
}

.top-spacing-xl {
  padding-top: 46px;
}

.offer-heading {
  text-align: center;
  margin: -20px 0 50px;
  z-index: 2;
  position: relative;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 36px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 36px;
}

.room-list {
  padding: 10px;
  margin: 10px;
}

.room-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}

.view-more-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 18px;
  text-decoration: underline;
  width: 100%;
}

.view-more {
  color: rgb(142, 142, 142);
  font-size: 14px;
}

@media screen and (max-width: 900px) {
  .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }

  .reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .offer-heading {
    margin: 0 0 16px;
    text-align: left;
  }
}

@media screen and (max-width: 600px) {
  .offer-heading {
    margin: 0 0 16px;
    text-align: left;
  }
}

.flipped {
  margin-top: 0;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.contact {
  padding-top: 75px;
}

.contact-details {
  font-family: "Raleway Medium";
  text-decoration: underline;
}
