/*-----------------------------------------------------------------------
/*  Theme Name  : Rinjani
/*  Theme URI   : https://wrapbootstrap.com/theme/rinjani-multi-purpose-one-page-theme-WB035T192
/*  Description : Multi-Purpose One Page Theme
/*  Version     : 1.7
/*  assets/css/rinjani.css
/*-----------------------------------------------------------------------

1. GLOBAL STYLES

2. ANIMATION DELAY

3. PAGE LOADER

4. NAVBAR
	4.1 NAVBAR - CENTER MENU
	4.2 NAVBAR - SIDE MENU

5. INTRO SECTION

6. WHO WE ARE SECTION

7. FUN FACT SECTION

8. OUR MAIN SKILLS SECTION

9. QUOTE SECTION

10. KEEP IN TOUCH SECTION

11. MEET THE TEAM SECTION

12. TESTIMONIALS SECTION

13. COMING SOON SECTION

14. CONTACT US SECTION

15. MAP

16. FOOTER

-----------------------------------------------------------------------*/


/*---------------------------------------------------------------------*/
/*  1. GLOBAL STYLES
/*---------------------------------------------------------------------*/
@font-face { font-family: Titular-Heavy; src: url('../font/Titular-Heavy.otf'); }
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body,
html {
  width: 100%;
  height: 100%;
}
body {
  background-color: #f2f4f4;
  font-family: 'Lato', sans-serif;
  color: #333;
  overflow-x: visible;
}
a {
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 15px;
}

