/* anton styles */

.CodeMirror-wrap .CodeMirror-scroll {
  height: 600px;
}

/* general styles */

body {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-weight: 400;
  font-size: 38px;
  line-height: 48px;
  color: #231d45;
  font-family: 'Montserrat', sans-serif;
}

h2 {
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: #231d45;
  font-family: 'Montserrat', sans-serif;
}

h3 {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  color: #231d45;
  font-family: 'Montserrat', sans-serif;
}

h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: #231d45;
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #231d45;
}

h6 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #231d45;
  font-family: 'Montserrat', sans-serif;
}

h5 a {
  background: #231d45;
  border: 2px solid transparent;
  display: inline-block;
  padding: 6px 20px;
  color: white;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 15px 0px;
}

h5 a:hover {
  background: #000;
  color: white;
}

a {
  color: #231d45;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

a:hover {
  color: #231d45;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: 'Montserrat', sans-serif;
}

/* header styles */

.body-class-home.body-public .header-logo, .body-contentpage.body-public .header-logo {
  display: none;
}

/* navbar styles */

.body-public .navbar {
  position: fixed;
  top: 0px;
  right: 0px;
  margin-bottom: 0px;
  z-index: 1000;
}

.body-public #hamburger-icon {
  width: 140px;
  height: 70px;
  background-image: none;
  background-color: rgba(41,42,99,0.8);
  border: none;
  box-shadow: none;
  color: #FCFFFF;
  position: relative;
  z-index: 10;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

#hamburger-icon .menu-text {
  font-size: 16px;
  position: absolute;
  right: 10px;
  top: 26px;
}

@media (min-width: 980px) {
  .body-contentpage.body-public #hamburger-icon, .body-class-home.body-public #hamburger-icon {
    opacity: 0;
  }
  .body-public #hamburger-icon.disp {
    opacity: 1;
  }
}

.menu-fade.body-public #hamburger-icon {
  opacity: 1;
}

.body-public #hamburger-icon.disp {
  background: transparent;
  z-index: 10;
}

.body-public #hamburger-icon:hover {
  background: #231d45;
}

.body-public #hamburger-icon.disp:hover {
  color: #fc0;
}

.body-public .line {
  position: absolute;
  height: 2px;
  width: 33px;
  display: inline-block;
  background: white;
  transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
}

.body-public .line-1 {
  top: 25px;
  left: 19px;
}

.body-public .line-2 {
  top: 35px;
  left: 19px;
  opacity: 1;
}

.body-public .line-3 {
  top: 45px;
  left: 19px;
}

.body-public .disp .line-1 {
  top: 35px;
  transform: rotateZ(45deg);
}

.body-public #hamburger-icon.disp:hover .line {
  background-color: #fc0;
}

.body-public .disp .line-2 {
  opacity: 0;
}

.body-public .disp .line-3 {
  top: 35px;
  transform: rotateZ(-45deg);
}

.body-public #myNavbar {
  position: absolute;
  right: 0px;
  width: 0px;
  top: 0px;
  padding-top: 75px;
  transition: all 800ms ease-in-out;
  -moz-transition: all 800ms ease-in-out;
  -webkit-transition: all 800ms ease-in-out;
}

.body-public #myNavbar.disp {
  width: 300px;
  background: rgba(41,42,99,0.8);
}

.body-public .nav-wrapper {
  padding: 20px;
  text-align: right;
}

.body-public .disp .nav-wrapper {
  width: auto;
}

.body-public .navbar .nav {
  margin: 0px;
  float: none;
  white-space: nowrap;
}

.body-public .navbar .nav > li {
  float: none;
  text-align: right;
}

.body-public .navbar-inverse .nav > li > a {
  text-transform: uppercase;
  color: white;
  text-shadow: none;
  padding: 10px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.body-public .navbar-inverse .nav > li > a:hover, .body-public .navbar-inverse .nav > li.current > a {
  color: #fc0;
}

.body-public #myNavbar .dropdown-menu {
  background: #1c1d45;
  position: relative;
  float: none;
  border: none;
  border-radius: 0px;
  box-shadow: none;
}

.dropdown-menu > li > a {
  color: white;
  font-size: 14px;
}

.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  background: transparent;
  color: #fc0;
  box-shadow: none;
}

.body-public .navbar .nav > li > .dropdown-menu::before, .body-public .navbar .nav > li > .dropdown-menu::after {
  display: none;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  background: transparent;
  color: #fc0;
}

.dropdown-menu > li.current > a {
  color: #fc0;
}

#myNavbar li.nav-menu-login\.php {
  display: none;
}

/* footer styles */

.footer-wrapper {
  background: #E3E8EE;
  text-align: center;
}

.page-space {
  padding: 0px 200px;
}

.footer-logo {
  padding-top: 70px;
}

.footer-address {
  padding-top: 30px;
  font-size: 18px;
}

.footer-contact {
  padding-top: 20px;
  font-size: 18px;
}

.footer-vert-line {
  display: inline-block;
  content: '';
  background: #333;
  position: relative;
  top: 0px;
  margin: 0px 15px;
  height: 19px;
  width: 2px;
}

.footer-contact a {
  color: #231d45;
}

.footer-contact a:hover {
  color: #7e7fa1;
}

.footer-social {
  padding-top: 40px;
}

.footer-social a {
  display: inline-block;
  width: 24px;
  line-height: 24px;
  margin: 0px 10px;
  color: #231d45;
  font-size: 26px;
}

.footer-social a:hover {
  color: #7e7fa1;
}

.footer-line {
  margin-top: 60px;
  content: '';
  height: 1px;
  width: 100%;
  display: inline-block;
  background: #C1C6CC;
}

.footer-copy {
  padding-top: 30px;
}

.footer-ig-logo {
  padding: 20px 0px;
}

.footer-ig-logo img {
  width: 120px;
}

/* home page */

#globalwrap {
  padding-top: 0px;
}

.home-slideshow {
  position: relative;
}

.home-slideshow .galleryInner, .home-slideshow .galleryInner img {
  width: 100% !important;
  height: 100vh !important;
}

.home-logo {
  position: absolute;
  z-index: 20;
  top: 30%;
  margin: 0px auto;
  left: 0px;
  right: 0px;
  text-align: center;
  width: 724px;
}

.home-logo h1 {
  color: white;
  text-shadow: 1px 1px #000;
}

.home-logo p {
  color: white;
  text-shadow: 1px 1px #000;
}

.home-title {
  display: none;
}

.home-intro {
  display: none;
}

.home-slider-title {
  position: absolute;
  z-index: 18;
  top: 40%;
  margin: 0px auto;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  width: 724px;
  text-align: center;
}

.home-slider-title h2 {
  font-size: 50px;
  line-height: 60px;
  color: white;
  text-shadow: 1px 1px #000;
}

.home-scroll {
  position: absolute;
  width: 50px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  z-index: 15;
  bottom: 115px;
}

#home-scroll-controller {
  display: inline-block;
  background: rgba(0,0,0,0.6);
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: white;
  font-size: 38px;
  border-radius: 50%;
}

#home-scroll-controller:hover {
  background: black;
  color: #231d45;
  cursor: pointer;
}

