body {
  color: #000;
  font-size: 18px;
  line-height: 1.8em;
  font-family: "pragmatica",sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  background: #fff;
  -webkit-font-smoothing: antialiased
}

body, html { height: 100%; }
body.nav-opened,
html.nav-opened {
  overflow: hidden;
}
/* ---------------------------------------------------------------- */

* {
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
a, a:link, a:visited { color: #659439; text-decoration: underline; }
a:focus, a:hover { color: #000; text-decoration: none; }


/**
 * Button Style
 */
.btn, .btn:link, .btn:visited {
  display: inline-block;
  color: #659439;
  text-transform: uppercase;
  text-decoration: none;
  border: #659439 solid 1px;
  border-radius: 0;
  padding: 20px 40px;
}
.btn:hover, .btn:active {
  color: #000;
}


.readmore-link {
  text-transform: uppercase;
}

/* force word break */
/* .word-break {
  display: block;
} */


.container {
  max-width: 1170px;
  padding: 0 30px;
}
.page-padding {
  padding: 0 30px;
}


/* viewports visibility */
.visible-mobile {
  display: block;
}
.visible-desktop {
  display: none;
}

.brand-green--color {
  color: #659439;
}


/**
 * Arrow Slide Animation
 */
@keyframes arrowslide {
  0%, 20%, 50%, 80%, to {
    transform: translate(0);
    -webkit-transform: translate(0);
    -o-transform: translate(0);
    -moz-transform: translate(0);
  }
  40% {
    transform: translate(-8px);
    -webkit-transform: translate(-8px);
    -o-transform: translate(-8px);
    -moz-transform: translate(-8px);
  }
  60% {
    transform: translate(-6px);
    -webkit-transform: translate(-6px);
    -o-transform: translate(-6px);
    -moz-transform: translate(-6px);
  }
}
.arrow-animate {
  display: block;
  -webkit-animation-name: arrowslide;
          animation-name: arrowslide;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  animation-iteration-count: infinite;

  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
/* End arrow animation */


/* headings */
h1 {
  font-family: "harfang-pro",serif;
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 60px;
}
h2 {
  color: #659439;
  font-size: 34px;
}
.section-title {
  text-align: center;
  margin-bottom: 80px;
}

/* top */
#top {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  background: white;
}
.logo {
  max-width: 215px;
  width: 100%;
  margin-left: 40px;
}


/* page banner */
.page-banner {
  position: relative;
  height: 385px;
  background: url('https://dummyimage.com/1600x1200/000/fff.jpg') repeat-x center center;
  margin-bottom: 140px;
}
.page-banner .container {
  position: relative;
  height: 100%;
}
.page-banner-info {
  color: #fff;
  position: absolute;
  left: 40px;
  bottom: 50px;
}


/* nav */
/* menu handle - hamburger animation */
#menu-handle {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -10px;

  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
#menu-handle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#menu-handle:hover span {
  background: #659439;
  transition: none;
}
#menu-handle span:nth-child(1) {
  top: 0px;
}
#menu-handle span:nth-child(2),
#menu-handle span:nth-child(3) {
  top: 8px;
}
#menu-handle span:nth-child(4) {
  top: 16px;
}
#menu-handle.nav-active span:nth-child(1),
#menu-handle.nav-active span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}
#menu-handle.nav-active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menu-handle.nav-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-active {
  width: 100%;
  overflow: hidden;
  position: fixed;
}
#main-nav {
  overflow: auto;
  height: 100%;
  width: 100%;
  font-family: "harfang-pro",serif;
  font-weight: 300;
  font-size: 33px;
  text-align: center;
  background: #fff;
  padding-bottom: 65px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: opacity .3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.nav-active #main-nav {
  opacity: 1;
  visibility: visible;
}
#main-nav ul {
  width: 100%;
  list-style-type: none;
  padding: 50px 0 0;
  margin: 0 auto;
}
#main-nav li {
  padding: 0 0 30px;
}
#main-nav a,
#main-nav a:link,
#main-nav a:visited {
  display: inline-block;
  color: #252524;
  text-decoration: none;
}
#main-nav a:hover,
#main-nav a:active {
  color: #659439;
  text-decoration: none;
}