.push {
  margin-left: 0px;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (min-width: 992px) {
  .push.pushed-left {
    margin-left: 250px;
  }
}
@media (min-width: 992px) {
  .push.pushed-right {
    margin-left: -250px;
  }
}
.section {
  background-color: #f2f4f4;
}
.section > .section-inner {
  position: relative;
}
.section > .section-inner .section-content {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .section > .section-inner .section-content {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
.section > .section-inner .section-content .section-title {
  color: #231f20;
  text-transform: uppercase;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .section > .section-inner .section-content .section-title {
    padding-bottom: 60px;
  }
}
.main-title {
  color: #231f20;
	font-family: Titular-Heavy;
	font-style: italic;
  font-size: 52px;
  font-weight: 300;
}
@media (min-width: 480px) {
.main-title {
    font-size: 45px;
  }
}
@media (min-width: 600px) {
 .main-title {
    font-size: 55px;
  }
}
@media (min-width: 768px) {
 .main-title {
    font-size: 130px;
  }
}
.section > .section-inner .section-content .section-title > .sub-title {
  /*font-family: Titular-Heavy;*/
  font-size: 20px;
  text-transform: none;
  font-weight: 500;
}
@media (min-width: 480px) {
  .section > .section-inner .section-content .section-title > .sub-title {
    font-size: 25px;
  }
}
.section > .section-inner .section-content .section-line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #231f20;
}
.section.section-bgimage-yes {
  background-color: #231f20;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
@media (min-width: 1280px) {
  .section.section-bgimage-yes {
    background-attachment: fixed;
  }
}
.section.section-bgimage-yes > .section-inner > .section-overlay {
  content: '';
  position: absolute;
  background-color: #000;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  zoom: 1;
  opacity: 0.7;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
}
.section.section-parallax-yes > .section-inner > .section-overlay {
  content: '';
  position: absolute;
  background-color: #000;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  zoom: 1;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
}
.section.section-parallax-yes > .section-inner > .parallax .bcg {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
@media (min-width: 1280px) {
  .section.section-parallax-yes > .section-inner > .parallax .bcg {
    background-attachment: fixed;
  }
}


/*---------------------------------------------------------------------*/
/*  2. ANIMATION DELAY
/*---------------------------------------------------------------------*/
.delayp1 {
  animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-delay: .1s;
  -o-animation-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-delay: .1s;
  -moz-transition-delay: .1s;
  -o-transition-delay: .1s;
}
.delayp2 {
  animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-delay: .2s;
  -o-animation-delay: .2s;
  transition-delay: .2s;
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  -o-transition-delay: .2s;
}
.delayp3 {
  animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-delay: .3s;
  -o-animation-delay: .3s;
  transition-delay: .3s;
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  -o-transition-delay: .3s;
}
.delayp4 {
  animation-delay: .4s;
  -moz-animation-delay: .4s;
  -webkit-animation-delay: .4s;
  -o-animation-delay: .4s;
  transition-delay: .4s;
  -webkit-transition-delay: .4s;
  -moz-transition-delay: .4s;
  -o-transition-delay: .4s;
}
.delayp5 {
  animation-delay: .5s;
  -moz-animation-delay: .5s;
  -webkit-animation-delay: .5s;
  -o-animation-delay: .5s;
  transition-delay: .5s;
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  -o-transition-delay: .5s;
}


/*---------------------------------------------------------------------*/
/*  3. PAGE LOADER
/*---------------------------------------------------------------------*/
#page-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
}
#page-loader .preload {
  width: 128px;
  height: 128px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -64px;
  margin-left: -64px;
}


/*---------------------------------------------------------------------*/
/*  4. NAVBAR
/*---------------------------------------------------------------------*/
.navbar.navbar-fixed-top {
  position: relative;
  margin: 0;
  border: 0;
  min-height: 60px;
  background-color: #231f20;
  box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.2);
}
@media (min-width: 768px) {
  .navbar.navbar-fixed-top {
    -webkit-transition: background 0.2s ease-in-out, padding 0.3s ease-in-out;
    -moz-transition: background 0.2s ease-in-out, padding 0.3s ease-in-out;
    transition: background 0.2s ease-in-out, padding 0.3s ease-in-out;
  }
}
.navbar.navbar-fixed-top .navbar-brand {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  height: 60px;
  line-height: 60px;
  padding-top: 0px;
  padding-bottom: 0px;
  letter-spacing: 0.1em;
}
.navbar.navbar-fixed-top .navbar-brand:hover {
  color: #fff;
}
.navbar.navbar-fixed-top .navbar-toggle {
  margin-top: 12px;
  background-color: #00abcd;
}
.navbar.navbar-fixed-top .navbar-nav > li > a {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top .navbar-nav > li > a {
    height: 60px;
    line-height: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 13px;
  }
}
.navbar.navbar-fixed-top .navbar-nav > li > a:hover,
.navbar.navbar-fixed-top .navbar-nav > li.spec > a:hover {
  color: #00abcd;
  background-color: #231f20;
}
.navbar.navbar-fixed-top .navbar-nav > li > a > i.fa-angle-down {
  padding-left: 2px;
}
.navbar.navbar-fixed-top .navbar-nav > li.active a,
.navbar.navbar-fixed-top .navbar-nav > li.active a:hover {
  background-color: #00abcd;
  color: #fff;
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top .navbar-nav > li.active a,
  .navbar.navbar-fixed-top .navbar-nav > li.active a:hover,
  .navbar.navbar-fixed-top .navbar-nav > li.spec.active a,
  .navbar.navbar-fixed-top .navbar-nav > li.spec.active a:hover {
    color: #fff;
    background-color: #00abcd;
    background-repeat: repeat;
  }
}


/*---------------------------------------------------------------------*/
/*  4.1. NAVBAR - CENTER MENU
/*---------------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.center-menu .navbar-nav {
    margin: 0 auto;
    float: none;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.center-menu .navbar-nav > li {
    display: inline-block;
    float: none;
    padding-right: 5px;
    padding-left: 5px;
  }
}


/*---------------------------------------------------------------------*/
/*  4.2. NAVBAR - SIDE MENU
/*---------------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu {
    z-index: 15;
    position: fixed;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #231f20;
    box-shadow: none;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu .container {
    margin: 0;
    padding: 0;
    width: auto;
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu .navbar-header {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu .navbar-header .navbar-brand {
    color: #aaa;
    float: none;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #aaa;
    border-radius: 2px;
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu .navbar-nav {
    position: relative;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu .navbar-nav > li {
    float: none;
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu .navbar-nav > li > a {
    color: #aaa;
    height: 42px;
    line-height: 42px;
    padding: 0px 30px;
  }
  .navbar.navbar-fixed-top.side-menu .navbar-nav > li > a:hover {
    color: #fff;
  }
}
.navbar.navbar-fixed-top.side-menu .navbar-nav > li.active > a {
  color: #fff;
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu.left-slide-menu,
  .navbar.navbar-fixed-top.side-menu.left-push-menu {
    left: -250px;
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu.left-slide-menu.active,
  .navbar.navbar-fixed-top.side-menu.left-push-menu.active {
    left: 0;
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu.right-slide-menu,
  .navbar.navbar-fixed-top.side-menu.right-push-menu {
    right: -250px;
    left: auto;
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.side-menu.right-slide-menu.active,
  .navbar.navbar-fixed-top.side-menu.right-push-menu.active {
    right: 0;
  }
}
.navbar-trigger-open {
  z-index: 10;
  position: fixed;
  top: 0;
  margin-top: 25px;
}
.navbar-trigger-open a {
  color: #fff;
  font-size: 28px;
  background-color: #00abcd;
  padding: 5px 15px;
  border-radius: 2px;
  opacity: 0.9;
}
.navbar-trigger-open.left {
  left: 0;
  margin-left: 20px;
}
.navbar-trigger-open.right {
  right: 0;
  margin-right: 20px;
}
span.navbar-trigger-close {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 25px;
  margin-top: 28px;
}
span.navbar-trigger-close a {
  color: #aaa;
  font-size: 28px;
}
span.navbar-trigger-close a:hover {
  color: #fff;
}


/*---------------------------------------------------------------------*/
/*  5. INTRO SECTION
/*---------------------------------------------------------------------*/
#intro {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
@media (min-width: 1280px) {
  #intro {
    height: 100%;
    padding: 0px;
    background-attachment: fixed;
  }
}
#intro:before {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  /*background: rgba(0, 0, 0, 0.8);*/
}
#intro .intro-body {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
      background: -webkit-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0), black);
    /* For Opera 11.1 to 12.0 */
    background: -o-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0), black);
    /* For Fx 3.6 to 15 */
    background: -moz-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0), black);
    /* Standard syntax */
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0), black);
}

@media (min-width: 1280px) {
  #intro .intro-body {
    padding-top: 0px;
    padding-bottom: 20px;
   
  }
}
#intro .intro-body .logo > h1 {
  display: block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Raleway', sans-serif;
  font-size: 80px;
  font-weight: 700;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin: auto;
}
#intro .intro-body .intro-text {
  margin-top: 40px;
  font-family: 'Raleway', sans-serif;
}
#intro .intro-body .intro-text h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}
@media (min-width: 768px) {
  #intro .intro-body .intro-text h2 {
    font-size: 55px;
  }
}
#intro .intro-body .intro-text p.lead {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}
@media (min-width: 768px) {
  #intro .intro-body .intro-text p.lead {
    font-size: 26px;
  }
}
#intro .intro-body .page-scroll {
  margin-top: 30px;
}
@media (min-width: 768px) {
  #intro .intro-body .page-scroll {
    margin-top: 50px;
  }
}
#intro .intro-body .page-scroll a.btn {
  font-family: 'Raleway', sans-serif;
}
@media (min-width: 768px) {
  #intro .intro-body .page-scroll a.btn {
    padding: 20px 25px;
    font-size: 22px;
  }
}

