.dm-nav > .dm-menu, .dm-nav {
  display: flex;
}

.dm-nav > .dm-menu, .dm-nav {
  align-items: center;
}

.dm-nav {
  position: relative;
}
.dm-nav[dm-nav-animate] .dm-menus-dropdown {
  transition: max-height 1s 0s;
}
.dm-nav > i {
  position: absolute;
  visibility: hidden;
  font-size: 48px;
}
.dm-nav a, .dm-nav li, .dm-nav p {
  margin: unset;
  cursor: pointer;
}
.dm-nav a {
  text-decoration: none;
}
.dm-nav button {
  border: none;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
}
.dm-nav .dm-menu {
  list-style-type: none;
  margin: unset;
}
.dm-nav .dm-menu .dm-menus-dropdown {
  display: none;
  list-style-type: none;
  max-height: var(--max);
  overflow-y: hidden;
  position: absolute;
  top: 100%;
  visibility: hidden;
}
.dm-nav .dm-menu .dm-menus-dropdown li {
  padding: 10px 0;
}
.dm-nav .dm-menu > li {
  margin: 0 10px;
}
.dm-nav .dm-menu > li:first-child {
  margin-left: 0;
}
.dm-nav .dm-menu > li:last-child {
  margin-right: 0;
}
.dm-nav li {
  padding: 20px 0;
  height: fit-content;
  width: max-content;
}
.dm-nav ul.dm-menus-dropdown[dm-nav=open] {
  display: flex;
  position: absolute;
  visibility: visible;
  flex-direction: column;
  background-color: #fff;
  border-top: #000 solid 1px;
  padding: 0 10px;
}
.dm-nav ul.dm-menus-dropdown[dm-nav=open] .dm-menus-dropdown {
  padding: 0 10px;
  width: 100%;
}
.dm-nav ul.dm-menus-dropdown[dm-nav=open] > li:first-child {
  margin-top: 10px;
}
.dm-nav ul.dm-menus-dropdown[dm-nav=open] > li:last-child {
  margin-bottom: 10px;
}
@media only screen and (hover: hover) {
  .dm-nav .dm-menu .dm-menus-dropdown:hover, .dm-nav .dm-menu p:hover + .dm-menus-dropdown, .dm-nav .dm-menu li:hover > .dm-menus-dropdown {
    background-color: #fff;
    border-top: #000 1px solid;
    display: initial;
    padding: 10px;
    position: absolute;
    visibility: visible;
    min-width: max-content;
    max-height: var(--max);
  }
  .dm-nav .dm-menu .dm-menus-dropdown {
    max-height: 0;
  }
}

/* Default Handling*/
@media only screen and (max-width: 640px) {
  .dm-nav[dm-nav-break] > i {
    position: relative;
    visibility: visible;
  }
  .dm-nav[dm-nav-break] > ul.dm-menus-dropdown {
    max-height: var(--max);
    padding: 0 20px;
    top: 100%;
    right: 0;
  }
  .dm-nav[dm-nav-break] > ul.dm-menus-dropdown[dm-nav=open] {
    position: absolute;
  }
  .dm-nav[dm-nav-break] a {
    width: 100%;
  }
  .dm-nav[dm-nav-break] .dm-menus-dropdown {
    flex-direction: column;
    position: absolute;
    visibility: hidden;
    background-color: #fff;
    border-top: #000 solid 1px;
    padding: 0 10px;
  }
  .dm-nav[dm-nav-break] .dm-menus-dropdown .dm-menus-dropdown {
    padding: 0 10px;
    width: 100%;
  }
  .dm-nav[dm-nav-break] .dm-menus-dropdown > li:first-child {
    margin-top: 10px;
  }
  .dm-nav[dm-nav-break] .dm-menus-dropdown > li:last-child {
    margin-bottom: 10px;
  }
  .dm-nav[dm-nav-break] li {
    width: 100%;
    min-width: max-content;
    margin: 0;
    padding: 10px 0;
  }
  .dm-nav[dm-nav-break] ul {
    list-style: none;
  }
  .dm-nav[dm-nav-break] .dm-menus-dropdown[dm-nav=open] {
    display: flex;
    position: static;
    visibility: visible;
  }
  .dm-nav[dm-nav-break] .dm-menus-dropdown[dm-nav=closed], .dm-nav[dm-nav-break] .dm-menus-dropdown[dm-nav=""] {
    display: none;
  }
}
@media only screen and (max-width: 640px) and (hover: hover) {
  .dm-nav > ul.dm-menus-dropdown:hover, .dm-nav > p:hover + .dm-menus-dropdown, .dm-nav > i:hover + .dm-menus-dropdown {
    display: flex;
    position: absolute;
    visibility: visible;
  }
  .dm-nav > .dm-menu .dm-menus-dropdown:hover, .dm-nav > .dm-menu p:hover + .dm-menus-dropdown, .dm-nav > .dm-menu li:hover > .dm-menus-dropdown {
    position: static;
    visibility: visible;
    display: flex;
  }
  .dm-nav .dm-menus-dropdown {
    display: none;
  }
}
/**/
footer p, footer a {
  font-size: 12px;
}