/* main banner */
.main-banner {
  position: relative;
  height: 100%;
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 60px;
}
.main-banner--executivesuites {
  background-image: url('../images/main-banner-executivesuites.jpg');
}
.main-banner--officesforrent {
  background-image: url('../images/main-banner-offices.jpg');
}
.main-banner--virtualoffice {
  background-image: url('../images/main-banner-virtual-offices.jpg');
}
.main-banner--location {
  background-image: url('../images/main-banner-location.jpg');
}
.main-banner--contact {
  background-image: url('../images/main-banner-contact.jpg');
}


/* heading info */
.heading-info {
  display: inline-block;
  color: #000;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  left: 30px;
  transform: translateY(-50%);
  z-index: 1;
}
.heading-info--title {
  padding: 30px 30px 20px;
}
.heading-info h1 {
  display: block;
  font-size: 28px;
  margin: 0;
}
.heading-info-icon {
  display: block;
  font-size: 30px;
  margin-bottom: 20px;
}
.heading-info--description {
  color: #fff;
  font-size: 18px;
  text-align: center;
  background: #669539;
  padding: 20px;
}

/* heading info PLAIN */
.main-banner--LIGHT .heading-info {
  max-width: 350px;
  color: #fff;
  background: none;
}
.main-banner--LIGHT .heading-info h1 {
  font-size: 34px;
}


/* slick slider custom overrides */
.slick-slide img {
  width: 100%;
}


/* homepage slider */
.homepage-main-slider {
  position: relative;
}
.homepage-main-slider--info {
  left: 40px;
  bottom: 60px;
}


/* main slider */
.slider {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
.slider-btn {
  width: 50%;
  height: 100%;
  text-indent: -9999em;
  position: absolute;
  top: 0;
  z-index: 1;
  opacity: .5;
}
.slider-btn-prev {
  left: 0;
  /* background: green; */
  cursor: url(../images/arrow-prev.png) 0 22, auto;
}
.slider-btn-next {
  right: 0;
  /* background: blue; */
  cursor: url(../images/arrow-next.png) 57 22, auto;
}

/* homepage services cta's */
.homepage-services-cta {
  overflow: hidden;
  max-width: 945px;
  text-align: center;
  margin: 40px auto 140px;
}
.homepage-services-cta-item {
  width: 75%;
  margin: 0 auto 80px;
}
.homepage-services-cta-item:last-child {
  margin-bottom: 0;
}
.homepage-services-cta-item img {
  height: 160px;
  margin-bottom: 30px;
}
.homepage-services-cta-item h3 {
  font-size: 19px;
  margin-bottom: 42px;
}
.homepage-services-cta-item h3 span {
  display: block;
  font-size: 15px;
  padding-top: 20px;
}


/* Google maps */
#map-mobile,
#map-desktop {
  width: 100%;
  height: 450px;
  background-color: grey;
}


/* content blocks */
.content-blocks {
}
.content-blocks--row {
}
.content-blocks--img,
.content-blocks--info {
}
.content-blocks--img {
}
.content-blocks--location {
}
.content-blocks--location-address {
  display: table;
  margin: 0 auto 20px;
}
.content-blocks--location-address span {
  display: block;
  vertical-align: middle;
}
.content-blocks--location .icon-marker,
.content-blocks--location-mobile .icon-marker {
  color: #659439;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.content-blocks--info {
  text-align: center;
  padding: 80px 30px;
}
.content-blocks--info h2 {
  font-family: "harfang-pro",serif;
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 40px;
}
.content-blocks--info ul {
  display: inline-block;
  text-align:left;
}
.content-blocks--location-mobile .content-blocks--info {
  padding-top: 0;
  padding-bottom: 40px;
}
.content-blocks--location-mobile .content-blocks--location-address {
  margin-bottom: 0;
}