/*---------------------------------------------------------------------*/
/*  5.AAA TEMP INTRO SECTION
/*---------------------------------------------------------------------*/
#image {
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  color: #fff;
  background-image: url("../img/bsg-slide-tint.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
@media (min-width: 1280px) {
  #image {
    height: calc(100% - 60px);
    padding: 0px;
    background-attachment: fixed;
  }
}
#image:before {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  /*background: rgba(255, 255, 255, 0.6);*/
}
#image .intro-body {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (min-width: 1280px) {
  #image .intro-body {
    padding-top: 0px;
    padding-bottom: 20px;
  }
}
#image .intro-body .logo > h1 {
  display: block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Raleway', sans-serif;
  font-size: 80px;
  font-weight: 700;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin: auto;
}
#image .intro-body .intro-text {
  margin-top: 40px;
  font-family: 'Raleway', sans-serif;
}
#image .intro-body .intro-text h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}
@media (min-width: 768px) {
  #image .intro-body .intro-text h2 {
    font-size: 55px;
  }
}
#image .intro-body .intro-text p.lead {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}
@media (min-width: 768px) {
  #image .intro-body .intro-text p.lead {
    font-size: 26px;
  }
}
#image .intro-body .page-scroll {
  margin-top: 30px;
}
@media (max-width: 768px) {
  #image .intro-body .page-scroll {
    margin-top: 40%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  #image .intro-body .page-scroll {
    margin-top: 40%;
    text-align: left;
  }
}
@media (min-width: 992px) {
  #image .intro-body .page-scroll {
    margin-top: 40%;
    text-align: center;
  }
}
#image .intro-body .page-scroll a.btn {
  font-family: 'Raleway', sans-serif;
}
@media (min-width: 768px) {
  #image .intro-body .page-scroll a.btn {
    padding: 20px 25px;
    font-size: 22px;
  }
}





/*---------------------------------------------------------------------*/
/*  6. WHO WE ARE SECTION
/*---------------------------------------------------------------------*/
#who-we-are .carousel-container {
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  #who-we-are .carousel-container {
    padding-bottom: 0px;
  }
}
#who-we-are .who-we-are-text {
  text-align: center;
}
@media (min-width: 1024px) {
  #who-we-are .who-we-are-text {
    text-align: left;
  }
}
#who-we-are .who-we-are-text > h4 {
  font-size: 25px;
  text-transform: uppercase;
}
#who-we-are .who-we-are-text > p {
  font-size: 18px;
}
#who-we-are .who-we-are-text > .page-scroll {
  padding-top: 10px;
}


/*---------------------------------------------------------------------*/
/*  7. FUN FACT SECTION
/*---------------------------------------------------------------------*/
#fun-fact {
  background-image: url("../img/bg-fun-fact.jpg");
  background-attachment: scroll;
}
#fun-fact > .section-inner .section-content .section-title {
  color: #b7ada4;
}
#fun-fact > .section-inner .section-content .section-title > .section-line {
  background-color: #b7ada4;
}


/*---------------------------------------------------------------------*/
/*  8. OUR MAIN SKILLS SECTION
/*---------------------------------------------------------------------*/
#our-main-skills {
  background-image: url("../img/bg-our-main-skills.jpg");
  background-attachment: scroll;
}
#our-main-skills > .section-inner .section-content .section-title {
  color: #b7ada4;
}
#our-main-skills > .section-inner .section-content .section-title > .section-line {
  background-color: #b7ada4;
}
#our-main-skills .bar-chart-text {
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  #our-main-skills .bar-chart-text {
    text-align: left;
  }
}
@media (min-width: 992px) {
  #our-main-skills .bar-chart-text {
    text-align: right;
  }
}
#our-main-skills .bar-chart-text p.lead {
  font-size: 18px;
}
@media (min-width: 768px) {
  #our-main-skills .bar-chart-text p.lead {
    font-size: 21px;
  }
}


/*---------------------------------------------------------------------*/
/*  9. QUOTE SECTION
/*---------------------------------------------------------------------*/
#quote {
  background-image: url("../img/bg-quote.jpg");
  background-attachment: scroll;
}

#quote > .section-inner .section-content {
  padding-top: 100px;
  padding-bottom: 80px;
  color: #fff;
}
#quote > .section-inner .section-content .quote-text > .quote-icon > i {
  color: #00abcd;
  padding-bottom: 20px;
}
#quote > .section-inner .section-content .quote-text > h2 {
  font-size: 40px;
}
#quote > .section-inner .section-content .quote-text > h2.quote-by {
  color: #00abcd;
}

#header_testimonials .quote-text > h2.quote-by {
  color: #00abcd;
  display: inline; 
  margin-left: 20px;
  vertical-align: middle;
  font-size: 26px;
}
#header_testimonials .quote-text > h2 {
  font-size: 26px;
  margin-bottom: 0px;
}

#header_testimonials .quote-text  i {
  color: #00abcd;
  padding-bottom: 10px;
}
#header_testimonials .quote-text  img {
  display: inline;
}
#header_testimonials .owl-controls {
  display: none !important;
}
#header_testimonials{
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 100%;
  z-index: 1;
}
#header_testimonials img{
    width: 70px;
} 

@media (max-width: 992px){
    #header_testimonials{
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 100%;
    z-index: 1;
  }
  #header_testimonials .quote-text > h2 {
    font-size: 20px;
  }
  #header_testimonials .quote-text > h2.quote-by {
    font-size: 16px;
    margin-left: 10px;
  }
  #header_testimonials img{
    width: 30px;
  }
}
@media (max-width: 767px){
    #header_testimonials{
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 100%;
    z-index: 1;
  }
  #header_testimonials .quote-text > h2 {
    font-size: 14px;
  }
  #header_testimonials .quote-text > h2.quote-by {
    font-size: 16px;
    margin-left: 10px;
  }
  #header_testimonials img{
    width: 30px;
  }
}

