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

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: "Roboto", sans-serif;
  color: #3d3536;
  background-color: white;
}

body, html {
  /* important */
  height: 100%;
}

p {
  margin-bottom: 25px;
}

a {
  color: #b4d7a8;
  text-decoration: none;
}

footer {
  background-color: #000;
  padding: 25px;
  height: 200px;
  color: #666;
}

dl {
  margin-top: 25px;
}

@media only screen and (min-width: 768px) {
  dl {
    margin-top: 0px;
  }
}

dt {
  clear: left !important;
  float: left !important;
  width: 160px;
}

h2, strong {
  font-weight: bold;
}

small {
    font-size: 80%;
}

abbr[title] {
  cursor: default !important;
  text-decoration: none !important;
}

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

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

.tt-navbar {
  border: 0px;
}

.navbar-nav {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.tt-navbar li a {
  line-height: normal;
  color: #8e7d7f !important;
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 35px;
}

.tt-navbar li {
  border-bottom: 1px solid #453c3d;
}

.tt-navbar li:last-of-type {
  border-bottom: none;
}

.tt-navbar a i {
  text-align: center;
  width: 30px;
  color: #fff;
}

.navbar-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #000;
  height: 3px;
}

.navbar-inverse .navbar-toggle {
  border: 0px;
}

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background: transparent !important;
}

@media only screen and (min-width: 768px) {
  .navbar-header {
    background: none;
    box-shadow: none;
  }

  .tt-navbar {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .tt-navbar li {
    border-bottom: none;
  }

  .tt-navbar li a {
    line-height: 40px;
    font-weight: bold;
    text-transform: uppercase;
    color: #3d3536 !important;
  }

  .tt-navbar li a:hover {
    border-top: 1px solid #ffcc00;
    color: #000 !important;
  }

  .tt-navbar a i {
    margin-right: 7px;
    width: auto;
    color: #000;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-main-content a {
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  -webkit-animation-delay: 0.8s; /* Safari 4.0 - 8.0 */
  animation-delay: 0.8s;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/cd-background-1.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/cd-background-2.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/cd-background-3.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/cd-background-4.jpg");
}
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
  }
}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg h3 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 15px;
}

.cd-scrolling-bg.cd-color-1 {
  background-color: #3d3536;
  color: #a6989a;
}
.cd-scrolling-bg.cd-color-1 a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.cd-scrolling-bg.cd-color-1 a:hover {
  text-decoration: none;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #99a478;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #b4d7a8;
  color: #3d3536;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 8em 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}

.cd-container .row {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.cd-container .row:last-of-type {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
}


[data-parent="gMap"] iframe {
  margin-top: 15px;
  width: 100%;
  height: 300px;
}

.navbar-brand-acn {
  float: left;
  padding: 15px 15px;
  line-height: 20px;
  font-size: 12px
}

@media (min-width: 768px) {
  .navbar-brand-acn {
    float: none;
    display: block;
    padding: 0px
  }
}

.btn-ceil {
  background: none;
  margin: 0;
  padding: 0px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 70px;
  height: 70px;
  z-index: 100;
  display: none;
  color: #ffffff;
  background-color: #000;
  background: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 40px;
  cursor: pointer;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  .btn-ceil {
    width: 100px;
    height: 100px;
    font-size: 60px;
  }
}

.btn-ceil:hover {
  background-color: transparent;
}