.home-status {
  position: absolute;
  bottom: 50px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  z-index: 10;
  width: 1170px;
  text-align: center;
}

.home-status h3 {
  display: none;
}

.home-status p b {
  display: none;
}

.home-status .updatedate {
  font-size: 14px !important;
  text-shadow: 1px 1px #000;
  color: white;
}

.home-content-area {
  text-align: center;
  padding-top: 70px;
}

.home-title h1 {
  margin: 0px;
}

.home-intro {
  padding-top: 30px;
  padding-bottom: 70px;
}

.body-public .editor-only {
  display: none;
}

.home-content-boxes .span4 {
  position: relative;
}

.home-content-boxes .home-overlay {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  top: 0px;
  left: 0px;
  z-index: 1;
  transition: background 600ms ease-in-out;
  -moz-transition: background 600ms ease-in-out;
  -webkit-transition: background 600ms ease-in-out;
}

.home-box-pic {
  position: relative;
}

.hide-box .home-overlay {
  background: rgba(0,0,0,0.5);
  z-index: 50;
}

.home-box-text {
  position: absolute;
  top: 40%;
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  text-shadow: 1px 1px #000;
  letter-spacing: 2px;
  width: 100%;
}

.home-box-text::after {
  content: '\f0a9';
  font-family: 'FontAwesome';
  position: absolute;
  top: 80%;
  left: 0px;
  right: 0px;
}

.home-content-boxes .row-fluid .span4 {
  margin-left: 0px;
  width: 33.33%;
}

.home-content-boxes {
  padding-bottom: 120px;
}

.home-box-pic a {
  position: relative;
  z-index: 20;
  display: inline-block;
}

/* testimonials */

.testimonial-section {
  background: #F2F6F9;
  padding: 100px 0px;
}

.testimonial-section h3 {
  color: #231d45;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0px;
  padding-bottom: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 4px;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-section .galleryInner {
    margin: 0 auto;
    width: 100% !important;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: auto !important;
  background: none;
}

.testimonial-section .galleryInner .nivo-caption {
    width: 100%;
    -moz-opacity: 1;
    margin: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: alpha(opacity=100);
    opacity: 1;
    text-align: center;
    position: relative;
    z-index: 0;
    background-color: rgba(0,0,0,0);
    padding: 0;
    height: auto;
    overflow: visible;
    min-height: 80px;
  color: black;
  font-family: 'Sail', cursive;
}

.testimonial-section .galleryInner .nivo-caption p {
  font-size: 24px;
  line-height: 34px;
  font-style: italic;
}

.testimonial-section .galleryInner .nivo-caption h4 {
  text-transform: uppercase;
  font-weight: 400;
  background: transparent;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 26px;
  color: black;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-section .galleryInner img {
    display: none !important;
}

.testimonial-section .nivo-directionNav {
  display: block;
  width: 80px;
  margin: 20px auto 0px;
}

.testimonial-section .nivo-directionNav a {
  position: relative;
  top: auto;
  bottom: 0px;
  text-indent: 0px;
  background: none;
  display: inline-block;
  color: #231d45;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 34px;
}

.testimonial-section .nivo-directionNav a.nivo-prevNav {
  float: left;
  width: 30px;
  position: relative;
  text-align: right;
}

.testimonial-section .nivo-directionNav a.nivo-prevNav::before {
  position: absolute;
  left: -5px;
  content: '\f104';
  font-family: 'FontAwesome';
  font-size: 28px;
  top: 2px;
  color: black;
}

.testimonial-section .nivo-directionNav a.nivo-nextNav {
  float: right;
  right: 0px;
  width: 30px;
  position: relative;
}

.testimonial-section .nivo-directionNav a.nivo-nextNav::before {
  position: absolute;
  right: -20px;
  content: '\f105';
  font-family: 'FontAwesome';
  font-size: 28px;
  top: 2px;
  color: black;
}

.testimonial-section .nivo-controlNav {
  display: none !important;
}

/* home carousel */

.news-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 268px;
}

.news-carousel .news-wrapper {
    list-style: none;
    margin: 0px;
    padding: 0;
    width: 10000px;
  position: absolute;
}

.news-carousel .news-item {
  float: left;
  width: 286px;
}

/* inner page */

.inner-slideshow {
  position: relative;
}

.inner-slideshow .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.inner-logo {
  position: absolute;
  top: 15%;
  left: 0px;
  right: 0px;
  width: 128px;
  margin: 0px auto;
  z-index: 20;
}

.inner-slider-title {
  position: absolute;
  z-index: 18;
  top: 35%;
  margin: 0px auto;
  left: 0px;
  right: 0px;
  width: 724px;
  text-align: center;
}

.inner-slider-title h2 {
  font-size: 50px;
  line-height: 60px;
  color: white;
  text-shadow: 1px 1px #000;
}

.inner-content-area {
  text-align: center;
}

.inner-title {
  padding-top: 50px;
  padding-bottom: 50px;
}

.inner-title h1 {
  font-size: 42px;
  line-height: 52px;
  margin: 0px;
}

.inner-nav h2 {
  display: none;
}

.inner-nav ul {
  margin: 0px;
  padding-bottom: 70px;
}

.inner-nav ul li {
  font-size: 0px;
  display: inline-block;
  position: relative;
  margin: 0px 10px;
}

.inner-nav ul li::after {
  position: absolute;
  right: -13px;
  top: 10px;
  display: inline-block;
  content: '';
  width: 5px;
  height: 1px;
  background: #27276d;
}

.inner-nav ul li:last-child::after {
  display: none;
}

.inner-nav ul li a {
  font-size: 16px;
  color: #27276d;
  text-transform: uppercase;
}

.inner-nav ul li a:hover, .inner-nav ul li.current a {
  text-decoration: underline;
}

.inner-content-area h3 {
  color: #231d45;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 2px;
  margin: 0px 0px 20px;
}

.inner-content-col {
  line-height: 28px;
  font-size: 16px;
}

.inner-content-col p {
  margin-bottom: 20px;
}

.inner-content-col-right {
  line-height: 28px;
}

.inner-content-col-right p {
  margin-bottom: 20px;
}

.inner-content-col-right .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.inner-content-col-right .nivo-directionNav {
  display: block;
  width: 80px;
  margin: 20px auto 0px;
}

.inner-content-col-right .nivo-directionNav a {
  position: relative;
  top: auto;
  bottom: 0px;
  text-indent: 0px;
  background: none;
  display: inline-block;
  color: #27276d;
  font-family: 'Monstserrat', sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.inner-content-col-right .nivo-directionNav a.nivo-prevNav {
  float: left;
  width: 30px;
  position: relative;
  text-align: right;
}

.inner-content-col-right .nivo-directionNav a.nivo-prevNav::before {
  position: absolute;
  left: -5px;
  content: '\f104';
  font-family: 'FontAwesome';
  font-size: 28px;
  top: 0px;
  color: #27276d;
}

.inner-content-col-right .nivo-directionNav a.nivo-nextNav {
  float: right;
  right: 0px;
  width: 30px;
  position: relative;
}

.inner-content-col-right .nivo-directionNav a.nivo-nextNav::before {
  position: absolute;
  right: -20px;
  content: '\f105';
  font-family: 'FontAwesome';
  font-size: 28px;
  top: 0px;
  color: #27276d;
}

.inner-content-col-right .nivo-controlNav {
  display: none !important;
}

.inner-content-col-right h4 {
  margin-top: 20px;
  color: #231d45;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.inner-offers-title {
  padding-top: 100px;
  padding-bottom: 60px;
}

.inner-offers-title h5 {
  color: #231d45;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.inner-offers-pic {
  position: relative;
}

.inner-offers-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(39,39,109,0.4);
  top: 0px;
  left: 0px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.inner-offers-overlay:hover {
  background: rgba(39,39,109,0.8);
}

.inner-offers-overlay > .wysiwyg-editable {
  transform: translateY(50%);
  position: absolute;
  left: 0;
  right: 0;
  top: 5%;
  text-align: center;
  color: white;
  padding: 0px 10px;
}

.inner-offers-overlay h4 {
  color: white;
  margin: 0px 0px 60px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.inner-offers-overlay h5 a {
  margin: 0px;
  border: 2px solid white;
  background: transparent;
  color: white;
  padding: 6px 20px;
}

.inner-offers-overlay h5 a:hover {
  background: #000;
}

.inner-content-area {
  padding-bottom: 100px;
}

.body-contentpage .content-wrapper #global > br {
  display: none;
}

/* course page */

.scorecard-box a {
  display: inline-block;
  position: relative;
  padding: 10px 24px;
  font-size: 14px;
  text-decoration: none;
  background: #27276d;
  color: white;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.scorecard-box a:hover {
  background: #000;
  color: white;
  cursor: pointer;
}

.scorecard-box #score-open-link.hide {
  display: none;
}

.scorecard-box #score-close-link {
  display: none;
}

.scorecard-box #score-close-link.disp {
  display: inline-block;
}