@media (max-width: 320px){
    #header_testimonials{
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 100%;
    z-index: 1;
  }
  #header_testimonials .quote-text > h2 {
    font-size: 12px;
  }
  #header_testimonials .quote-text > h2.quote-by {
    font-size: 14px;
    margin-left: 10px;
  }
  #header_testimonials img{
    width: 30px;
  }
}
/*---------------------------------------------------------------------*/
/*  9. QUOTE SECTION
/*---------------------------------------------------------------------*/
#quote-b {
  background-image: url("../img/bg-quote-2.jpg");
  background-attachment: scroll;
}
#quote-c {
  background-image: url("../img/functions-cta-bg.jpg");
  background-attachment: scroll;
}
#quote-b > .section-inner .section-content {
  padding-top: 100px;
  padding-bottom: 80px;
  color: #fff;
}
#quote-b > .section-inner .section-content .quote-text > .quote-icon > i {
  color: #00abcd;
  padding-bottom: 20px;
}
#quote-b > .section-inner .section-content .quote-text > h2 {
  font-size: 40px;
}
#quote-b > .section-inner .section-content .quote-text > h2.quote-by {
  color: #00abcd;
}
#quote-c > .section-inner .section-content {
  padding-top: 100px;
  padding-bottom: 80px;
  color: #fff;
}
#quote-c > .section-inner .section-content .quote-text > .quote-icon > i {
  color: #00abcd;
  padding-bottom: 20px;
}
#quote-c > .section-inner .section-content .quote-text > h2 {
  font-size: 40px;
}
#quote-c > .section-inner .section-content .quote-text > h2.quote-by {
  color: #00abcd;
}
#womens-golf-banner {
  background-image: url("../img/womens-day/womens-cta.jpg");
  background-attachment: scroll;
}
#womens-golf-banner .quote-size{
    line-height: 1.3;
}
#womens-golf-banner > .section-inner .section-content {
  padding-top: 100px;
  padding-bottom: 80px;
  color: #fff;
}
#womens-golf-banner > .section-inner .section-content .quote-text > .quote-icon > i {
  color: #00abcd;
  padding-bottom: 20px;
}
#womens-golf-banner > .section-inner .section-content .quote-text > h2 {
  font-size: 40px;
}
#womens-golf-banner > .section-inner .section-content .quote-text > h2.quote-by {
  color: #00abcd;
}

#coming-soon-banner {
  background-image: url("../img/coming-soon.jpg");
  background-attachment: scroll;
}
#coming-soon-bannerr .quote-size{
    line-height: 1.3;
}
#coming-soon-banner > .section-inner .section-content {
  padding-top: 100px;
  padding-bottom: 80px;
  color: #fff;
}
#coming-soon-banner > .section-inner .section-content .quote-text > .quote-icon > i {
  color: #00abcd;
  padding-bottom: 20px;
}
#coming-soon-banner > .section-inner .section-content .quote-text > h2 {
  font-size: 40px;
}
#coming-soon-banner > .section-inner .section-content .quote-text > h2.quote-by {
  color: #00abcd;
}


@media (min-width: 1024px) {
.section.womens-golf-day > .section-inner .section-content {
    padding-top: 70px;
    padding-bottom: 0px;
}
}



/*---------------------------------------------------------------------*/
/*  10. KEEP IN TOUCH SECTION
/*---------------------------------------------------------------------*/
#keep-in-touch {
  background-image: url("../img/bg-keep-in-touch.jpg");
  background-attachment: scroll;
}
#keep-in-touch > .section-inner .section-content .section-title {
  color: #b7ada4;
}
#keep-in-touch > .section-inner .section-content .section-title > .section-line {
  background-color: #b7ada4;
}
#keep-in-touch .social-icon-item > a {
  color: #b7ada4;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
}
#keep-in-touch .social-icon-item > a:hover {
  color: #00abcd;
  cursor: pointer;
}
#keep-in-touch .social-icon-item > a:hover .social-icon > i {
  color: #00abcd;
}
#keep-in-touch .social-icon-item > a .social-icon > i {
  color: #b7ada4;
  font-size: 3.5em;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#keep-in-touch .social-icon-item.not-right-column.top-column {
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  #keep-in-touch .social-icon-item.not-right-column.top-column {
    margin-bottom: 0px;
  }
}
#keep-in-touch .social-icon-item.not-right-column {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  #keep-in-touch .social-icon-item.not-right-column {
    margin-bottom: 0px;
  }
}


/*---------------------------------------------------------------------*/
/*  11. MEET THE TEAM SECTION
/*---------------------------------------------------------------------*/
#meet-the-team .team-item > .team-element {
  position: relative;
  display: block;
  overflow: hidden;
}
#meet-the-team .team-item > .team-element:hover > .team-inner {
  display: block;
  cursor: pointer;
}
#meet-the-team .team-item > .team-element:hover > img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#meet-the-team .team-item > .team-element > .team-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none;
  background-color: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
}
#meet-the-team .team-item > .team-element > .team-inner > .team-detail {
  text-align: center;
  display: table;
  width: 100%;
  height: 100%;
}
#meet-the-team .team-item > .team-element > .team-inner > .team-detail > .team-content {
  display: table-cell;
  vertical-align: middle;
  padding: 0 15px;
  color: #fff;
  letter-spacing: 0.2em;
}
#meet-the-team .team-item > .team-element > .team-inner > .team-detail > .team-content > h4 {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 300;
}
#meet-the-team .team-item > .team-element > .team-inner > .team-detail > .team-content > p {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
}
#meet-the-team .team-item > .team-element > img {
  display: inline-block;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#meet-the-team .team-item.not-right-column.top-column {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  #meet-the-team .team-item.not-right-column.top-column {
    margin-bottom: 0px;
  }
}
#meet-the-team .team-item.not-right-column {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #meet-the-team .team-item.not-right-column {
    margin-bottom: 0px;
  }
}


