@charset "utf-8";
/* CSS Document */
/* Default to 30% viewport width */
.custom-img {
  width: 30vw;
  float: right;
  margin-left: 20px;
}
@media (min-width: 1400px) {
  .custom-img {
    width: 30vw;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .custom-img {
    width: 40vw;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .custom-img {
    width: 50vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .custom-img {
    width: 40vw;
  }
}
@media (max-width: 767px) {
  .custom-img {
    width: 30vw;
  }
}
address span strong {
  color: saddlebrown;
}
.btn {
  display: inline-block;      /* shrink-wrap to text */
  padding: 5px 5px;          /* top/bottom 2px, left/right 10px */
  line-height: 1;             /* minimal vertical height */
  border: 1px solid #00255B;  /* ensure a visible border */
}
.my-hover-btn {
  background-color: #053100; /* normal color */
  border-color: #00255B;
  color: #fff;
}
/* hover / focus / active states */
.my-hover-btn:hover, .my-hover-btn:focus, .my-hover-btn:active {
  background-color: #FFF500; /* rollover color */
  border-color: #370000;
  color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
/* base state */
a.my-hover-btn {
  background-color: #003C7E;   /* your normal background */
  color: #fff;                 /* your normal text color */
  text-decoration: none;
  border: none;
}

/* hover state */
a.my-hover-btn:hover,
a.my-hover-btn:focus {
  background-color: #CF0000;   /* your hover background */
  color: #fff;                 /* your hover text color */
  text-decoration: none;
}
.my-nav-hover-btn {
  background-color: #053100; /* normal color */
  border-color: #00255B;
  color: #fff;
}
/* hover / focus / active states */
.my-nav-hover-btn:hover, .my-nav-hover-btn:focus, .my-nav-hover-btn:active {
  background-color: #FFF500; /* rollover color */
  border-color: #370000;
  color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
#mainmenu a.my-nav-hover-btn {
  line-height: 35px;   /* match other items */
  padding: 3px 3px 3px 10px;     /* match other items horizontally */
  margin: 20px 0px 0px 0px;     /* match other items horizontally */
  background-color: #053100;
  border: 1px solid #00255B;
  color: #fff;
}
/*
#mainmenu a {
  display: inline-block;
  padding: 4px 10px;
  line-height: 1.2;
}
*/
#booking-section-intro {
  background-color: #F8F2EB;
  background-image: url('../images/misc/paper_bg_002.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  background-attachment: fixed;
}
#booking-section-intro strong {
  font-weight: 900; /* try 700, 800, or 900 depending on your font */
}
#photos-section-intro {
  background-color: #F8F2EB;
  background-image: url('../images/misc/paper_bg_002.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  background-attachment: fixed;
}
#photos-section-intro strong {
  font-weight: 900; /* try 700, 800, or 900 depending on your font */
}
#home-section-intro {
  background-color: #F8F2EB;
  background-image: url('../images/misc/paper_bg_002.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  background-attachment: fixed;
}
#home-section-intro strong {
  font-weight: 900; /* try 700, 800, or 900 depending on your font */
}
#generic-section-intro {
  background-color: #F8F2EB;
  background-image: url('../images/misc/paper_bg_002.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  background-attachment: fixed;
}
#generic-section-intro strong {
  font-weight: 900; /* try 700, 800, or 900 depending on your font */
}
h1, h2, h3, h4, h5, h6 {
  color: #07003b;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
}
/* xs: <576px */
@media (max-width: 575.98px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 27px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 12px;
  }
}
/* sm: ≥576px and <768px */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 12px;
  }
}
/* md: ≥768px and <992px */
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 33px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 12px;
  }
}
/* lg: ≥992px and <1200px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 12px;
  }
}
/* xl: ≥1200px and <1400px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 39px;
  }
  h3 {
    font-size: 34px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 12px;
  }
}
/* xxl: ≥1400px */
@media (min-width: 1400px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 36px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 12px;
  }
}
a[data-fancybox="gallery"] img {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
  border-radius: 2px; /* optional */
}