.scorecard-box .scorecard-content {
  display: none;
  padding-top: 30px;
}

.scorecard-open > a#score-open-link::after {
    position: absolute;
    content: '\f107';
    font-family: 'FontAwesome';
    right: 5px;
}

.scorecard-open > a#score-close-link::after {
    position: absolute;
    content: '\f106';
    font-family: 'FontAwesome';
    right: 5px;
}

.scorecard-content .table th, .scorecard-content .table td {
  text-align: center;
  border: 2px solid #231d45;
}

.scorecard-content th.White {
  color: black;
}

.scorecard-content .White {
  background: white;
}

.scorecard-content .Yellow {
  background: #FC0;
  color: black;
}

.scorecard-content .Red {
  background: #F00;
  color: white;
}

.scorecard-content .Blue {
  background: #00F;
  color: white;
}

/* hole page */

.hole-slideshow {
  position: relative;
}

.hole-slideshow .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.hole-nav {
  border-bottom: 1px solid #EBEBEB;
}

.hole-nav h2 {
  display: none;
}

.hole-nav ul {
  padding: 10px 0px;
  margin: 0px;
}

.hole-nav ul li {
  display: inline;
  margin: 0px 8px;
}

.hole-nav ul li a {
  display: inline-block;
  width: 30px;
  line-height: 30px;
  text-align: center;
  color: #27276d;
  font-weight: 600;
  position: relative;
}

.hole-nav ul li a:hover, .hole-nav ul li.current a {
  color: #231d45;
  text-decoration: underline;
}

.hole-nav ul li.current a::after {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #EBEBEB;
  border-bottom-color: rgb(204, 204, 204);
  position: absolute;
  top: 41px;
  left: 8px;
}

.hole-title {
  padding-top: 50px;
}

.hole-title h1 {
  font-size: 42px;
  line-height: 52px;
  margin: 0px;
}

.hole-two-col {
  padding-top: 50px;
}

.hole-yards {
  padding-top: 40px;
  color: #27276d;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
}

.hole-tip {
  font-size: 18px;
  line-height: 28px;
  padding-top: 20px;
}

.hole-page-wrapper .scorecard-box {
  padding-top: 30px;
}

.inner-offers {
  text-align: center;
}

.hole-content-area {
  padding-bottom: 100px;
}

.hole-page-wrapper .inner-offers-title {
  padding-top: 50px;
}

/* visitors default styles */

.body-public[class*="php-"], .body-class-opens, [class*="setcoursestatus"], .body-class-visitorbooking, .body-class-members {
  background: url('/images/resources/bramley/members-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.body-public[class*="php-"] .header-wrapper, .body-class-opens .header-wrapper, [class*="setcoursestatus"] .header-wrapper, .body-class-visitorbooking .header-wrapper {
  background: rgba(255,255,255,0.8);
  min-height: 100px;
}

.body-public[class*="php-"] .header-wrapper .header-logo, .body-class-opens .header-wrapper .header-logo, [class*="setcoursestatus"] .header-wrapper .header-logo, .body-class-visitorbooking .header-wrapper .header-logo {
  width: 105px;
  margin: 0px auto;
  padding: 8px 0px;
}

.body-public[class*="php-"] #globalwrap, .body-class-opens #globalwrap, [class*="setcoursestatus"] #globalwrap, .body-class-visitorbooking #globalwrap {
  margin-top: 80px;
  background: rgba(255,255,255,0.8);
  border: 2px solid #231d45;
  padding: 20px;
}

.body-public[class*="php-"] .top-footer, .body-class-members .top-footer, .body-class-opens .top-footer, [class*="setcoursestatus"] .top-footer, .body-class-visitorbooking .top-footer {
  display: none;
}

.body-public[class*="php-"] .footer-wrapper, .body-class-members .footer-wrapper, .body-class-opens .footer-wrapper, [class*="setcoursestatus"] .footer-wrapper, .body-class-visitorbooking .footer-wrapper {
  background-image: none;
  background: rgba(255,255,255,0.8);
}

.body-public[class*="php-"] .footer-copy, .body-class-members .footer-copy, .body-class-opens .footer-copy, [class*="setcoursestatus"] .footer-copy, .body-class-visitorbooking .footer-copy {
  padding-top: 15px;
}

.body-public[class*="php-"] .footer-ig-logo, .body-class-members .footer-ig-logo, .body-class-opens .footer-ig-logo, [class*="setcoursestatus"] .footer-ig-logo, .body-class-visitorbooking .footer-ig-logo {
  padding: 15px 0px;
}

.body-public[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-opens .content-wrapper, [class*="setcoursestatus"] .content-wrapper, .body-class-visitorbooking .content-wrapper {
  width: 1170px;
  margin: 0px auto;
}

/* sticky footer */

@media (min-width: 768px) {
  html {
    position: relative;
    min-height: 100%;
  }
  body[class*="php-"], .body-class-members, .body-class-visitorbooking, .body-class-getawayletter, [class*="body-class-setcoursestatus"], .body-class-opens {
   margin-bottom: 155px; 
  }
  body[class*="php-"] .footer-wrapper, .body-class-members .footer-wrapper, .body-class-visitorbooking .footer-wrapper, .body-class-getawayletter .footer-wrapper, [class*="body-class-setcoursestatus"] .footer-wrapper, .body-class-opens .footer-wrapper {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 105px;
  }
}

/* login page */

#login {
  text-align: center;
}

