/* ************************
    � X I X  S T U D I O S �
    :: EAST OF WESTERN ::
    
***************************
*/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 100;
  font-family: "proxima-nova", helvetica, arial, sans-serif;
}

h1 {
  font-size: 28px;
  font-weight: 100;
  text-transform: uppercase;
}

h2 {
  font-size: 24px;
  font-weight: 100;
  text-transform: uppercase;
}

h3 {
  font-size: 19px;
  font-weight: 100;
  text-transform: uppercase;
}

h4 {
  font-size: 17px;
  font-weight: 100;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 20px;
}

.bold {
  font-weight: 400;
}

a.btn {
  display: inline-block;
  margin: 20px auto;
  background-color: #66cadc;
  padding: 9px 17px;
  color: #fff;
}

/* === SCROLL BARS === */

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  /* The Inner Behind Trck */
  width: 7px;
  background: rgba(43, 41, 42, 1);
}

::-webkit-scrollbar-thumb {
  /* The Main Drag Bar */
  background-color: rgba(68, 68, 68, 1);
  margin-left: -10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(104, 104, 104, 1);
}

::-webkit-scrollbar-button {
  border: 0px solid red;
  display: none;
  height: 0px;
}

::-webkit-scrollbar-button:start {
  display: none;
}
::-webkit-scrollbar-button:end {
  display: none;
}
::-webkit-scrollbar-button:vertical:end:increment {
  height: 0px;
}

/* === LAYOUT === */

#wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  overflow: auto;
}

@media all and (max-width: 1023px) {
  #wrapper {
    height: auto;
    overflow: unset;
    min-height: 100vh;
  }
}

#header {
  position: fixed;
  top: -40px;
  left: 0px;
  height: 40px;
  width: 100%;
  background-color: #2b292a;
  color: #cbcbcb;
  font-size: 11px;
  z-index: 20;
  display: -moz-inline-stack; /*moz inline block fix*/
  display: inline-block;
  zoom: 1; /*IE inline block fix*/
  *display: inline; /*IE inline block fix*/
  transition: all 0.15s ease-in-out 0.15s;
  -webkit-transition: all 0.15s ease-in-out 0.15s;
  -moz-transition: all 0.15s ease-in-out 0.15s;
}

#main {
  position: relative;
  width: 100%;
}

#footer {
  position: fixed;
  width: 100%;
  bottom: 0px;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
}

@media all and (max-width: 1815px) {
  #wrapper.scroll #footer {
    opacity: 0;
  }
}
@media all and (max-height: 817px) {
  #wrapper.noScroll #footer {
    opacity: 0;
  }
}

/* === HEADER === */

body.show #header {
  top: 0px;
}

#header .logo,
#header ul#nav,
#header ul#nav li,
#header ul#social,
#header ul#social li {
  display: -moz-inline-stack; /*moz inline block fix*/
  display: inline-block;
  zoom: 1; /*IE inline block fix*/
  *display: inline; /*IE inline block fix*/
  vertical-align: middle;
  position: relative;
  text-transform: uppercase;
}

#header ul#nav > li {
  margin-left: -4px;
}

#header ul#nav li a {
  line-height: 40px;
  padding: 0px 15px;
  height: 40px;
  display: block;
}

#header ul#nav li.btn a {
  background-color: #66cadc;
  color: #fff;
}

#header ul#nav li a:hover,
#header ul#nav li a.active {
  background-color: #444;
  color: #fff;
}

#header ul#nav li.btn a:hover,
#header ul#nav li.btn a.active {
  background-color: #66cadc !important;
  color: #fff;
}

#header ul#nav li ul.dropdown {
  position: absolute;
  list-style-type: none;
  background-color: #444;
  display: none;
  padding: 15px 0px;
  z-index: 100;
}

#header ul#nav li ul.dropdown li a {
  display: block;
  width: 230px;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 20px;
  height: auto;
}

#header ul#nav li ul.dropdown li a:hover {
  background-color: #2b292a;
}

#header ul#nav li.hasDropdown:hover ul.dropdown {
  display: block;
}

#header ul#nav li.hasDropdown:hover > a {
  background-color: #444;
  color: #fff;
}

#header .logo {
  margin-left: 13px;
  margin-right: 28px;
}

#header ul#social {
  position: absolute;
  top: 13px;
  right: 19px;
}

#header ul#social li a {
  display: block;
  height: 12px;
  width: 12px;
  margin-left: 9px;
}

#header #mobileMenu {
  display: none;
}

#logoMobile {
  display: none;
}
/*** new mobile nav styles 11/2021***/
header.mobile_header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 110px;
  width: 100vw;
  z-index: 10;
  justify-content: space-between;
  background: transparent;
}
header.mobile_header .mobile_logo {
  display: block;
  width: 127px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s 0s;
}
header.mobile_header .menuBtn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(5% - 10px);
  cursor: pointer;
  z-index: 3;
  padding: 10px;
}

