/* Limited CSS reset */
/* Also see normalize.css */

html, button, input, select, textarea,
.pure-g [class *= "pure-u"] {
  font-family: 'Tinos', serif;
  color: #333;
}

html, body {
  font-family: 'Tinos', serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #333;
}

body {
  /*font-size: 100%;*/ /* use browser default font size, usually 16px */
  height: 100%;
  background-color: #FFFFF5;
  line-height: 1.4;
}

input {
  padding: 4px;
  color: #626366;
}

/* Layout styles ------------------------------------------*/
.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.clearfix:before, .clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}

.clearfix:after {
  clear: both;
}

.halign-l {
  text-align: left;
}

.halign-r {
  text-align: right;
}

.halign-c {
  text-align: center;
}

.valign-t {
  vertical-align: top;
}

.valign-m {
  vertical-align: middle;
}

.valign-b {
  vertical-align: bottom;
}

.css-table {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.css-table-cell {
  display: table-cell;
}

.full-width-img {
  width: 100%;
  height: auto;
  display: block;
}

.constrain {
  width: 1160px;
  margin: 0 auto;
}

/* Responsive container for Youtube video clips. The Youtube iframe should be a child of a div with a class of
  "video-container". If creating such a container is not possible because you don't have access to the HTML eg in
  a CMS content element, you can call the ICIT responsifyYoutubeClips() JavaScript function to do it programmatically.
*/
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mobile-only-block,
.mobile-only-inline {
  display: none;
}

.desktop-only-inline {
  display: inline-block;
}

.desktop-only-block {
  display: block;
}

/* Header styles ------------------------------------------------------------------------------------*/
#top-header {
  padding: 20px;
  background-color: #fff;
}

/*
#top-header a,
#top-header a:visited,
#top-header a:hover,
#top-header a:active,
#top-header a:focus {
  color: #9C232B;
}
*/

/*
#top-header a:hover,
#top-header a:active,
#top-header a:focus {
  text-decoration: none;
}
*/

#header-logo {
  max-width: 100%;
  height: auto;
}

#top-header .logo-container {
  width: 40%;
}

#top-header .header-col2 {
  position: relative;
  width: 60%;
  text-align: right;
}

.header-col2__desktop-cta {
  display: table-cell;
  vertical-align: middle;
  width: 300px;
}

.header-col2__desktop-cta h2 {
  margin: 0 10px 5px 0;
  font-size: 1.8em;
  color: #9C232B;
  text-align: center;
  display: inline-block;
}

.header-col2__icons-row {
  display: table-cell;
  /*height: 55px;*/
  vertical-align: middle;
}

a.header-col2__icon {
  padding: 0;
  vertical-align: middle;
  font-size: 3em;
  text-decoration: none;
  color: #9C232B;
  display: inline-block;
  margin-left: 10px;
}

a.header-col2__icon:hover,
a.header-col2__icon:focus,
a.header-col2__icon:active {
  color: #f89d0f;
}

.header-col2__icons-row img {
  margin-left: 10px;
  max-height: 100%;
  width: auto;
}

#nav-wrapper {
  position: relative;
  padding: 8px;
}

#menu-wrap {
  background-color: #9C232B;
}

#menu {
  text-align: center;
}

.nav--ucase {
  text-transform: uppercase;
}

#mobile-cta {
  display: none;
  padding: 15px 0;
  text-align: center;
  background-color: #FB9E13;
  color: #fff;
}

#mobile-cta .booking-button {
  margin-bottom: 10px;
}

#mobile-cta h2 {
  font-size: 1.35em;
  margin: 0;
  color: #fff;
}

#mobile-cta a,
#mobile-cta a:visited,
#mobile-cta a:hover,
#mobile-cta a:focus,
#mobile-cta a:active {
  color: #fff;
  text-decoration: none;
}

/* Content styles ------------------------------------------------------------------------------------*/
p {
  margin-bottom: .8rem;
}

#top-hero-img {
  z-index: 10;
  margin: 0;
  padding: 0;
}

#top-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

#content-wrapper {
  display: block;
  padding-top: 20px;
  font-size: 1.1rem;
}

#content {
  padding: 10px 20px 20px;
}

#content img {
  max-width: 100%;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  color: #9C232B;
  line-height: 1.1;
}

h2 {
  font-size: 1.55em;
}

h3 {
  font-size: 1.4em;
}

hr {
  border: none;
  border-top: 1px solid #9C232B;
  color: #FFFFF5;
  background-color: #FFFFF5;
  height: 2px;
}

a {
  transition: .2s all ease-out;
}

#content .ce-bodytext p:first-child {
  margin-top: 0;
}

.booking-button {
  text-transform: uppercase;
  font-weight: bold;
}

#content-wrapper ul li {
  padding: 0 0 4px 20px;
  margin-left: -1.2rem;
  line-height: 1rem;
  list-style-type: none;
  background: url(../images/bullet.png) 0 .25rem/8px 8px no-repeat;
}

#content-wrapper a,
#content-wrapper a:visited,
#content-wrapper a:hover,
#content-wrapper a:active,
#content-wrapper a:focus {
  color: #9C232B;
}

#content-wrapper a:hover,
#content-wrapper a:active,
#content-wrapper a:focus {
  text-decoration: none;
}

#content-wrapper a.booking-button.btn-primary:hover,
#content-wrapper a.booking-button.btn-primary:active,
#content-wrapper a.booking-button.btn-primary:focus {
  color: #fff;
}

.contenttable th,
.contenttable td {
  padding-right: 12px;
}

.cols {
  margin-bottom: 20px;
}