#login h3 {
  margin: 0px;
  padding-bottom: 20px;
}

#login fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  display: inline-block;
  transform: translateX(-90px);
}

#login input[type*="submit"] {
  margin-top: 20px;
  letter-spacing: 2px;
  font-size: 18px;
}

#login > div {
  padding-bottom: 0px !important;
}

/* buttons */

input[type*="submit"], a.btn, button.btn, a.read-more {
  display: inline-block;
  text-shadow: none;
  background: #231d45;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  border: transparent;
   transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

input[type*="submit"]:hover, a.btn:hover, button.btn:hover, a.read-more:hover {
  background: #000;
  color: white;
}

/* members */

.body-class-members .header-wrapper {
  background: #231d45;
  min-height: 104px;
}

.body-class-members .content-wrapper a:hover {
  text-decoration: underline;
}

.body-class-members .members-section {
  width: 1170px;
  margin: 0px auto;
}

.body-class-members .header-logo {
  float: left;
  margin-top: 8px;
  margin-right: 20px;
  width: 80px;
}

.body-class-members #hamburger-icon {
  display: none;
}

.body-class-members .nav-wrapper {
  padding-top: 26px;
}

.body-class-members .navbar {
  margin: 0px;
}

.body-class-members #globalwrap {
  margin-top: 100px;
  padding: 20px;
  border: 2px solid #231d45;
  background: rgba(255,255,255,0.8);
}

.body-class-members .navbar-inverse .nav > li > a {
  color: white;
}

.body-class-members .navbar-inverse .nav > li > a:hover, .body-class-members .navbar-inverse .nav > li.current > a {
  color: #fc0;
}

.body-class-members #myNavbar .dropdown-menu {
  background: #1c1d45;
}

.php-index.body-class-members #globalwrap {
  border: none;
  background: transparent;
  padding: 0px;
}

#leftcontent > div, #rightcontent > div {
  background: rgba(255,255,255,0.8);
  border: 2px solid #231d45;
}

.php-weatherfg #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-weatherfg .weatherImage img, .php-weatherfg #globalwrap .weatherImage img.image-night {
  background: #231d45;
  border-radius: 50%;
}

.php-analysis .content-wrapper .pull-left {
  float: none;
}

.php-analysis .content-wrapper .pull-right {
  float: none;
}

.content-wrapper .well {
  background: transparent;
  padding: 10px;
  border: none;
  box-shadow: none;
}

.body-class-members .content-wrapper {
  line-height: 28px;
}

.body-class-members .nav-menu-information .dropdown-menu .nav-menu-information {
  display: none;
}

.body-class-members.php-messages #globalwrap {
  margin-top: 80px;
}

.php-halloffame .hallOfFame > div:nth-child(3) {
  padding-left: 20px;
}

.body-class-members .content-wrapper a {
  color: #231d45;
  font-weight: 600;
}

.body-class-members .content-wrapper a:hover {
  color: #231d45;
}

.php-index .content-wrapper h3 {
  color: #231d45;
}

.body-class-members .content-wrapper a.btn, .body-class-members .content-wrapper a.read-more {
  color: white;
}

.body-class-members .content-wrapper a.btn {
  font-weight: 400;
}

/* public tables */

table th {
  background: #231d45;
  color: white;
  font-weight: 400;
  border: 2px solid #231d45;
  padding: 8px;
}

table td {
  border: 2px solid #231d45;
  padding: 8px;
}

/* visitor booking */

.body-class-visitorbooking #global .tabs li a {
  padding: 10px;
  font-size: 18px;
}

@media (min-width: 768px) {
  .body-class-visitorbooking #globalwrap table {
    width: 100%;
  }
}

.body-class-visitorbooking #globalwrap table td > a {
  width: 100%;
  display: block;
  padding: 3px 0px;
  margin: 0px;
}

@media (min-width: 768px) and (max-width: 979px) {
  .body-class-visitorbooking #globalwrap .pricegroup table tr {
    display: table-row;
  }
  .body-class-visitorbooking #globalwrap .pricegroup table td {
    padding: 8px;
    float: none;
    display: table-cell;
  }
}

/* desktop responsive */

.home-content-area .page-space {
  padding: 0px 250px;
}