header.mobile_header nav.mobile_nav {
  opacity: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  pointer-events: none;
}

header.mobile_header nav.mobile_nav ul {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-evenly;
  margin-left: 6%;
  list-style-type: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  margin-top: 13vh;
}
header.mobile_header nav.mobile_nav ul li {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 25px;
}

header.mobile_header nav.mobile_nav ul li a.booknow {
  position: fixed;
  bottom: 0;
  top: auto;
  left: 0;
  width: 100vw;

  background-color: #329ea8;
  text-align: center;
  padding: 30px 0px;
}

header.mobile_header .menuBtn div {
  width: 40px;
  height: 24px;
  position: relative;
}

header.mobile_header .menuBtn div .line {
  height: 4px;
  width: 100%;
  display: block;
  position: absolute;
  right: 0;
  background-color: #fff;
  opacity: 1;
  transform: rotate(0deg);
  transition-property: background-color, opacity, transform, top;
  transition-duration: 0.2s, 0.1s, 0.3s, 0.3s;
  transition-delay: 0s, 0s, 0s, 0s;
}

.dark_header header.mobile_header .menuBtn div .line {
  background-color: #504c50;
}

.menuOn header.mobile_header .menuBtn div .line {
  background-color: #fff;
}

header.mobile_header .menuBtn div .line:nth-child(1) {
  top: 0px;
}
header.mobile_header .menuBtn div .line:nth-child(2) {
  top: 12px;
}
header.mobile_header .menuBtn div .line:nth-child(3) {
  top: 24px;
}

header.mobile_header nav.mobile_nav .logo_bkgd {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5vh;
  margin: 0 auto 20vh auto;
  width: 200px;
  height: auto;
  opacity: 0;
  transition: opacity 0.2s ease;
}

@media all and (max-width: 1023px) {
  #selectHolder {
    display: none !important;
  }
  #showHide .logoMark {
    position: absolute !important;
    top: 25vh !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 300px !important;
    height: auto;
  }
  header.mobile_header {
    display: flex;
  }

  header.mobile_header .menuBtn {
    display: block;
  }

  body.menuOn header.mobile_header .menuBtn div .line:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }

  body.menuOn header.mobile_header .menuBtn div .line:nth-child(2) {
    opacity: 0;
    transition: opacity 0.1s 0s;
  }

  body.menuOn header.mobile_header .menuBtn div .line:nth-child(3) {
    top: 8px;
    transform: rotate(135deg);
  }
  body.menuOn #showHide {
    display: none !important;
  }

  body.menuOn header.mobile_header .mobile_logo {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.3s 0.3s;
  }

  body.menuOn header.mobile_header nav.mobile_nav {
    opacity: 1;
    pointer-events: all;
  }
  body.menuOn header.mobile_header nav.mobile_nav ul {
    opacity: 1;
  }
  body.menuOn #header ul#nav {
    display: none;
  }
  body.menuOn #header ul#social {
    display: none;
  }
  body.menuOn header.mobile_header nav.mobile_nav .logo_bkgd {
    opacity: 1;
  }

  @media all and (max-width: 767px) {
    header.mobile_header {
      height: 80px;
    }

    header.mobile_header .mobile_logo {
      width: 100px;
    }
    header.mobile_header nav.mobile_nav ul {
      margin-top: 100px;
    }

    header.mobile_header nav.mobile_nav ul li {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    header.mobile_header nav.mobile_nav ul li a.booknow {
      padding: 20px 0px;
    }

    header.mobile_header nav.mobile_nav .logo_bkgd {
      width: 140px;
    }
  }

  @media all and (max-width: 320px) {
    header.mobile_header nav.mobile_nav ul li {
      font-size: 1.5rem;
    }

    header.mobile_header nav.mobile_nav .logo_bkgd {
      width: 100px;
    }

    #showHide .logoMark {
      width: 200px !important;
      height: auto;
    }
  }

  @media all and (max-width: 896px) and (orientation: landscape) {
    #showHide #header {
      display: none !important;
    }
    header.mobile_header nav.mobile_nav .logo_bkgd {
      bottom: 0vh;
    }
    header.mobile_header nav.mobile_nav ul {
      margin-top: 20vh;
    }
    header.mobile_header nav.mobile_nav ul li {
      font-size: 1rem;
      margin-bottom: 10px;
    }
  }
}

/* === HEADER SHOW/HIDE TRIGGER === */

#showHide {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 98%;
  height: 200px;
  z-index: 10;
}

#showHide:hover #header {
  top: 0px;
}