/*---------------------------------------------------------------------*/
/*  12. TESTIMONIALS SECTION
/*---------------------------------------------------------------------*/
#testimonials {
  background-image: url("../img/bg-testimonial.jpg");
  background-attachment: scroll;
}
#testimonials > .section-inner .section-content .section-title {
  color: #b7ada4;
}
#testimonials > .section-inner .section-content .section-title > .section-line {
  background-color: #b7ada4;
}


/*---------------------------------------------------------------------*/
/*  13. COMING SOON SECTION
/*---------------------------------------------------------------------*/
#coming-soon {
  background-image: url("../img/coming-soon-qld.jpg");
  background-attachment: scroll;
}
#coming-soon > .section-inner .section-content .section-title {
  color: #b7ada4;
}
#coming-soon > .section-inner .section-content .section-title > .section-line {
  background-color: #b7ada4;
}
#coming-soon > .section-inner .section-content .countdown-form {
  margin-top: 60px;
}
@media (min-width: 360px) {
  #coming-soon > .section-inner .section-content .countdown-form {
    margin-top: 70px;
  }
}
#coming-soon > .section-inner .section-content .countdown-form form > .input-group > span.input-group-btn > .btn {
  padding-top: 11px;
  padding-bottom: 10px;
}
#coming-soon > .section-inner .section-content .countdown-text {
  margin-top: 50px;
}
#coming-soon > .section-inner .section-content .countdown-text > p {
  color: #b7ada4;
}


/*---------------------------------------------------------------------*/
/*  14. CONTACT US SECTION
/*---------------------------------------------------------------------*/
#contact-us {
  background-image: url("../img/bg-contact-us.jpg");
  background-attachment: scroll;
}
#contact-us > .section-inner .section-content .section-title {
  color: #fff;
}
#contact-us > .section-inner .section-content .section-title > .section-line {
  background-color: #b7ada4;
}
#contact-us > .section-inner .section-content .content-message {
  color: #fff;
  background-color: #00abcd;
  margin-bottom: 50px;
  padding: 30px;
}
#contact-us > .section-inner .section-content .form-group .input-group {
  width: 100%;
}
#contact-us > .section-inner .section-content .form-group label {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#contact-us > .section-inner .section-content .form-group label.error {
  position: absolute;
  top: -26px;
  right: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}
#contact-us > .section-inner .section-content .form-group input,
#contact-us > .section-inner .section-content .form-group textarea {
  color: #231f20;
  font-weight: 300;
  letter-spacing: 0.1em;
  border-radius: 0px;
  border-left-color: #00abcd;
}
#contact-us > .section-inner .section-content .form-group textarea {
  height: 137px;
}
#contact-us > .section-inner .section-content .form-group button {
  width: 100%;
  margin-top: 30px;
  border-radius: 0px;
}
#contact-us > .section-inner .section-content .form-group span {
  color: #fff;
  background-color: #00abcd;
  border-radius: 0px;
  border-color: #00abcd;
}
#contact-us > .section-inner .section-content .form-group span > i {
  width: 20px;
}
#contact-us > .section-inner .section-content .social-icon-text > h2 {
  display: inline-block;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  background-color: #00abcd;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  border: 1px solid #0089ad;
  margin-top: 50px;
}
#contact-us > .section-inner .section-content .social-icon-text > h4 {
  color: #b7ada4;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 30px;
}
#contact-us > .section-inner .section-content .social-icon-text > ul.social-icon-list {
  margin-top: 20px;
}
#contact-us > .section-inner .section-content .social-icon-text > ul.social-icon-list > li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #c9c9c9;
  font-size: 16px;
  text-align: center;
  border: 1px solid #c9c9c9;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#contact-us > .section-inner .section-content .social-icon-text > ul.social-icon-list > li a:hover {
  border-color: #ffffff;
}


/*---------------------------------------------------------------------*/
/*  14.A CONTACT SECTION
/*---------------------------------------------------------------------*/
#contact {
  /*background-image: url("../img/bg-contact-us.jpg");
  background-attachment: scroll;*/
}
#contact > .section-inner .section-content .section-title {
  color: #fff;
}
#contact > .section-inner .section-content .section-title > .section-line {
  background-color: #b7ada4;
}
#contact > .section-inner .section-content .content-message {
  color: #fff;
  background-color: #00abcd;
  margin-bottom: 50px;
  padding: 30px;
}
#contact > .section-inner .section-content .form-group .input-group {
  width: 100%;
}
#contact > .section-inner .section-content .form-group label {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#contact > .section-inner .section-content .form-group label.error {
  position: absolute;
  top: -26px;
  right: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}
#contact > .section-inner .section-content .form-group input,
#contact > .section-inner .section-content .form-group textarea {
  color: #231f20;
  font-weight: normal;
  letter-spacing: 0;
  border-radius: 0px;
  border-left-color: #00abcd;
}
#contact > .section-inner .section-content .form-group textarea {
  height: 137px;
}
#contact > .section-inner .section-content .form-group button {
  width: 100%;
  margin-top: 30px;
  border-radius: 0px;
}
#contact > .section-inner .section-content .form-group span {
  color: #fff;
  background-color: #00abcd;
  border-radius: 0px;
  border-color: #00abcd;
}
#contact > .section-inner .section-content .form-group span > i {
  width: 20px;
}
#contact > .section-inner .section-content .social-icon-text > h2 {
  display: inline-block;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  background-color: #00abcd;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  border: 1px solid #0089ad;
  margin-top: 50px;
}
#contact > .section-inner .section-content .social-icon-text > h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 30px;
}
#contact > .section-inner .section-content .social-icon-text > ul.social-icon-list {
  margin-top: 20px;
}
#contact > .section-inner .section-content .social-icon-text > ul.social-icon-list > li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border: 1px solid #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#contact > .section-inner .section-content .social-icon-text > ul.social-icon-list > li a:hover {
  border-color: #ffffff;
}