@media (min-width: 1600px) and (max-width: 1799px) {
  .page-space {
    padding: 0px 150px;
  }
  .home-content-area .page-space {
    padding: 0px 200px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .page-space {
    padding: 0px 100px;
  }
  .news-carousel .news-item {
    width: 216px;
  }
  .news-carousel {
    height: 202px;
  }
  .inner-offers-overlay > .wysiwyg-editable {
    transform: translateY(30%);
  }
  .home-content-area .page-space {
    padding: 0px 150px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .page-space {
    padding: 0px 50px;
  }
  .news-carousel .news-item {
    width: 216px;
  }
  .news-carousel {
    height: 202px;
  }
  .inner-offers-overlay > .wysiwyg-editable {
    transform: translateY(30%);
  }
  .home-content-area .page-space {
    padding: 0px 100px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .home-content-area .page-space {
    padding: 0px 50px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .home-content-area .page-space {
    padding: 0px 25px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .home-content-area .page-space {
    padding: 0px 20px;
  }
}

/* information pages */

.body-class-members.body-contentpage .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.body-class-members.body-contentpage .container {
  width: 100%;
}

/* main responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
  .page-space {
    padding: 0px 25px;
  }
  .news-carousel .news-item {
    width: 176px;
  }
  .news-carousel {
    height: 165px;
  }
  .home-status {
    width: 940px;
  }
  .home-logo {
    top: 15%;
  }
  .inner-logo {
    top: 10px;
  }
  .inner-slider-title {
    top: 120px;
  }
  .inner-nav ul li a {
    letter-spacing: 0px;
  }
  .inner-content-col {
    line-height: 26px;
    font-size: 16px;
  }
  .inner-offers-overlay > .wysiwyg-editable {
    transform: translateY(0px);
  }
  .hole-map img {
    max-width: 220px;
  }
  .body-public[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-opens .content-wrapper, [class*="setcoursestatus"] .content-wrapper, .body-class-visitorbooking .content-wrapper {
    width: 940px;
  }
  .body-class-members #globalwrap {
    overflow-x: scroll;
  }
  .body-class-members .members-section {
    width: 940px;
  }
  .body-class-members .navbar .nav > li > a {
    padding: 10px;
  }
  #fpmessagediv img {
    width: 100%;
  }
}

/* portrait tablet */

@media (min-width: 768px) and (max-width: 979px) {
  .page-space {
    padding: 0px 25px;
  }
  .home-status {
    width: 724px;
  }
  .home-logo {
    top: 10px;
  }
  .home-box-text {
    top: 30%;
  }
  .testimonial-section {
    padding: 70px 0px;
  }
  .news-carousel .news-item {
    width: 146px;
  }
  .news-carousel {
    height: 137px;
  }
  .inner-logo {
    top: 10px;
    width: 90px;
  }
  .inner-slider-title {
    top: 90px;
  }
  .inner-slider-title h2 {
    font-size: 38px;
    line-height: 48px;
  }
  .inner-nav ul li a {
    letter-spacing: 0px;
    text-transform: capitalize;
  }
  .inner-offers-overlay > .wysiwyg-editable {
    transform: translateY(0px);
    top: 10px;
  }
  .inner-offers-overlay h4 {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 26px;
  }
  .hole-nav ul {
    width: 450px;
    margin: 0px auto;
  }
  .hole-nav ul li {
    margin: 4px 8px;
  }
  .table th, .table td, table td, table th {
    font-size: 14px;
    padding: 6px;
  }
  .hole-map img {
    max-width: 200px;
  }
  .body-public[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-opens .content-wrapper, [class*="setcoursestatus"] .content-wrapper, .body-class-visitorbooking .content-wrapper {
    width: 724px;
  }
  .body-class-members .members-section {
    width: 724px;
    position: relative;
  }
  .php-hcaplist .btn-group + .btn-group {
    margin-left: 0px;
    margin-top: 10px;
  }
  .php-roundmgmt .dateperiods {
    width: 56%;
  }
  .php-directory table td a[href*="mailto"] {
    word-break: break-all;
  }
  #fpmessagediv img {
    width: 100%;
  }
}

/* portrait tablet and mobile */

@media (min-width: 0px) and (max-width: 979px) {
  .body-public #myNavbar {
    height: auto !important;
  }
  .home-slideshow .galleryInner, .home-slideshow .galleryInner img{
    height: auto !important;
  }
  .home-scroll {
    display: none;
  }
  .nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a {
    font-weight: 400;
  }
  .navbar-inverse .nav-collapse .dropdown-menu a {
    color: white;
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background: transparent;
  }
  .navbar-inverse .nav-collapse .dropdown-menu > li > a:hover, .navbar-inverse .nav-collapse .dropdown-menu > li.current > a {
    color: #fc0;
  }
  .body-class-members #hamburger-icon {
    display: block;
    background: #231d45;
    width: 80px;
    height: 80px;
    border: none;
    box-shadow: none;
    padding: 0px;
    position: absolute;
    right: 0px;
  }
  .body-class-members .line {
    position: absolute;
    height: 2px;
    width: 33px;
    display: inline-block;
    background: white;
    transition: all 600ms ease-in-out;
    -moz-transition: all 600ms ease-in-out;
    -webkit-transition: all 600ms ease-in-out;
  }
  .body-class-members .line-1 {
    top: 28px;
    left: 24px;
  }
  .body-class-members .line-2 {
    top: 38px;
    left: 24px;
    opacity: 1;
  }
  .body-class-members .line-3 {
    top: 48px;
    left: 24px;
  }
  .body-class-members .disp .line-1 {
    top: 38px;
    transform: rotateZ(45deg);
  }
 .body-class-members .disp .line-2 {
    opacity: 0;
  }
  .body-class-members .disp .line-3 {
    top: 38px;
    transform: rotateZ(-45deg);
  }
  .body-class-members #globalwrap {
    overflow-x: scroll;
  }
  .php-weatherfg div.phone-weather .weatherImage {
    background: transparent;
  }
  .php-weatherfg div.phone-weather .wind_direction .wind_speed1 {
    top: 8px;
  }
  .hole-nav ul li.current a::after {
    display: none;
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  body {
    padding-left: 0px;
    padding-right: 0px;
  }
  .body-public .header-wrapper #myNavbar {
    overflow-y: visible !important;
    position: fixed;
    height: 100vh !important;
    min-height: 100vh;
    box-sizing: border-box;
  }
  .body-public #hamburger-icon {
    width: 80px;
    height: 80px;
  }
  .body-public .line-1 {
    top: 28px;
    left: 24px;
  }
  .body-public .line-2 {
    top: 38px;
    left: 24px;
    opacity: 1;
  }
  .body-public .line-3 {
    top: 48px;
    left: 24px;
  }
  .body-public .disp .line-1 {
    top: 38px;
    transform: rotateZ(45deg);
  }
 .body-public .disp .line-2 {
    opacity: 0;
  }
  .body-public .disp .line-3 {
    top: 38px;
    transform: rotateZ(-45deg);
  }
  .home-logo {
    top: 10px;
    width: 100px;
  }
  .home-slider-title {
    top: 90px;
    width: 100%;
  }
  .home-slider-title h2 {
    font-size: 22px;
    line-height: 32px;
  }
  .home-status {
    background: black;
    padding: 10px 20px;
    width: auto;
    position: relative;
    bottom: 0px;
  }
  .home-content-area {
    padding-top: 40px;
  }
  .page-space {
    padding: 0px 20px;
  }
  .home-content-boxes .row-fluid .span4 {
    margin: 20px auto;
    max-width: 500px;
    width: 100%;
  }
  .news-carousel .news-item {
    width: 200px;
  }
  .news-carousel {
    height: 187px;
  }
  .inner-logo {
    top: 10px;
    width: 90px;
  }
  .inner-slideshow .galleryInner, .inner-slideshow .galleryInner img {
    min-height: 140px;
    object-fit: cover;
  }
  .inner-slider-title {
    display: none;
  }
  .inner-nav ul li {
    display: block;
    border: 2px solid #27276d;
    margin: 5px 0px;
  }
  .inner-nav ul li::after {
    display: none;
  }
  .inner-nav ul li a {
    letter-spacing: 0px;
    text-transform: capitalize;
    display: inline-block;
    width: 100%;
    padding: 5px;
  }
  .inner-offers-title {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .inner-offers .row-fluid .span4 {
    margin: 0px auto;
    max-width: 500px;
    width: 100%;
  }
  .inner-offers .row-fluid .span4.inner-box-two {
    margin: 30px auto;
  }
  .footer-logo {
    padding-top: 40px;
  }
  .footer-address {
    padding-top: 20px;
    font-size: 16px;
  }
  .footer-social {
    padding-top: 30px;
  }
  .footer-contact {
    font-size: 14px;
  }
  .footer-contact > span {
    display: block;
    margin: 6px 0px;
  }
  .footer-contact > .footer-vert-line {
    display: none;
  }
  .footer-line {
    margin-top: 30px;
  }
  .scorecard-content {
    overflow-x: scroll;
  }
  .hole-nav ul {
    width: 280px;
    margin: 0px auto;
  }
  .hole-nav ul li {
    margin: 4px 6px;
  }
  .hole-map img {
    max-width: 200px;
  }
  .hole-content-area {
    text-align: center;
  }
  .hole-pic img {
    max-width: 500px;
    width: 100%;
  }
  .body-public[class*="php-"] .content-wrapper, .body-class-members .content-wrapper, .body-class-opens .content-wrapper, [class*="setcoursestatus"] .content-wrapper, .body-class-visitorbooking .content-wrapper {
    width: auto;
    margin: 0px 10px;
  }
  .body-public[class*="php-"] #globalwrap, .body-class-opens #globalwrap, [class*="setcoursestatus"] #globalwrap, .body-class-visitorbooking #globalwrap {
    margin-bottom: 50px;
  }
  .body-class-members #globalwrap {
    margin: 60px 0px;
  }
  .body-public[class*="php-"] .header-wrapper, .body-class-opens .header-wrapper, [class*="setcoursestatus"] .header-wrapper, .body-class-visitorbooking .header-wrapper {
    min-height: 80px;
  }
  .body-public[class*="php-"] .header-wrapper .header-logo, .body-class-opens .header-wrapper .header-logo, [class*="setcoursestatus"] .header-wrapper .header-logo, .body-class-visitorbooking .header-wrapper .header-logo {
    width: 80px;
    margin-left: 10px;
  }
  .php-hcaplist .btn-group {
    display: block;
    width: 200px;
  }
  .php-hcaplist .btn-group .btn {
    margin: 6px 0px;
    display: block;
  }
  .php-hcaplist .btn-group + .btn-group {
    margin-left: 0px;
  }
  .php-roundmgmt .dateperiods {
    width: 100%;
    float: none;
    text-align: left;
  }
  .php-analysis .pull-left {
    float: none;
  }
  .php-analysis .pull-right {
    float: none;
  }
  .php-analysis .btn-group {
    width: 200px;
    display: block;
  }
  .php-analysis .btn-group .btn {
    margin: 6px 0px;
    display: block;
  }
  .body-class-members .nav-section {
    width: 100%;
  }
  #globalwrap .btn-group .btn:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  #globalwrap .btn-group .btn:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .hcaplist > p:last-child a.btn {
    margin: 6px 0px;
  }
  .php-directory table a[href*="mailto"] {
    word-break: break-all;
  }
   [class*="body-class-setcoursestatus"] .content-wrapper a {
    word-break: break-all;
  }
  [class*="body-class-setcoursestatus"] .content-wrapper textarea {
    width: 260px !important;
  }
  body[class*="php-"] #globalwrap, .body-class-visitorbooking #globalwrap, .body-class-getawayletter #globalwrap, .body-class-members #globalwrap, [class*="body-class-setcoursestatus"] #globalwrap, .body-class-opens #globalwrap {
    padding: 20px 10px;
  }
  .body-class-members .members-section {
    width: auto;
  }
  .table th, .table td, table td, table th {
    font-size: 12px;
    padding: 2px;
  }
  #fpmessagediv img {
    width: 100%;
    max-width: 500px;
  }
  .home-content-boxes {
    padding-bottom: 60px;
  }
  .testimonial-section {
    padding: 60px 0px;
  }
}