#showHide .logoMark {
  position: relative;
  top: 45px;
  left: 30px;
  width: 127px;
  height: auto;
  display: block;
  opacity: 1;
  transition: all 0.15s ease-in-out 0.05s;
  -webkit-transition: all 0.15s ease-in-out 0.05s;
  -moz-transition: all 0.15s ease-in-out 0.05s;
}

body.show .logoMark {
  opacity: 0 !important;
}

#showHide:hover .logoMark {
  opacity: 0;
}

.logoHolder {
  display: none;
}

#sb_instagram {
  padding-bottom: 50px !important;
}

/* === FULL BLEED SLIDESHOW === */

#slideShow {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
}

#slideShow #rightArrow {
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 10;
  margin-top: -33px;
  cursor: pointer;
}

#slideShow #leftArrow {
  position: absolute;
  left: 20px;
  top: 50%;
  z-index: 10;
  margin-top: -33px;
  cursor: pointer;
}

#slideShow .slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

#slideShow .slider .photo {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

/* === MAIN CONTENT CONTAINER === */

#main {
  width: 890px;
  margin-left: -445px;
  position: absolute;
  top: 100px;
  left: 50%;
  background-color: #fff;
  z-index: 1;
  overflow-x: hidden;
}

#main .inner {
  width: 894px;
}

/* === SCROLLING CONTENT PAGES (BOOKING, EVENTS, BLOG) === */

#main.scroll {
  background-color: #2b2b2b;
  overflow: hidden;
}

#main.scroll form {
  margin: 0px auto;
}

#main.scroll form input,
#main.scroll form select {
  border: 1px solid #ccc;
  padding: 5px;
  font-size: 14px;
  font-family: "proxima-nova", sans-serif;
}

#main.scroll form input[type="image"] {
  border: 0px;
}

#main.scroll form table {
  margin: 0px auto;
}

#main.scroll.whiteBG {
  background-color: #fff;
  text-align: center;
  color: #2b292a;
}

#main.scroll .logo {
  display: block;
  margin: 0px auto;
  padding: 40px 0px;
}

#main .column {
  display: -moz-inline-stack; /*moz inline block fix*/
  display: inline-block;
  zoom: 1; /*IE inline block fix*/
  *display: inline; /*IE inline block fix*/
  color: #cbcbcb;
  text-align: justify;
  vertical-align: top;
}

#main .column h1 {
  text-align: center;
  color: #cbcbcb;
}

#main .columnLeft {
  width: 262px;
  padding: 53px 40px;
  background-color: #2d2b2b;
}

.downloadPDF,
.downloadPDF a {
  display: -moz-inline-stack; /*moz inline block fix*/
  display: inline-block;
  zoom: 1; /*IE inline block fix*/
  *display: inline; /*IE inline block fix*/
  vertical-align: middle;
  margin-right: 2px;
}

.downloadPDF {
  margin: 25px 0px;
}

#main .columnRight {
  width: 548px;
  margin-left: -4px;
  padding: 25px 0px 0px 0px;
  background-color: #fff;
}

#main .columnRight img {
  width: 100%;
}

@media all and (max-height: 791px) {
  #main .columnRight.about {
    margin-top: 20px;
  }
  #main .columnRight.about img {
    width: 90%;
    display: block;
    margin: 0 5% 20px 5%;
  }
}

@media all and (max-width: 767px) {
  #main.scroll {
    padding-top: 50px;
  }
}

/* === NON-SCROLLING CONTENT PAGES (ABOUT, MAP) === */

#main.noScroll {
  overflow: hidden;
  background-color: #2b2b2b;
}

#main.noScroll .inner {
  margin-bottom: -3px;
}

#main.noScroll .inner .columnRight {
  padding: 0px;
  color: #000;
}

#main.noScroll .inner .columnRight p {
  padding: 5px 50px;
}

#main.noScroll .inner .columnRight p:first-of-type {
  padding-top: 70px;
}

#main.noScroll .inner .columnRight p:last-of-type {
  padding-bottom: 70px;
}

/* === EVENT PAGE === */

#share {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0px;
  right: 0px;
  background: url("../eowimages/sharrow.png") no-repeat;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  cursor: pointer;
}

#share:hover {
  background: url("../eowimages/sharrowRO.png") no-repeat;
}

.grid {
  padding-top: 25px;
  margin-bottom: -4px;
  position: relative;
}

.grid li {
  width: 294px;
  margin-right: 4px;
  margin-bottom: 4px;
  list-style-type: none;
  /*    opacity: 0;   */
}

.grid li a,
.grid li img {
  width: 294px;
  height: auto;
  outline: none;
  border: none;
  display: block;
  max-width: 100%;
}

.grid li.shown,
.no-js .grid li,
.no-cssanimations .grid li {
  opacity: 1 !important;
}

