html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  background: white;
}
h1 {
  font-size: 2rem;
}
h4 {
  font-size: 1.3rem;
  line-height: 1.7rem;
  font-family: 'Montserrat', sans-serif;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
    outline: none;
}
fieldset {border:none;}

button, input, optgroup, select, textarea {
  font-family: 'Open Sans', sans-serif;
}

section {
  padding-top: 60px;
  padding-bottom: 80px;
}

strong {
  font-weight: 700;
}

hr.gradient {
  border: 0;
  height: 1px;
  background-image: -webkit-linear-gradient(left,rgba(255,255,255,1),rgba(190,190,190,1),rgba(255,255,255,1));
  background-image: linear-gradient(to right,rgba(255,255,255,1),rgba(190,190,190,1),rgba(255,255,255,1));
  margin: 0;
}

.heading-styleline-padder li{
  font-weight: 300;
}

/* Menu Login button border does not blend with white outline */
.btn-navbar.btn-white-outline{
    box-shadow: 0 0 0 1px #569789 inset;
}

/* Animation front page */
.gif {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-animation: fade 12s infinite; /* Chrome, Opera 15+, Safari 5+ */
  animation: fade 12s infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

/*If image comes with text*/
/* Safari animation */
.anim-with-img{
    -webkit-animation: posBugSaf 12s infinite;
    animation: posBugSaf 12s infinite;
}

#g2 {
    animation-delay: -9s;
    -webkit-animation-delay: -9s;
}

#g3 {
    animation-delay: -6s;
    -webkit-animation-delay: -6s;
}

#g4 {
    animation-delay: -3s;
    -webkit-animation-delay: -3s;
}
@-webkit-keyframes fade {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-40%);
    }
    10% {
      opacity: 1;
      -webkit-transform: translateY(-50%);
    }
    20% {
      opacity: 1;
      -webkit-transform: translateY(-50%);
    }
    25% {
      opacity: 0;
      -webkit-transform: translateY(-60%);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateY(-60%);
    }
}
@-webkit-keyframes posBugSaf{
    0% {
      opacity: 0;
      -webkit-transform: translateY(-180px);
    }
    10% {
      opacity: 1;
      -webkit-transform: translateY(-210px);
    }
    20% {
      opacity: 1;
      -webkit-transform: translateY(-210px);
    }
    25% {
      opacity: 0;
      -webkit-transform: translateY(-250px);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateY(-250px);
    }
}
@keyframes fade {
    0% {
      opacity: 0;
      transform: translateY(-40%); 
      -ms-transform: translateY(-40%);
    }
    10% {
      opacity: 1;
      transform: translateY(-50%); 
      -ms-transform: translateY(-50%);
    }
    20% {
      opacity: 1;
      transform: translateY(-50%); 
      -ms-transform: translateY(-50%);
    }
    25% {
      opacity: 0;
      transform: translateY(-60%);
      -ms-transform: translateY(-60%); 
    }
    100% {
      opacity: 0;
      transform: translateY(-60%);
      -ms-transform: translateY(-60%); 
    }
}

.divider {
  height: 20px;
}

.heading-center {
  text-align: center;
  padding: 0 20px;
}

.bolded-text {
  font-weight: 700;
}

.huge-text {
  font-size: 3rem;
}

.dingbat {
  color: #589789;
}

.dingbat > img {
  width: auto;
  height: 10px;
  margin-top: -3px;
  margin-right: 2px;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #aaaaaa;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #aaaaaa;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #aaaaaa;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #aaaaaa;
}

.error-img {
  padding: 30px;
}

h1 {
  margin: 0.25rem 0;
}

h2 {
  margin: 1rem 0;
}

.heading-styleline h2 {
  margin: 0.15rem 0;
}

h1, h2 {
  font-family: 'Montserrat', sans-serif;
}

h4 {
  font-weight: 300;
  line-height: 2rem;
}