/* small mobile */

@media (min-width: 0px) and (max-width: 480px) {
  #login fieldset {
    transform: translateX(0px);
  }
  .php-weatherfg .nav-tabs > li > a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 13px;
  }
  .news-carousel .news-item {
    width: 160px;
  }
  .news-carousel {
    height: 150px;
  }
  .inner-offers-overlay > .wysiwyg-editable {
    transform: translateY(20%);
  }
  .inner-offers-overlay h4 {
    margin-bottom: 30px;
  }
  .navbar-inverse .nav-collapse .dropdown-menu a {
    font-size: 13px;
  }
  input[type*="submit"], a.btn, button.btn, a.read-more {
    text-transform: capitalize;
    padding: 8px 6px;
  }
  .php-roundmgmt .dateperiods a {
    padding: 3px 4px;
  }
}

#ui-datepicker-div {
  display: none;
}

/* editor styles */

.php-ckeditor .header-wrapper {
  display: none;
}

.php-ckeditor .wysiwyg-editable {
  border: 2px dashed #000;
}

.php-ckeditor .home-scroll {
  display: none;
}

.php-ckeditor .home-status {
  display: none;
}

.php-ckeditor .home-logo {
  position: relative;
  top: 10px;
}

.php-ckeditor .home-slider-title {
  position: relative;
  top: 10px;
}

.php-ckeditor .page-space {
  padding: 0px 20px;
}

.php-ckeditor .home-content-boxes {
  padding-bottom: 20px;
}

.php-ckeditor .testimonial-section {
  padding: 20px 0px;
}

.php-ckeditor .page-carousel {
  margin-top: 20px;
}

.php-ckeditor .inner-logo {
  position: relative;
  top: 10px;
}

.php-ckeditor .inner-slider-title {
  position: relative;
  top: 10px;
}

.php-ckeditor .inner-offers {
  padding-top: 20px;
}

.php-ckeditor .inner-content-area {
  padding-bottom: 20px;
}

.php-ckeditor .inner-two-col {
  padding-top: 20px;
}

.php-ckeditor .scorecard-content {
  display: block;
}

.php-ckeditor .content-wrapper .scorecard-box a {
  color: #fff;
}

/* additional styles */

#map_container {
  width: 100% !important;
}

.gm-style-iw-d {
  max-height: 250px !important;
}

/* forms */

.inner-page-wrapper form input {
  width: 70%;
  background: #eee;
  border: 2px solid #231d45;
  height: 30px;
}

.inner-page-wrapper form textarea {
  width: 70%;
  background: #eee;
  border: 2px solid #231d45;
}

.inner-page-wrapper form select {
  width: 70%;
  background: #eee;
  border: 2px solid #231d45;
}

.inner-page-wrapper form input[type*="submit"] {
  width: auto;
  background: #27276d;
  border: none;
  height: auto;
}

.inner-page-wrapper form input[type*="submit"]:hover {
  background: #231d45;
}

/* top slideshow dots and arrows */

.content-wrapper #globalwrap .inner-slideshow .nivo-directionNav {
  display: none;
}

.content-wrapper #globalwrap .home-slideshow .nivo-directionNav {
  display: none;
}

.content-wrapper #globalwrap .hole-slideshow .nivo-directionNav {
  display: none;
}

.content-wrapper .nivo-controlNav-Wrapper {
  width: 200px;
  bottom: 20px;
  right: 40px;
  left: auto;
  z-index: 20;
}

.body-class-course .content-wrapper .nivo-controlNav-Wrapper {
  bottom: 120px;
}

.content-wrapper .nivo-controlNav a {
  background: white;
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
  top: 0px;
  background: transparent;
  border: 2px solid white;
  margin-right: 10px;
}

.content-wrapper .nivo-controlNav a.active {
  background: white;
  background-position: 0px;
  top: 0px;
  border: 2px solid white;
}

#globalwrap .inner-slideshow .nivo-caption {
  opacity: 1;
  background: transparent;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

#globalwrap .hole-slideshow .nivo-caption {
  opacity: 1;
  background: transparent;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

#globalwrap .home-slideshow .nivo-caption {
  opacity: 1;
  background: transparent;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.nivo-caption h4 {
  color: #231d45;
  background: rgba(0,0,0,0.6);
  display: inline-block;
  padding: 5px 15px;
  margin: 0px;
}

.inner-slideshow .nivo-caption p {
  color: white;
  text-shadow: 1px 1px #000;
}

@media (min-width: 0px) and (max-width: 767px) {
  .content-wrapper #globalwrap .inner-slideshow .nivo-caption {
    display: none !important;
  }
  .content-wrapper #globalwrap .hole-slideshow .nivo-caption {
    display: none !important;
  }
  .content-wrapper #globalwrap .home-slideshow .nivo-caption {
    display: none !important;
  }
  .content-wrapper .nivo-controlNav-Wrapper {
    bottom: 10px;
    right: 10px;
    text-align: right;
  }
  .content-wrapper .nivo-controlNav {
    padding: 0px;
  }
  .home-slideshow .nivo-controlNav-Wrapper {
    display: none;
  }
  .inner-slideshow .nivo-controlNav-Wrapper {
    display: none;
  }
  .hole-slideshow .nivo-controlNav-Wrapper {
    display: none;
  }
}