/* Google Map */
#c46 iframe {
  max-width: 100%;
}

/* Footer styles ------------------------------------------------------------------------------------*/
footer {
  padding: 20px 20px 5px;
  border-top: 1px dotted #9C232B;
}

#footer-logo {
  max-width: 100%;
  height: auto;
  /*margin-right: 20px;*/
  margin-bottom: 15px;
}

#footer__copyright {
  margin-top: 15px;
  font-size: .8em;
}

footer img {
  vertical-align: bottom;
}

#footer__content img {
  max-width: 100%;
}

footer .column-2 {
  text-align: center;
}

footer .footer-col-3 p {
  margin-bottom: .3em;
}

/* ------------------------ */
/* 7__Bootstrap Overrides   */
/* ------------------------ */
.btn {
  border-radius: 0;
}

.btn-primary.focus, .btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-primary,
a.btn-primary:visited {
  color: #fff;
  background-color: #f89d0f;
  border-color: #f89d0f;
}

.btn-primary:hover,
a.btn-primary:hover {
  color: #fff;
  background-color: #9C232B;
  border-color: #9C232B;
}

.btn-primary:focus,
a.btn-primary.focus {
  color: #fff;
  background-color: #9C232B;
  border-color: #9C232B;
  outline: none;
}

.btn-primary:active,
a.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #9C232B;
  border-color: #9C232B;
}

.btn-primary:active:hover,
a.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
a.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
a.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #9C232B;
  border-color: #9C232B;
  outline: none;
}

.btn-primary.focus, .btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-primary,
a.btn-primary:visited {
  color: #fff;
  background-color: #f89d0f;
  border-color: #f89d0f;
}

.btn-primary:hover,
a.btn-primary:hover {
  color: #fff;
  background-color: #9C232B;
  border-color: #9C232B;
}

.btn-primary:focus,
a.btn-primary.focus {
  color: #fff;
  background-color: #9C232B;
  border-color: #9C232B;
  outline: none;
}

.btn-primary:active,
a.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #9C232B;
  border-color: #9C232B;
}

.btn-primary:active:hover,
a.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
a.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
a.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #9C232B;
  border-color: #9C232B;
  outline: none;
}

.btn-secondary.focus, .btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-secondary,
a.btn-secondary:visited {
  color: #fff;
  background-color: #9C232B;
  border-color: #9C232B;
}

.btn-secondary:hover,
a.btn-secondary:hover {
  color: #fff;
  background-color: #b7730a;
  border-color: #b7730a;
}

.btn-secondary:focus,
a.btn-secondary.focus {
  color: #fff;
  background-color: #b7730a;
  border-color: #b7730a;
  outline: none;
}

.btn-secondary:active,
a.btn-secondary.active,
.open > .dropdown-toggle.btn-secondary {
  color: #fff;
  background-color: #b7730a;
  border-color: #b7730a;
}

.btn-secondary:active:hover,
a.btn-secondary.active:hover,
.open > .dropdown-toggle.btn-secondary:hover,
.btn-secondary:active:focus,
a.btn-secondary.active:focus,
.open > .dropdown-toggle.btn-secondary:focus,
.btn-secondary:active.focus,
a.btn-secondary.active.focus,
.open > .dropdown-toggle.btn-secondary.focus,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #b7730a;
  border-color: #b7730a;
  outline: none;
}

/* --------------------------------------------------------------------------------------------------
 * Media Queries ------------------------------------------------------------------------------------
 * -------------------------------------------------------------------------------------------------*/
@media (max-width: 1200px) {
  .constrain {
    width: auto;
  }
}

@media (max-width: 1140px) {
  .header-col-2-inner-table {
    display: block;
    width: 100%;
  }

  .header-col2__desktop-cta {
    display: block;
    margin-bottom: 12px;
    width: 100%;
  }

  .header-col2__icons-row {
    display: block;
    width: 100%;
  }
}

@media (max-width: 1000px) {
  #nav-wrapper {
    height: 135px;
  }

  #content {
    padding: 10px 20px 20px;
  }

  #content-wrapper {
    display: block;
  }
}

@media (max-width: 720px) {
  .header-col2__desktop-cta {
    display: none;
  }

  #mobile-cta {
    display: block;
  }

  #top-header .logo-container,
  #top-header .header-col2 {
    display: block;
    width: 100%;
    text-align: center;
  }

  #top-header .logo-container {
    margin-bottom: 15px;
  }

  .header-col2__icons-row > img:first-child {
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  #footer__content > .css-table {
    display: block;
  }

  #footer__content .footer-col-3 {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media only screen and (min-width: 481px) {
  .flex-row.row {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-row.row > [class*='col-'] {
    display: flex;
    flex-direction: column;
  }

  .flex-row.row:after,
  .flex-row.row:before {
    display: flex;
  }
}

/* Extra Small Devices, Phones (Bootstrap col-xs-*) */
@media only screen and (max-width: 480px) {
  a.header-col2__icon {
    font-size:2.4em;
  }
  .desktop-only-inline,
  .desktop-only-block {
    display: none;
  }

  .mobile-only-block {
    display: block;
  }

  .mobile-only-inline {
    display: inline-block;
  }
}

@media (max-width: 400px) {
  .header-col2__icons-row {
    height: 36px;
  }

  .header-col2__icons-row img {
    margin-left: 4px;
  }
}

@media (max-width: 380px) {
  #nav-wrapper {
    height: 110px;
  }

  .contenttable th,
  .contenttable td {
    padding-right: 10px;
    font-size: .92em;
  }
}