a {
  color: #569789;
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

p a:hover {
  text-decoration: underline;
}

a:hover, a:focus {
  color: #44776c;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
}

p {
  font-weight: 300;
}

/* colors */

.bg-light-gray {
  background: #f4f4f4;
}

.bg-primary-green {
 background: #569789;
}

.bg-dark-blue {
 background: #1D4357;
}

.light-text {
  color: white;
}

.gray {
  background: #888888;
}

.blue {
  background: #4093bf;
}

.green {
  background: #57C696;
}

.yellow {
  background: #FEB41C;
}

.red {
  background: #E83A25;
}

/* Alignments */

.text-center {
  text-align: center;
}

.center-heading-fix {
  display: inline;
}

.align-right {
  text-align: right;
}

/* buttons */

.btn {
  margin: 0.2rem 0.2rem;
  cursor: pointer;
  border: none;
}

.btn-default {
  background: #569789;
  color: white;
}

.btn-default:hover {
  background: #4d887b;
  color: white;
}

.btn-default:focus, .btn-default:active {
  background: #44776c;
  color: white;
  outline: 0;
  box-shadow: none;
}

.btn-default-outline {
  box-shadow: 0 0 0 1px #569789 inset;
  color: #569789;
}

.btn-default-outline:hover {
  background: rgba(0,0,0,0.1);
  box-shadow: 0 0 0 1px #569789 inset;
  color: #589879;
}

.btn-default-outline:active ,.btn-default-outline:focus {
  background: rgba(0,0,0,0.1);
  box-shadow: 0 0 0 1px #569789 inset;
  color: #589879;
}

.btn-white {
  background: white;
  color: #569789;
}

.btn-white:hover {
  background: #eeeeee;
  color: #569789;
}

.btn-white:focus, .btn-white:active {
  background: #dddddd;
  color: white;
  outline: 0;
  box-shadow: none;
}

.btn-white-outline {
  box-shadow: 0 0 0 1px white inset;
  color: white;
}

.btn-white-outline:hover {
  background: rgba(0,0,0,0.1);
  box-shadow: 0 0 0 1px white inset;
  color: white;
}

.btn-white-outline:active ,.btn-white-outline:focus {
  background: rgba(0,0,0,0.1);
  box-shadow: 0 0 0 1px white inset;
  color: white;

}
.btn > .btn-hover-strech, a > .btn-hover-strech {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn:hover > .btn-hover-strech, a:hover > .btn-hover-strechs {
  margin-left: 4px;
  margin-right: -4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-navbar {
  border-radius: .25rem;
  margin-left: 1rem;
  padding: 0 .5rem;
}

.btn-default > a {
  color: white!important;
}

.light-green {
  background: #57c696;
}

.navbar-after-scroll .btn-white-outline:hover {
  background: rgba(0,0,0,0.1);
}

.navbar-after-scroll .btn-navbar .nav-link:hover, .navbar .btn-navbar .nav-link:hover {
  background: none!important;
}

.btn-navbar a:hover {
  cursor: pointer;
  opacity: 1;
  background: inherit!important;
}

.btn-input {
  margin: 0;
  padding: 0 2rem;
  background: #57c696;
}

.fixed-bottom-left {
  position: fixed;
  visibility: hidden;
  z-index: 2147483000!important;
  bottom: 20px!important;
  right: 100px!important;
  box-shadow: 0 1px 6px rgba(0,0,0,.06),0 2px 32px rgba(0,0,0,.16)!important;
}

/* navs */

.navbar {
  background: rgba(255,255,255,0.97);
  padding-top: 18px;
  padding-bottom: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  height: auto;
}

.navbar-brand {
  padding-top: 0px;
}

.navbar a {
  color: #569789;
}

.navbar-after-scroll {
  background: rgba(255,255,255,0.97);
  padding-top: 8px;
  padding-bottom: 9px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

/*.navbar-after-scroll a {
  color: #569789;
}*/

.navbar-toggler {
  float: right;
  color: white;
}

.navbar-after-scroll .navbar-toggler {
  color: black;
}

.navbar-nav {
  text-align: right;
  display: block;
  float: right;
}

.brand-logo {
  height: 16px;
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.nav-link:hover {
  opacity: 0.7;
  cursor: pointer;
}

.navbar-after-scroll .nav-link:hover {
  cursor: pointer;
  opacity: 1;
  background: rgba(0,0,0,0.05);
  border-radius: .25rem;
}

.current_page_item > a {
  font-weight: 700;
}

#white-logo {
  display: block;
}

#dark-logo {
  display: none;
}

/* size fixes */

.height100 {
  min-height: 100%;
  height: 100%;
}

.mini-text-margin {
  margin: 0.25rem 0rem;
}

.hero-no-margin {
  margin: 0!important;
}

/* components */

.rounded-label {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: white;
}

.rounded-label > a {
  color: white;
}

.top-padder-60 {
  padding-top: 60px;
}

/* Page specific classes */

.page-template-floorplans section {
  margin: 4rem 0;
}

.featured-bg {
  /*padding: 150px 0px;*/
  padding: 200px 0px 150px 0px;
}

.blog article, .category article {
  text-align: left;
  margin-top: 4rem;
}

.articles article:first-child {
  margin-top: 0px;
}

.json.hljs{
  font-size: 0.8rem;
  border: 1px solid #666666;
  border-radius: 0.5rem;
  padding: 5px 20px;
  margin: 15px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.5);
  text-align: left;
}

.page-template-blank .page-content img {
    border-radius: .3rem;
    box-shadow: 0px 5px 15px #888;
}

.page-template-blank .page-content h2 {
  font-size: 1.4rem;
}


/* sections */

.hero {
  min-height: 90%;
  color: white;
  background: -webkit-linear-gradient(135deg, #66b3a2 2%, #498074 98%);
  background: -webkit-linear-gradient(315deg, #66b3a2 2%, #498074 98%);
  background: linear-gradient(135deg, #66b3a2 2%, #498074 98%);
  background: #589789;
  position: relative;
}

.data-counter {
  position: relative;
  bottom: 0;
  padding: 20px;
  background: #4e8378;
  color: white;
  width: 100%;
  text-align: center;
}
.data-point {
  white-space: nowrap;
  margin-left: 1rem;
  margin-right: 1rem;
}

#countries-number, #sqft-number {
  font-weight: 700;
}
.data-point {
  font-weight: 300;
}

.products-bg {
  min-height: 100%;
  color: white;
  background: #569789;
  background-size: cover;
  padding-bottom: 30px;
}

.tagline-description {
  font-size: 1.3rem;
  line-height: 1.7rem;
}

.gradient-bg {
  min-height: 80%;
  color: white;
  background: #569789;
  background: linear-gradient(45deg, #447960, #73b093);
  padding-top: 100px;
}

.padding-top {
  padding-top: 17%;
}

.signup input {
  display: inline-block;
  height: 40px;
  margin: 0;
  padding: 10px;
  background: rgba(0,0,0,0.2);
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid white; /* Here */
  outline: none;
  outline-width: 0;
  color: #ffffff;
  border-radius: 30px 0px 0px 30px;
  padding-left: 20px;
  float: left;
  width: 66.6666%;
  max-width: 800px;
}

.signup button {
  float: left;
  width: 33.3333%;
  max-width: 400px;
  background-color: white;
  text-align: center;
  color: #589789;
  display: inline-block;
  border-left-width: 0;
  border-radius: 0 30px 30px 0;
  margin: 0px;
  padding: 10px;
  position: relative;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 20px;
  -webkit-appearance: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  font-weight: 400;
}

.signup button:hover {
  background-color: #eeeeee;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;

}

.form-input-white {
  border: 1px solid white;
  background: white;
  padding: 0.6rem 1rem;
}

.input-group-80 {
  width: 80%;
}

.signup-hint-text {
  margin-left: .1rem;
  margin-top: .3rem;
}

.company-numbers {
  bottom: 0px;
  position: absolute;
  text-align: center;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  color: white;
}

.company-numbers span {
  padding: 10px;
}

.product-marketing {
  padding-bottom: 0;
  overflow-x: hidden;
}

.triangle {
  position: relative;
  top: -100px;
  border-right: 200vw solid transparent;
  border-top: 150px solid #589789;
  z-index: 10;
}

.heading-styleline {
  border-left: 3px solid;
  border-color: #569789;
  padding-left: 1rem;
}

.dark-text .heading-styleline {
  border-left: 3px solid;
  border-color: #569789;
  padding-left: 1rem;
}

.light-text .heading-styleline {
  border-left: 3px solid #ffffff;
  border-color: #ffffff;
  padding-left: 1rem;
}

.heading-styleline-white {
  border-left: 3px solid #ffffff;
  border-color: #ffffff;
  padding-left: 1rem;
}

.styleline-padder {
  padding-left: 1.2rem;
}

.heading-styleline-padder {
  padding-left: 1.2rem;
  padding-top: 0.5rem;
}

.product-offering {
  padding-bottom: 70px;
}

.product-offering-nopad {
  padding-bottom: 0px;
}

.product-description {
  padding-left: 1.2rem;
}

.floorplan-bg {
  background: url('../img/floorplan-ipad-bg.png');
  background-size: cover;
  background-position: center center;
}

.your-logo-bg {
  background: url('../img/your-logo-bg.jpg');
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0;
}

.furniture-bg {
  background: url('../img/furniture.jpg');
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0;
}

.archilogic-bg {
  background: url('../img/3d-potential.jpg');
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0;
}

.curtain {
  background: none;
}

.product-image-bottom {
  height: 300px;
  display: block;
  margin: auto;
}

.product-image-right {
  position: absolute;
}

.product-image-bottom-full-height {
  height: 100%;
  width: auto;
  position: absolute;
  display: block;
  margin: auto;
  max-width: none;
}

.product-image-fit-height {
  height: auto;
  width: 100%;
  position: relative;
  display: block;
  margin: auto;
  max-width: none;
}

.product-image-fit-width {
  height: 50%;
  width: auto;
  position: relative;
  display: block;
  margin: auto;
  max-width: none;
}

.product-image-centered {
  left: 50%;
  transform: translate(-50%,0)
}

.box-shadow {
  box-shadow: 0px 10px 20px #666666;
}

.flythrough-gif {
    width: 100%;
}

.dark-text {
  color: #666666;
}

.dark-text h4  {
  color: #999999;
}

.white-bg {
  background: white;
}

.hero-heading-link, .hero-heading-link:hover, .hero-heading-link:active, .hero-heading-link:focus {
  color: #dddddd;
  font-weight: 700;
}

.reference {
  text-align: center;
  color: #aaaaaa;
  background: white;
  padding-top: 20px;
  padding-bottom: 15px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.reference:hover .reference-img {
  opacity: 1;
}

.reference:hover {
  opacity: 1;
  color: #666666;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.reference-img {
  height: 40px;
  margin: 10px;
  opacity: 0.8;
  border-radius: 20px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.reference-name {
  text-align: center;
  margin-bottom: 0px;
  font-weight: 700;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.reference-story {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.product-announcement {
  color: white;
  text-align: center;
  padding-bottom: 0px;
  background: -webkit-linear-gradient(135deg, #66b3a2 2%, #498074 98%);
  background: -webkit-linear-gradient(315deg, #66b3a2 2%, #498074 98%);
  background: linear-gradient(135deg, #66b3a2 2%, #498074 98%);
}

.product-announcement h2 {
  font-weight: 300;
  color: white;
}

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

.cubitool-img {
  width: 60%;
  box-shadow: 0px -5px 25px rgba(0,0,0,0.4);
  position: relative;
  margin: auto;
  display: block;
  z-index: 0;
}

.img-fitter {
  width: 100%;
  display: block;
  position: relative;
  margin: auto;
  z-index: 0;
}

.pricing {
  box-shadow: none;
  z-index: 10;
  position: relative;
  overflow-x: hidden;
}

.pricing-wrapper {
  max-width: 1280px;
  overflow-x: hidden;
}

.heading-center > h2 {
  text-align: center;
  display: inline-block;
  margin-top: 35px;
  margin-bottom: 35px;
  color: #666666;
}

.heading-center > .tagline-description {
  padding: 20px;
}

.pricing .marketing-text {
  color: white;
  text-align: center;
  padding-top: 35px;
  font-weight: 700;
}

.green-bg {
  background: #589789;
}

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

.extra-margin {
  margin: 6rem 0;
}

.spacer {
  margin-bottom: 50px;
  width: 100%;
}

.nav-padder {
  padding-bottom: 80px;
  background: #fff;
}

.height-fix {
  height: 50px;
  z-index: -1;
}

.contact {
  text-align: center;
}

.blog-slide {
  background: #eaeaea;
}

.blog-slide h2 {
  color: #666666;
}

.blog-slide .btn {
  margin: 0.2rem 0px;
}

.blog-img {
  display: inline-block;
  float: left;
  height: 100%;
  padding: 20px;
  vertical-align: middle;
  width: 20%;
  max-height: 150px;
}

.blog-slide .btn {
  margin: 0.2rem 0px;
}

.text-wrapper {
  display: inline;
  float: left;
  width: 100%;
}

.text-wrapper-80 {
  display: inline;
  float: left;
  width: 80%;
}

.blog-author {
  margin-bottom: 0;
  color: #999999;
}

.newsletter {
  color: white;
  background: #1D4357;
  padding-bottom: 30px;
}

.no-margin {
  margin: 0!important;
}

.footer {
  color: white;
  background: #1D4357;
  padding-bottom: 0px;
}

.footer-text {
  color: #cccccc;
  display: block;
  font-size: .8rem;
  margin-bottom: .2rem;
}

.footer-text-fat {
  color: #cccccc;
  display: block;
  font-size: .8rem;
  margin-bottom: .4rem;
}

.footer-mini-header {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .6pt;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-link, .footer-link:visited {
  color: #cccccc;
  display: block;
  font-size: .8rem;
  margin-bottom: .2rem;
}

.footer-link:hover {
  color: #ffffff;
  cursor: pointer;
  text-decoration: underline;
}

.footer-link:active, .footer-link:focus {
  color: #eeeeee;
  cursor: pointer;
  text-decoration: underline;
}

.blog-link {
  margin-bottom: .4rem;
}

.footer-signature {
  padding: 0px;
  background: #163241;
  text-align: center;
  margin: 0px!important;
}

.footer-logo {
  margin: 24px auto;
  height: 16px;
}

/* Footer social media icons */
#social-icons{
  padding-bottom: 20px;
  margin-top: -5px;
}

#social-icons i{
  display: inline-block;
  font-size: 25px;
  opacity: 1;
  padding: 0 5px;
  color: #fff;
  opacity: 0.3;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

#social-icons i:hover {
  opacity: 1;
}
.sidebar-social-icons{
  margin: 15px 0;
}
.sidebar-social-icons i { 
  display: inline-block;
  font-size: 25px;
  padding: 10px 0;
  color: #163241;
  width: 40px;
  text-align: left;
  opacity: 1;
}

.sidebar-social-icons i:hover {
  opacity: 0.6;
}
.v-center {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  -ms-flex-flow: column;
      flex-flow: column;
}

.icon-speech-arrow {
    background: url(../img/speech-arrow-dark.svg) no-repeat center bottom;
    height: 20px;
    width: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-chat:hover > .icon-speech-arrow {
    background: url(../img/speech-arrow-dark-hover.svg) no-repeat center bottom;
    top: 47px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-chat .icon-speech-arrow {
    position: absolute;
    border: none;
    outline: none;
    top: 50px;
    left: 38px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sales-contact {
  background: #eaeaea;
  color: #666666;
}

.single-package-view {
  color: #666666;
}

.single-package-view .package-cta-wrapper {
  position: relative;
}

.page-item.active .page-link {
  background-color: #569789;
    border-color: #569789;
}

.page-item.active .page-link {
  background-color: #569789;
  border-color: #569789;
}

.pagination {
  margin-top: 2rem;
}

.page-item.active .page-link {
  background-color: #569789;
    border-color: #569789;
}
.page-link {
  color: #569789;
}
/* cards */

.card-package {
  background: white;
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0px 0px 10px #aaaaaa;
}

.card-package > hr, .card-package > .package-name {
  margin-bottom: 1rem;
}

.package-name {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #666666;
}

.package-price {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0;
  font-weight: 400;
}

.package-month {
  font-size: 0.8rem;
}

.package-dictate {
  font-size: 0.7rem;
  text-align: center;
}

.package-marketing {
  text-align: center;
  font-size: 0.8rem;
}

.package-features {
  font-size: 0.8rem;
  padding-left: 15px;
}

.package-cta-wrapper {
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
}

.package-cta {
  text-align: center;
  position: relative;
  left: -50%;
}

.package-disclaimer {
  font-size: 0.8rem;
  padding-left: 15px;
}

/* FAQ accordion front page */
#accordion {
  margin: 20px 0;
}

.card {
  margin-bottom: 5px;
}

.card-header {
  padding: 5px 15px;
  background-color: #fff;
}

.card-body {
  padding: 20px;
}

.card-body p {
  margin: 0;
  text-align: left;
}

.faq-btn {
  padding: 15px 15px 15px 0;
  text-align: left;
  white-space: normal;
  color: #569789;
  width: 100%;
  font-weight: 300;
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  align-items: center;
  -webkit-align-items: center;
}

span.faq-que{
  width: 90%;
}

span.ifaq {
    width: 10%;
    text-align: right;
}

.btn-link:focus, .btn-link:hover {
  color: #569789;
  text-decoration: none;
  background-color: transparent;
}

.btn.focus, .btn:focus {
    box-shadow: none;
}

@media screen and (min-width: 1024px) and (max-width:1024px) {

  .green-bg {
    background: white;
  }
  .height-fix {
    height: 0px;
  }
  .extra-padder {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .card-package {
    min-height: 0;
    text-align: left;
  }

  .package-cta-wrapper {
    text-align: center;
    position: relative;
    left: auto;
  }

  .package-cta {
    text-align: center;
    position: relative;
    left: auto;
  }
  .hide-mobile {
    display: none;
  }
  .single-package-view .card-package {
    text-align: left;
  }
}

@media screen and (max-width: 1023px) {
  .green-bg {
    background: white;
  }
  .height-fix {
    height: 0px;
  }
  .hide-mobile {
    display: none;
  }
  .single-package-view .card-package {
    text-align: left;
  }
}

.media-reference {
  display: block;
  max-height: 70px;
  margin: 20px auto;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
}

.media-reference:hover {
  opacity: 1;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
}

/* Blog */

.category-separator {
  text-align: center;
  background: #efefef;
  font-weight: 300;
  padding: 20px 0px;
  font-size: 0.8rem;
}
.category-link-wrapper img {
  transform: translateY(0rem);
  transition: transform 0.15s ease;
}

.category-link-wrapper.active {
  border-bottom: 2px solid #569789;
}

.category-link-wrapper:hover img {
  transform: translateY(-0.25rem);
  transition: transform 0.15s ease;
}

.category-link-wrapper:hover, .category-link-wrapper:active, .category-link-wrapper:focus{
  text-decoration: none;
}

.category-img {
  height: 24px;
  display: block;
  margin: auto;
  margin-bottom: 0.25rem;
}

.recent-posts-sidebar {
  text-align: left;
  margin-top: 2rem;
}

.recent-posts-sidebar h4 {

}

.recent-posts-sidebar ul {
  padding-left: 20px;
  font-size: 1rem;
}

.recent-posts-sidebar ul li {
  margin-bottom: 0.5rem;
}

.related-posts{
  margin-top: 15px;
}

.entry-title {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.entry-content img {
  border-radius: 3px;
  border: 1px solid #dddddd;
  box-shadow: 0px 2px 4px #aaaaaa;
}

.wp-caption-text {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.alignleft {
  padding-right: 25px;
}

.aligneright {
  padding-left: 25px;
}

.entry-content .entry-meta .avatar, article .entry-meta img {
  border-radius: 24px;
  box-shadow: none;
  margin-top: -2px;
}

.entry-title {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.entry-header, .entry-content{
  padding: 20px;
}

.entry-content p {
  margin-bottom: 0.5rem;
  line-height: 1.6rem;
}

.entry-meta {
  color: #aaaaaa;
  margin-top: 1rem;
}

/*.single .entry-footer {
  margin-top: 2rem;
}
*/
.single article p a {
  text-decoration: underline;
}

.entry-footer .cat-links a {
  background: #efefef;
  font-size: 0.8rem;
  color: #666666;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.entry-footer .cat-links a:hover {
  background: #e0e0e0;
}

/* Blog ads */
.adv-wrapper{
  border: 1px solid #eeeeee;
  padding: 15px;
  margin: 30px 0;
  background-color: #eeeeee;
}
.adv-wrapper h4{
  color: #163241;
}
.adv-content{
  padding: 10px;
}
.adv-btn-p{
  margin-bottom: 0;
}
.adv-btn{
  margin: 8px 5px 8px 0; 
}
.adv-btn-default,  
.adv-btn-default:active,
.adv-btn-default:visited {
  color: #fafafa;
  background-color: #1D4357;
}
.adv-btn-outline,   
.adv-btn-outline:active,
.adv-btn-outline:visited,
.adv-btn.btn-white-outline,
.adv-btn.btn-white-outline.active,
.adv-btn.btn-white-outline:visited {
  color: #1D4357;
  border: 1px solid #1D4357;
  background-color: #ffffff;
}
.adv-btn-default:hover{
  background-color: #4A6979;
  color: #fafafa;
}
.adv-btn-outline:hover,
.adv-btn.btn-white-outline:hover{
  background-color: #ececec;
  color: #1D4357;
}
@media (max-width: 767px) {
  .adv-content{
    margin-top: 20px;
  }
}
/* Sidebar rectangular ads */

.sidebar-adv-wrapper{
  width: 100%; 
  height: auto;
  border: 1px solid #eee;
  margin: 25px 0;
  padding: 25px;
  background-color: #163241;
  color: #fff;
}

/* Developers */

.hljs-string {
  color: #569789!important;
}

.hljs-attr {
  color: white!important;
}

.hljs {
  background: #153140!important;
}

/* landing page */

.hero-image {
    height: auto;
    width: 100%;
    position: relative;
    display: block;
    margin: auto;
}

.centered {
  text-align: center;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  h2 {
    line-height: 2.2rem;
  }
  .navbar {
    display: block;
    background: rgba(255,255,255,0.97);
  }
  .navbar-after-scroll {
    padding-bottom: 0px;
  }
  .height100 {
    height: auto;
    min-height: 0;
  }
  .curtain.height100 {
    margin: 0;
    padding: 0;
  }
  .tagline-description {
    font-size: 1rem;
    line-height: 1.4rem;
    text-align: center!important;
  }
  .full-mobile {
    height: auto;
    width: 100%;
    margin-top: 2rem;
  }
  .text-wrapper-80 {
    display: inline;
    float: left;
    width: 100%;
  }
  .menu-item {
    float: none;
  }
  .btn-navbar {
    display: block;
    text-align: center;
    margin-top: .5rem;
  }
  .navbar-brand {
    padding-top: 10px;
    padding-bottom: 8px;
  }
  .navbar-toggler-icon {
    line-height: 24px;
  }
  .navbar-toggler {
    padding: .25rem 0rem .25rem 0.75rem;
  }
  .navbar-nav {
    margin-right: 7px;
    margin-bottom: 10px;
  }
  .product-image-fit-width {
    height: auto;
    width: auto;
    position: relative;
    display: block;
    margin: auto;
    max-width: 70%;
    margin-bottom: 2rem;
  } 
  section {
    text-align: center;
  }
  .product-description {
    padding-left: 0;
  }
  .heading-styleline-padder {
    padding: 0;
    text-align: left;
  }
  .dark-text .heading-styleline, .light-text .heading-styleline, .heading-styleline-white {
    padding: 0;
    border-left: none;
    color: inherit;
    border-bottom: 2px solid;
    padding-bottom: 4px;
    margin-bottom: 6px;
  }
  .page-template-floorplans section {
    margin: 2rem 0;
  }
  .page-template-blank .page-content {
    text-align: left;
  }
  .mobile-margin {
    margin-top: 1rem;
  }
  .gif-block {
    position: relative;
    height: 550px;
    margin: 15px 20px 0 -10px;
  }
  .gif {
    padding: 0 20px;
  }
  .css-animation-section {
    margin-bottom: 60px;
    margin-top: 0;
  }
  .button-block, .package-labels {
    text-align: center;
  }
  #faq-section.furniture-bg{
    padding-top: 60px;
  }
  .pricing{
    padding-bottom: 40px;
  }
  .anim-bg{
    padding-bottom: 0;
  }
  .no-padding.img-mobile-grid > img{
    padding: 0;
  }
  .entry-content, .related-posts{
    text-align: left;
  }
}

@media (min-width: 768px) {
  .navbar-toggleable-sm .navbar-collapse {
      display: block!important;
  }
  .package-header{
    height: 80px;
  }
  section.anim-bg {
    margin-top: 40px;
  }
}
@media (max-width: 991px) and (min-width: 768px){
  section.media-references {
    padding-top: 0;
  }
  .no-padding.img-mobile-grid {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .package-cta-wrapper {
    bottom: 15px;
  }
  .pricing{
    padding: 0;
  }
  .pricing.price-page{
    height: 90%;
  }
  .card-package{
    height: 120%;
  } 
  section.section-desktop-no-padding-top{
    padding-top: 0!important;
  }
}

@media (max-width: 992px) {
  .furniture-bg{
    background-image: none;
  }
  .img-mobile-grid {
    height: 350px;
    overflow: hidden;
  }
  .product-image-bottom-full-height, .product-image-centered {
    height: auto;
    width: 100%;
  }
  .product-image-strict-crop {
    height: 100%!important;
    width: auto!important;
    margin-top: 40px;
  }
  .product-image-strict-crop-width {
    height: auto!important;
    width: 100%!important;
    margin-top: 40px;
    background-color: #fff;
  }
  .heading-styleline-padder {
    margin-top: 10px;
  }
  .package-labels {
    margin-bottom: 20px;
  }
  /*PRICING*/
  .card-package {
    min-height: 0;
    text-align: center;
  }
  .package-cta-wrapper {
    text-align: center;
    position: relative;
    left: auto;
  }
  .package-cta {
    text-align: center;
    position: relative;
    left: auto;
  }
  .extra-padder {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  img.landing-page-header-img{
    margin: 0 0 30px 0!important;
  }
  /*Too long content*/
  .medium-resize-height{
    height: auto;
  }
}
@media (min-width: 490px) and (max-width: 767px) {
  .gif-block{
      margin-bottom: 100px;
  }
}

/* General helper */
.padding-side-20{
  padding-left: 20px;
  padding-right: 20px;
}
.no-padding{
  padding: 0;
}
.padding-bottom-100{
  padding-bottom: 100px;
}  
.padding-top-100{
  padding-top: 100px;
}
.padding-20{
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 480px) {
  .img-mobile-grid {
    height: 250px;
  }
}

/* Helper: increase section mobile */
@media (max-width: 767px) {
  .padding-bottom-mobile-100{
    padding-bottom: 100px;
  }  
  .padding-top-mobile-100{
    padding-top: 100px;
  }
}
/* Helper: increase section tablet */
@media (max-width: 991px) {
  .padding-bottom-medium-100{
    padding-bottom: 100px;
  }  
  .padding-top-medium-100{
    padding-top: 100px;
  }
}

/* Fixed column blog post */
@media (min-width: 768px) {
  .fixed-blog-sidebar{
    width: 100%;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    top: 100px;
    padding: 0 15px 0 5px;
    bottom: auto;
  }
  .border-right {
    border-right: 1px solid #dddddd;
  }
}