.table thead td, .table th {
  border-top: 2px solid #231d45 !important;
  font-weight: 400;
}

.body-class-visitorbooking table td {
  border: none;
}

.content-wrapper #memteetimes th {
  color: white;
}

#global .tabs li a {
  font-weight: 400;
}

#cluetip.cluetip-jtip #cluetip-inner legend {
  margin-top: 0px;
}

/* internet exploder */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .home-content-boxes .span4 .home-box-pic img {
    width: 100%;
  }
}

/* scroll to top */

.scrollTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
}

.scrollTop a{
  opacity: 0;
  background-color: #231d45;
  border: 2px solid #231d45;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
  color: white;
  display: inline-block;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.scrollTop a i {
  font-size: 20px;
  margin-top: 7px;
}

.scrollTop a:hover {
  color: #fc0;
  cursor: pointer;
}

@media (min-width: 0px) and (max-width: 767px) {
  .scrollTop {
    right: 5px;
    bottom: 5px;
  }
  .scrollTop a {
    width: 28px;
    height: 28px;
  }
  .scrollTop a i {
    font-size: 14px;
    margin-top: 4px;
  }
}

.table th, .table td {
  border-top: 2px solid #231d45 !important;
}

.dropdown-menu > li > a {
  font-size: 13px;
}

.body-public .nav-wrapper {
  padding: 30px 20px 20px;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .body-class-members .navbar .nav > li > a {
    font-size: 15px;
  }
}

/* destory grammarly */

grammarly-btn {
  display: none;
}

/* additional fixes */

.inner-page-wrapper form img.ui-datepicker-trigger {
  display: none;
}

.inner-content-col ul li, .inner-content-col-right ul li, .inner-new-content ul li {
  list-style: none;
}

.inner-new-content ul li {
  margin-bottom: 10px;
}

.inner-new-content ul {
  margin-left: 0px;
}

.inner-content-col ul li::before, .inner-content-col-right ul li::before, .inner-new-content ul li::before {
  content: '\f111';
  font-family: 'FontAwesome';
  margin-right: 7px;
  color: #231d45;
  font-size: 10px;
  position: relative;
  top: -2px;
}

.inner-new-content ul li::before {
  margin-right: 3px;
}

.inner-new-content ul li p {
  display: inline;
}

.home-buttons {
  position: relative;
  z-index: 15;
  left: 0px;
  right: 0px;
  margin: 20px auto 0px;
  width: 380px;
}

.home-buttons a, .mobile-home-buttons a {
  display: inline-block;
  background: rgba(0,0,0,0.6);
  padding: 12px;
  width: 150px;
  text-transform: uppercase;
  color: white;
  text-align: center;
}

.home-buttons a:last-child {
  margin-left: 20px;
}

.home-buttons a:hover {
  background: black;
  color: #696991;
}

@media (min-width: 768px) and (max-width: 979px) {
  .content-wrapper .home-slideshow .nivo-controlNav-Wrapper {
    display: none;
  }
  .home-status {
    bottom: 10px;
  }
}

.mobile-home-buttons {
  display: none;
}

@media (min-width: 0px) and (max-width: 767px) {
  .content-wrapper .home-slideshow .nivo-controlNav-Wrapper {
    display: none;
  }
  .home-logo {
    width: auto;
  }
  .home-logo p:nth-of-type(2) {
    display: none;
  }
  .home-logo h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .home-buttons {
    display: none;
  }
  .mobile-home-buttons {
    position: relative;
    background: black;
    width: auto;
    bottom: 0px;
    padding: 10px 0px;
    text-align: center;
    display: block;
  }
  .home-buttons a, .mobile-home-buttons a {
    background: #231d45;
  }
  .home-buttons a:hover, .mobile-home-buttons a:hover {
    color: #fc0;
    background: #231d45;
  }
}

.php-ckeditor .news-carousel {
  height: 1500px;
}

.php-ckeditor .news-carousel .news-item {
  float: none;
}

.news-carousel {
  height: 170px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .news-carousel {
    height: 150px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .news-carousel {
    height: 130px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .news-carousel {
    height: 110px;
  }
}

.testimonial-section .nivo-directionNav {
  display: none !important;
}

.testimonial-section {
  position: relative;
}

.testimonial-section .nivo-controlNav {
  display: block !important;
  text-align: center;
}

.content-wrapper .testimonial-section .nivo-controlNav-Wrapper {
  left: 0px;
  right: 0px;
  margin: 0px auto;
  bottom: 30px;
}

.content-wrapper .testimonial-section .nivo-controlNav a {
  border-color: #231d45;
}

.content-wrapper .testimonial-section .nivo-controlNav a.active {
  background: #231d45;
}

@media (min-width: 0px) and (max-width: 500px) {
  .home-logo {
    top: 20px;
  }
  .home-logo img {
    width: 120px;
  }
  .home-buttons a, .mobile-home-buttons a {
    display: block;
    margin: 8px auto;
  }
  .home-buttons a:last-child, .mobile-home-buttons a:last-child {
    margin-left: auto;
  }
}

.content-wrapper .home-page-wrapper .nivo-controlNav-Wrapper {
  bottom: -10px;
}

@media (min-width: 1200px) {
  .home-status {
    bottom: 25px;
  }
  .home-scroll {
    bottom: 75px;
  }
}

.body-contentpage.body-public .header-logo {
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 5px;
  background: rgba(255,255,255,0.5);
  z-index: 50;
  width: 90px;
}

@media (min-width: 0px) and (max-width: 1399px) {
  .body-contentpage.body-public .header-logo {
    position: absolute;
  }
}

.inner-logo {
  display: none;
}

.inner-slider-title {
  display: none;
}

.body-public #hamburger-icon {
  border-bottom-left-radius: 40px;
}

.body-contentpage .page-carousel {
  display: none;
}

.home-sponsors {
  padding: 40px 0px;
}

.testimonial-section .galleryInner .nivo-caption {
  font-family: 'Montserrat', sans-serif;
}

.testimonial-section .galleryInner .nivo-caption p {
  font-size: 18px;
  line-height: 26px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .row-fluid .span3.hs-content {
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
  }
  .home-logo {
    top: 60px;
  }
}

.home-buttons {
  margin-top: 60px;
}

@media (min-width: 768px) and (max-height: 599px) {
  .home-logo {
    top: 10px;
  }
  .home-logo img {
    width: 175px;
  }
  .home-buttons {
    margin-top: 20px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .home-logo img {
    width: 200px;
  }
  .home-buttons {
    margin-top: 20px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .home-logo img {
    width: 175px;
  }
}

@media (min-width: 0px) and (max-width: 479px) {
  .home-logo {
    top: 30px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .home-logo img {
    width: 175px;
  }
  .home-buttons {
    margin-top: 20px;
  }
}

.body-public .members-logo {
  display: none;
}

.body-class-members .public-logo {
  display: none;
}

@media (min-width: 1200px) and (min-height: 600px) and (max-height: 759px) {
  .home-buttons {
    margin-top: 20px;
  }
  .home-logo img {
    width: 175px;
  }
}

.home-intro {
  display: block;
}

.inner-offers-overlay {
  position: relative;
  top: 0px;
  margin-top: 20px;
  background: transparent;
}

.inner-offers-overlay:hover {
  background: transparent;
}

.inner-offers-overlay > .wysiwyg-editable {
  position: relative;
  transform: translate(0px);
  color: #333;
}

.inner-offers-overlay p {
  margin-bottom: 20px;
}

.inner-offers-overlay h4 {
  color: #231d45;
  margin-bottom: 20px;
}

.inner-offers-overlay h5 a {
  border: none;
  background: #231d45;
  color: white;
}

.php-ckeditor .content-wrapper .inner-offers-overlay h5 a {
  color: white;
}

/* bramley new inner template one */

.inner-slideshow-title {
  position: relative;
  text-align: center;
  left: 0px;
  right: 0px;
  z-index: 20;
  margin: 0px auto;
  padding: 50px 20px 20px;
}

.inner-slideshow-title h1 {
  color: #27276d;
}

.inner-intro {
  text-align: center;
}

.inner-links {
  padding-top: 40px;
  text-align: center;
}

.inner-links a {
  display: inline-block;
  margin: 0px 20px;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.inner-links a:hover {
  color: black;
}

.inner-new-two-col {
  padding-top: 60px;
}

.inner-new-content {
  line-height: 28px;
}

.inner-offers .row-fluid {
  padding-bottom: 60px;
}

@media (min-width: 0px) and (max-width: 979px) {
  .inner-slideshow-title {
    padding-top: 30px;
    position: relative;
    bottom: 0px;
  }
  .inner-intro {
    padding-top: 30px;
  }
  .inner-slideshow-title h1 {
    color: #231d45;
    text-shadow: none;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-slideshow-title {
    padding-top: 30px;
  }
  .inner-intro {
    padding-top: 30px;
  }
  .inner-new-two-col {
    padding-top: 40px;
    text-align: center;
  }
  .inner-new-sidebar {
    padding-top: 30px;
  }
  .inner-new-sidebar img {
    max-width: 450px;
    width: 100%;
    margin: 20px auto;
  }
  .inner-links {
    padding-top: 30px;
  }
  .inner-links a {
    display: block;
    margin: 20px 0px;
  }
}

.inner-new-two-col .pull-left.span4 {
  margin-left: 0px;
}

.php-ckeditor .inner-slideshow-title {
  position: relative;
  bottom: 0px;
  margin-top: 20px;
}

.php-ckeditor .inner-slideshow-title h1 {
  color: #333;
  text-shadow: none;
}

/* additional tweaks */

.home-content-area {
  padding-top: 0px;
}

.inner-links .menu-section h2 {
  display: none;
}

.inner-links .menu-section ul {
  margin: 0px;
  font-size: 0px;
}

.inner-links .menu-section ul li {
  font-size: 0px;
  display: inline-block;
  position: relative;
  margin: 0px 10px;
}

.inner-links .menu-section ul li::after {
  position: absolute;
  right: -13px;
  top: 10px;
  display: inline-block;
  content: '';
  width: 5px;
  height: 1px;
  background: #27276d;
}

.inner-links .menu-section ul li:last-child::after {
  display: none;
}

.inner-links .menu-section ul li a {
  font-size: 16px;
  color: #27276d;
  text-transform: uppercase;
  letter-spacing: 0px;
  text-decoration: none;
  margin: 0px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-links .menu-section ul li {
    display: block;
    border: 2px solid #27276d;
    margin: 5px 0px;
  }
  .inner-links .menu-section ul li::after {
    display: none;
  }
  .inner-links .menu-section ul li a {
    letter-spacing: 0px;
    text-transform: capitalize;
    display: inline-block;
    width: 100%;
    padding: 5px;
  }
}

.php-ckeditor h5 a {
  color: white !important;
}

.php-ckeditor .content-wrapper table td {
  border: 2px solid #231d45;
}

/* accordions */

.body-public .accordion-one, .body-public .accordion-two, .body-public .accordion-three, .body-public .accordion-four, .body-public .accordion-five, .body-public .accordion-six, .body-public .accordion-seven, .body-public .accordion-eight {
  display: none;
  padding: 20px 0px;
}

[id*="accordion-toggle"] {
    padding: 10px 0px;
}

div[id*="accordion-toggle"]:hover {
  cursor: pointer;
}

.inner-new-content div[id*="accordion-toggle"] h2::after {
    content: '\f107';
    font-family: 'FontAwesome';
    margin-left: 10px;
}

.inner-new-content div[id*="accordion-toggle"].open h2::after {
    content: '\f106';
    font-family: 'FontAwesome';
    margin-left: 10px;
}

.php-ckeditor [class*="accordion-"] {
  margin: 15px 0px;
}

div[id*="accordion-toggle"] h2 br {
  display: none;
}

.always-menu.body-contentpage.body-public #hamburger-icon, .always-menu.body-class-home.body-public #hamburger-icon {
  opacity: 1;
}

.scorecard-content table tr th:nth-child(11), .scorecard-content table tr th:nth-child(12), .scorecard-content table tr th:nth-child(13) {
  display: none;
}

.scorecard-content table tr td:nth-child(11), .scorecard-content table tr td:nth-child(12), .scorecard-content table tr td:nth-child(13) {
  display: none;
}

.inner-offers-title {
  padding-top: 0px;
}

.php-ckeditor .inner-page-wrapper table td {
  border: 2px solid #231d45 !important;
}

/* additonal fixes */

@media (min-width: 0px) and (max-width: 767px) {
  .hs-content {
    text-align: center;
  }
  .body-class-professional_team .inner-new-sidebar {
    padding-top: 0px;
  }
  .body-class-professional_team .inner-new-content {
    padding-top: 30px;
  }
}

.inner-page-wrapper table thead th {
  border: 2px solid #fc0;
  border-bottom: none;
}

.inner-page-wrapper table tbody th {
  border: 2px solid #fc0;
  border-bottom: none;
}

.inner-page-wrapper table tbody tr:last-child th {
  border-bottom: 2px solid #231d45;
}

.footer-trademark-logo {
  margin-top: 40px;
}

.footer-trademark-logo img {
  width: 125px;
}

.extra-sponsor-row {
  margin-top: 30px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .extra-sponsor-row img {
    width: 100%;
    max-width: 360px;
  }
  .menu-text {
    display: none;
  }
  .home-page-wrapper .galleryInner, .home-page-wrapper .galleryInner img {
    min-height: 550px;
    object-fit: cover;
  }
  .mobile-home-buttons {
    position: absolute;
    bottom: 130px;
    z-index: 14;
    background: transparent;
    width: 320px;
    margin: 0px auto;
    left: 0px;
    right: 0px;
  }
  .home-buttons a, .mobile-home-buttons a {
    display: inline-block;
    padding: 8px 4px;
    width: 130px;
  }
  .home-status {
    position: absolute;
    background: transparent;
  }
}

/* end anton styles */