main {
  background-color: #f8fbfd;
  font-family: "Roboto";
}
main h1 {
  font-size: 38px;
  margin-bottom: 32px;
}
main h2 {
  font-size: 28px;
  text-align: center;
}
main h3 {
  font-size: 22px;
}
main h4 {
  font-size: 18px;
}
main h5 {
  font-size: 16px;
}
main h6 {
  font-size: 14px;
}
main p, main a, main ul, main li {
  font-size: 16px;
}
main ul, main li {
  line-height: 1.5;
}

/**/
.flex, .flex-column {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

/**/
a {
  color: #000;
  text-decoration: none;
}

#Awards {
  margin: 0 auto;
}

.background-black {
  background-color: #000;
}

.background-gray {
  background-color: #f3f3f3;
}

.background-green {
    background-color: #18856b;
    color: #fff;
}

.background-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
}

.background-red {
  background-color: #cd541f;
  color: #fff;
}

.background-secondary {
  background-color: #333;
  color: #fff;
}

.background-yellow {
  background-color: #fae5b1;
}

body {
  margin: 0;
}

#Contact {
  max-width: 1300px;
  margin: 0 auto;
}
#Contact iframe {
  width: 100%;
}

#Facilities {
  justify-content: center;
}

footer .background-image {
  background-image: url("../images/art.webp");
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 65px;
}
footer > div:first-child {
  box-sizing: border-box;
  height: 65px;
  padding: 8px 16px;
}
footer > div:last-child {
  text-align: center;
  color: #fff;
  padding: 8px;
}
footer > div:last-child a {
  color: #fff;
  text-decoration: none;
}
footer h3 {
  color: #fff;
  font-size: 22px;
  font-style: italic;
  font-weight: bold;
}
footer div:has(img) {
  height: 100%;
}
footer img {
  height: 100%;
  width: auto;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-flow: dense;
  margin-top: 64px;
}

header {
  background-color: #18856b;
  height: 60px;
}
header a {
  color: #fff;
}
header .active {
  font-weight: bold;
}
header .background-image {
  background-image: url("../images/logo_bar.webp");
  background-position: right;
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 100%;
  width: 100%;
}
header .background-image:last-child {
    background-position: left;
}
header div {
  height: 100%;
}
header div:has(> img) {
  height: 100%;
}
header img {
  object-fit: contain;
  height: 100%;
}
header .dm-nav {
  position: absolute;
  left: 22px;
  z-index: 1;
}
header .dm-nav > i {
  color: #fff;
}
header .dm-nav[dm-nav-break] > ul.dm-menus-dropdown {
  right: unset;
  left: 0;
}
header nav {
  font-size: 16px;
}
header ul {
  padding: 0;
}

.hero img {
    max-width: 1920px;
    width: 100%;
    height: auto;
}

main a > img {
  object-fit: contain;
  width: 100%;
  height: auto;
}
main div > img {
  display: block;
  object-fit: contain;
  width: 100%;
}

#Why > div {
  margin: 0 auto;
  max-width: 1700px;
}
#Why > div > div {
  padding: 16px;
}

#Rooms {
  flex-wrap: wrap;
  justify-content: center;
}
#Rooms div {
  margin-right: 16px;
  width: max-content;
  max-width: 100%;
}

.text-center {
  text-align: center;
}

@media screen and (min-width: 901px) {
  #Contact div {
    margin-right: 32px;
  }
  .padding {
    padding: 64px;
  }
}
@media screen and (max-width: 900px) {
  #Contact {
    flex-direction: column;
  }
}
@media screen and (max-width: 900px) and (min-width: 641px) {
  .padding {
    padding: 32px;
  }
}
@media screen and (min-width: 641px) {
  #Why .flex-column {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  #Facilities {
    flex-direction: column;
  }
  footer > div:first-child {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  footer img {
    height: 50px;
  }
  footer h3 {
    margin: 16px 0;
  }
  header {
    height: 60px;
  }
  header a {
    color: #333;
  }
  header .dm-nav {
    top: 10px;
  }
  header nav {
    background-color: #18856b;
    padding: 0 6px;
  }
  main ul {
    padding-left: 32px;
  }
  .padding {
    padding: 16px;
  }
  #Why > div {
    flex-direction: column;
  }
}

/*# sourceMappingURL=default.css.map */