/*---------------------------------------------------------------------*/
/*  14.B BOOK NOW SECTION
/*---------------------------------------------------------------------*/
#book-now {
  background-image: url("../img/bg-book-now.jpg");
  background-attachment: scroll;
}
#book-now > .section-inner .section-content .section-title {
  color: #fff;
}
#book-now > .section-inner .section-content .section-title > .section-line {
  background-color: #b7ada4;
}
#book-now > .section-inner .section-content .content-message {
  color: #fff;
  background-color: #00abcd;
  margin-bottom: 50px;
  padding: 30px;
}
#book-now > .section-inner .section-content .form-group .input-group {
  width: 100%;
}
#book-now > .section-inner .section-content .form-group label {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#book-now > .section-inner .section-content .form-group label.error {
  position: absolute;
  top: -26px;
  right: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}
#book-now > .section-inner .section-content .form-group input,
#book-now > .section-inner .section-content .form-group textarea {
  color: #231f20;
  font-weight: normal;
  letter-spacing: 0;
  border-radius: 0px;
  border-left-color: #00abcd;
}
#book-now > .section-inner .section-content .form-group textarea {
  height: 137px;
}
#book-now > .section-inner .section-content .form-group button {
  width: 100%;
  margin-top: 30px;
  border-radius: 0px;
}
#book-now > .section-inner .section-content .form-group span {
  color: #fff;
  background-color: #00abcd;
  border-radius: 0px;
  border-color: #00abcd;
}
#book-now > .section-inner .section-content .form-group span > i {
  width: 20px;
}
#book-now > .section-inner .section-content .social-icon-text > h2 {
  display: inline-block;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  background-color: #00abcd;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  border: 1px solid #0089ad;
  margin-top: 50px;
}
#book-now > .section-inner .section-content .social-icon-text > h4 {
  color: #b7ada4;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 30px;
}
#book-now > .section-inner .section-content .social-icon-text > ul.social-icon-list {
  margin-top: 20px;
}
#book-now > .section-inner .section-content .social-icon-text > ul.social-icon-list > li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #c9c9c9;
  font-size: 16px;
  text-align: center;
  border: 1px solid #c9c9c9;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#book-now > .section-inner .section-content .social-icon-text > ul.social-icon-list > li a:hover {
  border-color: #ffffff;
}

/*---------------------------------------------------------------------*/
/*  15. MAP
/*---------------------------------------------------------------------*/
#map {
  background-color: #f2f4f4;
}
#map #google-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-top: 5px solid #fff;
}
#map #google-container #cd-google-map {
  position: relative;
  -webkit-transition: all ease 0.55s;
  transition: all ease 0.55s;
}


/*---------------------------------------------------------------------*/
/*  16. FOOTER
/*---------------------------------------------------------------------*/
footer.footer {
  color: #888;
  background-color: #1c1c1c;
  border-top: 2px solid #00abcd;
}
footer.footer a {
  color: #c9c9c9;
}
footer.footer a:hover {
  color: #ffffff;
}
footer.footer #footer {
  background-color: #1c1c1c;
  padding-top: 50px;
  padding-bottom: 20px;
}
footer.footer #footer .footer-column.not-right-column {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  footer.footer #footer .footer-column.not-right-column {
    margin-bottom: 0px;
  }
}
footer.footer #footer .footer-column .footer-text {
  text-align: center;
}
@media (min-width: 768px) {
  footer.footer #footer .footer-column .footer-text {
    text-align: left;
  }
}
footer.footer #footer h4 {
  color: #c9c9c9;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
}
footer.footer #footer p {
  font-size: 14px;
  margin-bottom: 20px;
}
footer.footer #footer ul.icon-list > li {
  padding-bottom: 10px;
}
footer.footer #footer ul.icon-list > li > i {
  padding-right: 10px;
}
footer.footer #footer ul.social-icon-list > li {
  padding-bottom: 10px;
}
footer.footer #footer ul.social-icon-list > li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #c9c9c9;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
footer.footer #footer ul.social-icon-list > li a:hover {
  border-color: #ffffff;
}
footer.footer #footer .newsletter-form input {
  background-color: transparent;
  border-color: #888;
}
footer.footer #copyright {
  background-color: #161616;
  padding: 15px 0px;
  border-top: 1px solid rgba(114, 114, 114, 0.25);
}
footer.footer #copyright p {
  font-size: 13px;
  text-align: center;
  margin: 0px;
}

@media (min-width: 768px) {
  footer.footer #copyright p {
    text-align: left;
  }
}
.text-success {
    color: #00abcd;
}
.bText {
  color: #b7ada4;
}
.bHead {
  color: #00abcd;
}
row {
  opacity: 1;
}
.big-swing-brand {
    width: 280px;
	height: 37px;
  }

@media (max-width: 390px) {
  .big-swing-brand {
    width: 224px;
	height: 30px;
  }
}

@media (max-width: 991px) {
  .left-form-pad {
    padding-right: 0px;
  }
}