/* Effect 1: opacity */
.grid.effect-1 li.animate {
  -webkit-animation: fadeIn 0.65s ease forwards;
  -moz-animation: fadeIn 0.65s ease forwards;
  animation: fadeIn 0.65s ease forwards;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* === "FUN STUFF" PAGE === */

#main.scroll .entry {
  width: 890px;
  padding-bottom: 35px;
  margin-bottom: 40px;
  border-bottom: 1px solid #c2c2c2;
  color: #2b292a;
}

#main.scroll .entry:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

#main.scroll .entry img {
  width: 100%;
  position: relative !important;
}

#main.scroll .entry h2 {
  padding: 30px 50px 0px 50px;
}

#main.scroll .entry p {
  padding: 15px 180px 0px 180px;
  color: #000;
  font-weight: 300;
}

/* === FOOTER === */

#footer span.info {
  font-size: 10px;
  color: #cbcbcb;
  display: block;
  position: absolute;
  bottom: 25px;
  right: 35px;
}

@media all and (max-width: 1023px) {
  #footer span.info {
    display: none;
  }
}

.bookform {
  width: 90%;
  margin: 3% auto;
}

.bookform #response {
  display: none;
}

.bookform #response a {
  color: #66cadc;
}

.bookform p {
  margin-bottom: 25px;
}

.bookform .cell {
  margin-bottom: 10px;
}

.bookform .cell label {
  display: inline-block;
  vertical-align: middle;
  width: 150px;
  text-align: right;
  margin-right: 10px;
}

.bookform input,
.bookform textarea,
.bookform select {
  display: inline-block;
  vertical-align: middle;
  width: 300px;
  border-radius: 0px;
  -webkit-appearance: none;

  font-family: "proxima-nova", helvetica, arial, sans-serif;
  font-size: 12px;
  padding: 5px 10px;
}

.bookform select {
  width: 320px;
}

.bookform input[type="submit"] {
  width: auto;
  background-color: #66cadc;
  padding: 9px 17px;
  color: #fff;
  cursor: pointer;
  margin-right: 10px;
}

@media all AND (max-width: 960px) {
  .bookform .cell label {
    display: block;
    text-align: left;
  }

  .bookform input,
  .bookform textarea,
  .bookform select {
    background-color: #fff;
    width: 80%;
  }

  .bookform select {
    width: calc(80% + 20px);
  }
}

/* ================================================== */
/* ========= M O B I L E  O V E R R I D E S =========
/* ================================================== */

/*iPhone 4S and below*/

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  p {
    font-weight: 400;
  }

  #slideShow #rightArrow {
    display: none;
  }
  #slideShow #leftArrow {
    display: none;
  }
  #header {
    top: 0px;
    background-color: transparent;
  }
  #header ul#nav {
    display: none;
  }
  #header img.logo {
    /*position: relative; top: 6px; left: 13px; margin-left: 0px; margin-right: 0px;*/
    display: none;
  }
  #header #mobileMenu {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: auto;
  }
  #selectHolder {
    position: absolute;
    top: -150px;
    left: 0px;
  }
  #header ul#social {
    display: none;
  }
  .logoHolder {
    display: none;
    position: absolute;
    top: 90px;
    left: 0px;
    width: 100%;
    z-index: 20;
  }
  #logoMobile {
    display: block;
    position: relative;
    top: 0px;
    left: 0px;
    margin: auto;
    width: 230px;
  }
  #footer {
    display: none;
  }

  ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  ::-webkit-scrollbar-track {
    width: 0px;
  }

  #main {
    width: 100%;
    margin-left: 0px;
    top: 0px;
    left: 0px;
  }
  #main .inner {
    width: 100%;
  }
  #main .column {
    display: block;
    text-align: center;
  }
  #main .columnLeft {
    width: 90%;
    padding: 60px 5% 60px 5%;
  }
  #main .columnRight {
    margin-left: 0px;
    width: 90%;
    padding: 60px 5% 10px 5%;
  }
  #main.noScroll .inner .columnRight {
    padding: 60px 5% 10px 5%;
  }
  #main.noScroll .columnRight.about {
    background-color: #2d2b2b;
    color: #fff;
    text-align: justify;
  }
  #main.noScroll .inner .columnRight.about p {
    padding: 0px 5% 15px 5%;
    font-weight: 400;
  }
  #main.noScroll .inner .columnLeft {
    display: none;
  }
  #main.noScroll {
    top: 0px !important;
  }

  #main.scroll .entry {
    width: 100%;
  }
  .entry iframe {
    width: 320px !important;
    height: 180px !important;
  }
  #main.scroll .entry h2 {
    font-size: 18px;
    font-weight: 400;
    padding: 30px 20px 0px 20px;
  }
}

@media all and (max-width: 767px) {
  #main.scroll .entry p {
    padding: 15px 25px;
  }
}