/* testimonials */
.testimonials {
  position: relative;
  margin: 120px auto 80px;
}
.testimonials h1 {
}
.testimonials-quote-left,
.testimonials-quote-right {
  color: #dcdde1;
  font-size: 110px;
  position: absolute;
  z-index: -1;
}
.testimonials-quote-left {
  top: -60px;
  left: 0;
}
.testimonials-quote-right {
  bottom: 30px;
  right: 0;
}
#testimonial-slider {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
#testimonial-slider .slick-dots {
    display: block;
    width: 100%;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 35px 0 0;
}
#testimonial-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
#testimonial-slider .slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  color: transparent;
  border: 0;
  outline: none;
  border: solid #dcdde1 3px;
  background: none;
  padding: 5px;
  cursor: pointer;
}
#testimonial-slider .slick-dots li.slick-active button {
  background: #dcdde1;
}

.testimonial-item {
  text-align: center;
}
.testimonial-info {
  margin-bottom: 40px;
}
.testimonial-author {
  display: table;
  width: 75%;
  margin: 0 auto;
}
.testimonial-author-img {
  display: table-cell;
  width: 20%;
  text-align: right;
}
.testimonial-author-img img {
  width: 54px;
  height: 54px;
  -moz-border-radius: 27px;
  -webkit-border-radius: 27px;
  border-radius: 27px;
}
.testimonial-author-title {
  display: table-cell;
  line-height: 1.4em;
  vertical-align: middle;
  text-align: center;
  /* padding-left: 20px; */
}


/* join us and call to action bar */
.joinus-bar,
.cta-bar {
  color: #fff;
  text-align: center;
  background: #659439;
  padding: 60px 0;
}
.joinus-bar-title,
.joinus-bar-description,
.joinus-bar-arrow {
  margin-bottom: 30px;
}
.joinus-bar-title,
.cta-bar h1 {
  font-size: 52px;
  padding: 0;
}
.joinus-bar-description {
}
.joinus-bar-arrow {
  color: #fff;
  font-size: 40px;
  margin: 0;
}
.joinus-bar-arrow:link,
.joinus-bar-arrow:visited,
.joinus-bar-arrow:hover,
.joinus-bar-arrow:active {
  color: #fff;
  text-decoration: none;
}
.joinus-bar-title a:link,
.joinus-bar-title a:visited {
  position: relative;
  color: #fff;
  text-decoration: none;
}
.joinus-bar-title a:after {
  content: "";
  height: 2px;
  transition: opacity .3s ease-in-out;
  transform: translateZ(0);
  background: #fff;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  opacity: 0;
}
.joinus-bar-title a:hover:after {
  opacity: 1
}

.cta-bar {
  font-size: 24px;
  padding: 70px 0;
  margin-bottom: 110px;
}
.cta-bar h1 {
  margin-bottom: 40px;
}
.cta-bar-icon {
  display: block;
  font-size: 80px;
  color: #84b255;
  margin-bottom: 20px;
}



/* call us floater */
.cta-floater {
  display: none;
  /* display: table; */
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  color: #fff;
  background: #659439;
  padding: 14px;
  z-index: 9;
}
.cta-floater--closed {
  display: none !important;
}
.cta-floater-item {
  display: table-cell;
  vertical-align: middle;
  line-height: 1em;
}
.cta-floater--title {
}
.cta-floater--number {
  font-size: 22px;
  padding: 0 7px;
}
.cta-floater--number a,
.cta-floater--number a:link {
  color: #fff;
  text-decoration: none;
}
.cta-floater--close-btn {
  cursor: pointer;
}


/* info section */
.info-section {
  max-width: 750px;
  text-align: center;
  margin: 0 auto 60px;
}
.info-section h1 {
  margin-bottom: 40px;
}