@media (max-width: 991px) {
  .right-form-pad {
    padding-left: 0px;
  }

  
}
.who-we-are-text.active{
	color:#00ABCD;
}
.who-we-are-text{
  border-bottom: 1px solid #000;

  padding-top: 3px;
  position: relative;
}
.booknow{
  position: absolute;
top: 20%;
right: 20px;
}
.btn.btn-rj.booknow {
    background-color: #222;
    color: #fff;
    border-color: #0089ad;
    text-transform: uppercase;
}
.btn.btn-rj.booknow:hover {
    background-color: #00abcd;
    color: #fff;
    border-color: #0089ad;
    text-transform: uppercase;
}
.active .btn.btn-rj.booknow {
    background-color: #00abcd;
    color: #fff;
    border-color: #0089ad;
    text-transform: uppercase;
}
.active .btn.btn-rj.booknow:hover {
    background-color: #00abcd;
    color: #fff;
    border-color: #000;
    text-transform: uppercase;
}
.mt30{
    margin-top: 30px;
}
.pt0{
  padding-top: 0px !important;
}

.v-center{
    vertical-align: text-bottom;
}
.img-center{
  margin: 0 auto;
}
#book-now {
    background-image: url("../img/bg-book-now.jpg");
    background-attachment: fixed;
}
.bg-kew{
  background: url('/assets/img/Kew/coaching-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg-coaching{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.white{
  color: #fff !important;
}
.contact a {
  margin-left: 5px;
}
.overlay {
    content: '';
    position: absolute;
    background-color: #000;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    zoom: 1;
    opacity: 0.7;
    filter: alpha(opacity=80);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
}
.iframe-cover{
  content: '';
    position: absolute;
    background-color: #000;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    zoom: 1;
    opacity: 0;
    
}
.section-line {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: #231f20;
}
.mb20{
  margin-bottom: 20px;
}
.mb30{
  margin-bottom: 30px;
}
.mb50{
  margin-bottom: 50px;
}

.navbar.navbar-fixed-top .navbar-nav > li.spec {
    background-color: #000;
}

.navbar.navbar-fixed-top .navbar-nav > li.spec > a {
      color: #bbb;
}
.about-top-bg{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 660px;
}
@media (max-width: 768px) {
 .about-top-bg{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 260px;
}
.booknow{
  position: initial;
top: 20%;
right: 20px;
}
.who-we-are-text{
padding: 20px 0px;
}
}
.fa-right-offset{
    left: 35px;
    top: 10px;
}
 .fa-left-offset{
    left: -35px;
    top: 10px;
}
.fa-top-offset{
    left: 70px;
    top: 30px;
}
.fa-bottom-offset{
      top: 30px;
}
.pt30{
  padding-top: 30px;
  position: relative;
}
.ptb-spec{
    padding-bottom: 60px;
    padding-top: 14px;
}
#quote-b .quote-size{
      line-height: 1.3;
}
.btn.btn-rj {
    background-color: #00abcd;
    color: #fff;
    border-color: #0089ad;
    text-transform: none;
}
.pricing-table.style-six  .plan-footer a.btn {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    border: none;
}
.pricing-table.style-six  .plan-footer {
    padding: 0px;
    background-color: #00abcd;
}
.plan-title{
  overflow-x: hidden;
}
.btn.btn-rj.booknow {
    background-color: #222;
    color: #fff;
    border-color: #111;
    text-transform: uppercase;
}
.navbar.navbar-fixed-top .navbar-nav > li.spec a {
    background-color: #231f20;
    color: #fff;
}

.slider-image{
  position: absolute;
  bottom: 40px;;
  right:40px;
}
.btn-spacer{
  display: inline-block;
  width:30px;
}
.white-bg{
  background-color: #fff;
}



/* */
table, th, td {
  border: 1px solid black;
}

.member-det-h {
  min-height: 36px;
}

@media (min-width: 768px) {
  .pb-50-sm {
    padding-bottom: 50px;
  }
}
.testimonials .item{
  margin: 0 10px;
}


#membership-section .frequent-player .pricing-column .plan-title h2 {
  font-size: 24px;
  letter-spacing: 2px;
}

#membership-section .frequent-player .pricing-column .plan-title .pricing-box span.price {
  font-size: 75px;
}

#membership-section .lifetime-player .pricing-column .plan-title .pricing-box span.price {
  font-weight: 400;
}

@media (max-width: 768px) {
  #membership-section .lifetime-player h1 {
    text-align: center !important;
  }
  #membership-section .frequent-player h1 {
    text-align: center !important;
  }

  #membership-section .lifetime-player p {
    text-align: center !important;
  }
  #membership-section .frequent-player p {
    text-align: center !important;
  }
}

#membership-section .lifetime-player h1 {
    text-align: left;
    font-weight: 700;
    font-size: 34px;
    margin-top: 5px;
}
#membership-section .frequent-player h1 {
  text-align: left;
  font-weight: 700;
  font-size: 34px;
  margin-top: 5px;
}

#membership-section .lifetime-player p {
  text-align: left;
  color: black;
}
#membership-section .frequent-player p {
  text-align: left;
  color: black;
}

@media (max-width: 991px) {
  #membership-section ul {
    padding-bottom:20px;
  }
}

.no-row {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 767px) {
  .lifetime-player {
    margin-bottom: 20px;
  }
}

#women-booking .booking-location h4 {
  color: #fff;
}

#women-booking .booking-location a {
  padding-right: 10px;
  margin-top: 5px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

#women-booking .form-group textarea, .form-group input {
    color: #231f20;
    font-weight: normal;
    letter-spacing: 0;
    border-radius: 0px;
    border-left-color: #00abcd;
}

#women-booking > .section-inner .section-content .section-title {
  color: #fff;
}
#women-booking > .section-inner .section-content .section-title > .section-line {
  background-color: #b7ada4;
}
#women-booking > .section-inner .section-content .content-message {
  color: #fff;
  background-color: #00abcd;
  margin-bottom: 50px;
  padding: 30px;
}
#women-booking > .section-inner .section-content .form-group .input-group {
  width: 100%;
}
#women-booking > .section-inner .section-content .form-group label {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#women-booking > .section-inner .section-content .form-group label.error {
  position: absolute;
  top: -26px;
  right: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}
#women-booking > .section-inner .section-content .form-group input,
#women-booking > .section-inner .section-content .form-group textarea {
  color: #231f20;
  font-weight: normal;
  letter-spacing: 0;
  border-radius: 0px;
  border-left-color: #00abcd;
}

#women-booking > .section-inner .section-content .form-group textarea {
  height: 137px;
}
#women-booking > .section-inner .section-content .form-group button {
  width: 50%;
  margin-top: 30px;
  border-radius: 0px;
}
#women-booking > .section-inner .section-content .form-group span {
  color: #fff;
  background-color: #00abcd;
  border-radius: 0px;
  border-color: #00abcd;
}
#women-booking > .section-inner .section-content .form-group span > i {
  width: 20px;
}
#women-booking > .section-inner .section-content .social-icon-text > h2 {
  display: inline-block;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  background-color: #00abcd;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  border: 1px solid #0089ad;
  margin-top: 50px;
}
#women-booking > .section-inner .section-content .social-icon-text > h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 30px;
}
#women-booking > .section-inner .section-content .social-icon-text > ul.social-icon-list {
  margin-top: 20px;
}
#women-booking > .section-inner .section-content .social-icon-text > ul.social-icon-list > li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border: 1px solid #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#women-booking > .section-inner .section-content .social-icon-text > ul.social-icon-list > li a:hover {
  border-color: #ffffff;
}

#women-booking .g-recaptcha {
  width:50%;
  display: block;
  margin: 0 auto;
  padding-top: 20px;
}

#women-booking .form-group.form-group-bottom {
  text-align: center;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.margin-top-20 {
  margin-top: 20px;
}

a.btn.btn-outline {
    border: 1px solid #00abcd;
    color: #00abcd;
}
a.btn.btn-outline:hover {
    border: 1px solid #00abcd;
    background-color: #00abcd;
    color:#fff;
}
a.btn.btn-outline.active {
    border: 1px solid #00abcd;
    background-color: #00abcd;
    color:#fff;
}
a.btn.btn-outline.disabled{
    border: 1px solid #aaa;
    background-color: #aaa;
    color:#666;

}

.mapable-locations {
    cursor: pointer;
}

@media (max-width: 768px) {
  .g-recaptcha{
    transform: scale(0.77);
   -webkit-transform: scale(0.77);
   transform-origin: 0 0;
   -webkit-transform-origin: 0 0;
  }

  #women-booking .g-recaptcha {
    padding-top: 20px;
    margin: initial;
  }

  #women-booking > .section-inner .section-content .form-group button {
    width: 60%;
  }

  #big-swing-golf.womens-golf-day .section-inner .section-content .page-scroll {
    text-align: center;
  }

  
}

@media (max-width: 1199px) and (min-width: 768px) {
  #big-swing-golf.womens-golf-day .funny-boxes-text h4 {
    min-height: 79px;
  }
}

@media (min-width: 1200px) {
  .section.womens-golf-day .section-inner .section-content .womensgolf-logo {
    margin-top: 31px;
  }
}

@media (max-width: 1200px) {
  .section.womens-golf-day .section-inner .section-content .womensgolf-logo {
    margin-top: 13px;
  }
}

@media (max-width: 558px) {
  #women-booking .section-inner .section-content .booking-location h4 {
    min-height: 38px;
  }
}

@media (max-width: 351px) {
  #women-booking .section-inner .section-content .booking-location h4 {
    min-height: 57px;
  }
}

.nav-tabs li{
  display: inline-block;

}
.tabs .tab{
  display: none;
}
.tabs .tab.active{
  display: block;
}

#locations .loc-tab h3 {
  font-size: 30px;
}

#locations .loc-tab span {
  font-size: 16px;
}
#locations .loc-tab {
  background-color: #00abcd;
  vertical-align: middle;
  color: #fff;
  font-family: Titular-Heavy, sans-serif;
  font-style: italic;
  font-weight: 300;
  margin-left: 0px;
  margin-right: 0px;
  padding: 0px 20px;
  letter-spacing: 0.1em;
  min-height: 63px;
  /* width: 16.166667%; */
  text-align: center;
  border-right: 2px solid #0189AD; 
  cursor: pointer;
}
#locations .loc-tab:last-child{
  border-right: none;
}

#locations .loc-tab:hover,
#locations .loc-tab:active,
#locations .loc-tab:focus,
#locations .loc-tab .active {
  background-color: #0189AD;
}

/* #locations .loc-tab span{
  font-size: 18px;
} */

#locations .loc-tab h2{
  margin-bottom: 0.2rem;
}

@media (max-width: 576px){
  #locations .loc-tab {
    padding: 0px;
    min-height: 49px;
  }
  #locations .loc-tab h2{
    font-size: 22px;
    margin-bottom: 0px;
    margin-top: 1px;
  }

  #locations .loc-tab span{
    font-size: 15px;
  }

  /* #locations .loc-tab */
  .single-state {
    margin-top:12px !important;
  }
}

.tab-row {
  padding-left: 15px;
  padding-right: 15px;
}

.single-state {
  margin-top:12px;
}


/* Sponsors */

#sponsors {
  background-color: #fff;
}

/* .sponsor-item {
} */

.sponsor-item .sponsor-title {
  font-size: 20px;
  min-height: 52px;
}