/* amenities */
.amenities {
  margin-bottom: 140px;
}
.amenities--item {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
.amenities--item img {
  margin-bottom: 30px;
}
.amenities--item-info {
  line-height: 1.4em;
}
.amenities--item-info .word-break {
  display: inline;
}


/* floor plans */
.floorplans {
  overflow: hidden;
  margin-bottom: 120px;
}
.floorplans--item {
  text-align: center;
  margin-bottom: 60px;
}
.floorplans--item img {
  width: 350px;
  margin-bottom: 30px;
}
.floorplans--item-vertical img {
  height: 500px;
}
.floorplans--title {
  font-size: 24px;
}
.floorplans--title span {
  display: block;
  font-size: 18px;
}


/* contact us */
form {
}
.form-control {
  display: block;
  width: 100%;
  padding: 18px;
  color: #252524;
  background-color: #dcdde1;
  background-clip: padding-box;
  border: 2px solid #252524;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  outline: none;
}
input[type=text]:focus,
textarea:focus,
select:focus,
.form-control:focus {
  box-shadow: none;
  border: 2px solid #252524;
}
.form-control::-webkit-input-placeholder { color: #252524; }
.form-control:-ms-input-placeholder { color: #252524; }
.form-control::-moz-placeholder { color: #252524; opacity: 1; }
.form-control:-moz-placeholder { color: #252524; opacity: 1; }

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}


.contactus {
  overflow: hidden;
  background: #dcdde1;
  padding: 84px 0;
  margin-bottom: 110px;
}


/**
 * Contact form styles
 */
.contactus--form {
  display: block;
  text-align: center;
}
.contactus--form-col {
  position: relative;
  margin-bottom: 15px;
}
.contactus--form-col-w-txt {
  padding-top: 20px;
}
.contactus--form-section {
  clear: both;
  padding-top: 30px;
}
.contactus--form-heading {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 30px;
}
.contactus--btn {
  display: table;
  color: #659439;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  background: none;
  padding: 0;
  margin: 0 auto;
  cursor: pointer;
}
.contactus--btn span {
  display: table-cell;
  vertical-align: middle;
}
.contactus--btn-txt {}
.contactus--btn-icon {
  font-size: 24px;
  font-weight: 900;
  padding-left: 10px;
}

/* form validation styles */
.contactus--form .error {
  border-color: #ff0000;
}
.contactus--form label.error {
  color: #ff0000;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  margin: 0;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 30px;
}
.send-message {
  text-align: center;
}
.send-message-error {
}
/* END - Contact form styles */


/* online application */
.online-application {
  overflow: hidden;
  text-align: left;
  background: #dcdde1;
  padding: 84px 0;
  margin-bottom: 110px;
}
.online-application--form {
  display: block;
  text-align: left;
}
.online-application select.form-control:not([size]):not([multiple]) {
  height: 64px;
  border-radius: 0;
  outline: none;
}
.online-application--thankyou {
  text-align: center;
}
/* END - online application styles */


.contactus--contact-bar .contact-bar {
  text-align: center;
  padding: 0 0 90px;
}


/* footer */
footer {
  text-align: center;
  padding-bottom: 80px;
}

/* contact bar */
.contact-bar {
  padding: 130px 0;
}
.contact-bar--icon {
  display: block;
  color: #659439;
  font-size: 30px;
  margin-bottom: 20px;
}
.contact-bar--col {
  margin-bottom: 30px;
}
.contact-bar a,
.contact-bar a:link,
.contact-bar a:visited {
  color: #000;
  text-decoration: none;
}
.contact-bar a:hover,
.contact-bar a:active {
  text-decoration: underline;
}

.footer-legal {
  overflow: hidden;
  text-align: center;
  padding-bottom: 78px;
}

.footer--btn-group {
  text-align: center;
  margin: 10px 0;
}
.footer--cta-btn {
  clear: both;
  margin: 10px;
}

.footer-copyright {
  font-size: 15px;
}
#btn-to-top {
  display: block;
  color: #659439;
  text-decoration: underline;
  cursor: pointer;
}
#btn-to-top:hover {
  color: #000;
  text-decoration: none;
}
