/*	--------------------------------------------------------------- 
	Vars
	--------------------------------------------------------------- */
/*	--------------------------------------------------------------- 
	Fonts
	--------------------------------------------------------------- */
.light {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}
.regular {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.bold {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
/*	---------------------------------------------------------------
	Shadows
	--------------------------------------------------------------- */
.shadow {
  -moz-box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 5px 0px 10px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.5);
}
.noshadow {
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.one-edge-shadow {
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.5);
}
.one-edge-shadow-inner {
  -webkit-box-shadow: inset 0px -8px 6px -6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px -8px 6px -6px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px -8px 6px -6px rgba(0, 0, 0, 0.5);
}
.two-edge-shadow-inner {
  -webkit-box-shadow: inset 0px -8px 6px -6px rgba(0, 0, 0, 0.5), inset 0px 8px 6px -6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px -8px 6px -6px rgba(0, 0, 0, 0.5), inset 0px 8px 6px -6px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px -8px 6px -6px rgba(0, 0, 0, 0.5), inset 0px 8px 6px -6px rgba(0, 0, 0, 0.5);
}
.two-edge-shadow {
  -webkit-box-shadow: 0px -12px 6px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px -12px 6px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px -12px 6px 6px rgba(0, 0, 0, 0.3);
}
/*	---------------------------------------------------------------
	Vertical Alignment
	--------------------------------------------------------------- */
.parent-vertical-align {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.no-vertical-align {
  top: 0;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}
/*	--------------------------------------------------------------- 
	General
	--------------------------------------------------------------- */
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  background-color: #f9f9f9;
  transition: background-color 0.5s ease;
}
h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 50px;
}
h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 38px;
}
h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
}
h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
}
h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}
h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
}
p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 30px 0;
}
a,
a:hover,
a:focus {
  outline: 0 !important;
}
a {
  transition: all 0.5s ease;
}
a:hover {
  text-decoration: none;
}
ul,
ol {
  margin-bottom: 30px;
}
.ul-lists {
  list-style: none;
  padding: 0 0 0 15px;
}
.ul-lists li:before {
  content: "\f105";
  display: inline-block;
  font: normal normal normal 18px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  line-height: 1.2;
  position: absolute;
  z-index: 1;
  margin-left: -25px;
}
.ul-lists li {
  margin: 10px 0 10px 25px;
}
ul ol li:before {
  display: none;
}
ol ul {
  list-style: none;
}
pre {
  display: block;
  padding: 20px;
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 24px;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #eaeaea;
  border: 0;
  border-radius: 4px;
}
blockquote {
  border-left: 0;
}
blockquote p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 32px;
  font-style: italic;
}
blockquote cite {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  display: block;
  font-style: normal;
  margin-top: 10px;
}
blockquote.alignleft,
blockquote.alignright {
  width: 50%;
  padding-top: 30px;
}
blockquote.alignleft {
  margin: 0 20px 20px 0;
}
blockquote.alignright {
  margin: 0 0 20px 20px;
}
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}
table > caption + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > th,
table > thead:first-child > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
th {
  text-align: left;
}
table > tbody > tr:nth-child(odd) {
  background-color: #f9f9f9;
}
article .wp-caption {
  width: 100%;
  border: 0;
  margin-bottom: 0;
}
article .wp-caption img[class*="wp-image-"] {
  margin: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
}
article .wp-caption .wp-caption-text {
  text-align: left;
  font-size: 14px;
  line-height: 18px;
}
article img[class*="wp-image-"] {
  border-radius: 5x;
}
.alignleft,
.alignright {
  margin-bottom: 1em;
  margin-top: 10px;
}
article ul {
  list-style: none;
  padding: 0 0 0 15px;
}
article ul li:before {
  content: "\f105";
  display: inline-block;
  font: normal normal normal 18px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  line-height: 1.2;
  position: absolute;
  z-index: 1;
  margin-left: -25px;
}
article ul li {
  margin: 10px 0 10px 25px;
}
article ul li,
article ol li {
  font-size: 18px;
  margin: 10px 0 10px 25px;
}
article ul ol > li:before {
  display: none;
}
article ol ul > li:before {
  display: inline-block;
}
article blockquote p {
  font-size: 24px;
  line-height: 28px;
}
article blockquote cite {
  font-size: 14px;
  line-height: 14px;
}
.btn-primary {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-shadow: none;
  border: 0;
  background: none;
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.btn-primary:hover {
  border: none;
  background: none;
  background: #333333;
  background-color: #333333;
}
.wrap-container {
  display: block;
}
/*	--------------------------------------------------------------- 
	HEADER
	--------------------------------------------------------------- */
.wrap-header {
  width: 100%;
  height: auto;
  position: absolute;
  display: table;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
}
.wrap-header header {
  display: table;
  width: 100%;
}
.site-branding,
.wrap-extra {
  display: table-cell;
  vertical-align: middle;
}
.extra-right {
  display: table;
  width: 100%;
}
.main-navigation,
.wrap-book-now,
.wrap-lang-btn {
  display: table-cell;
  vertical-align: middle;
}
.site-branding h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  margin: 0;
}
.site-branding h2 {
  text-transform: none;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  margin: 0;
}
.site-title {
  width: 100%;
  display: block;
}
.navbar-brand {
  height: auto;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.wrap-lang-btn {
  margin: 0;
  width: auto;
  height: 52px;
  display: block;
}
.wrap-lang-btn ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wrap-lang-btn ul li {
  display: block;
  line-height: 12px;
}
.wrap-lang-btn ul li a {
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.wrap-lang-btn ul li a img {
  margin-right: 5px;
}
.wrap-book-now {
  padding: 0 15px 0 0;
  position: relative;
}
.wrap-book-now .book-now {
  width: auto;
  height: 52px;
  padding: 0 15px;
  line-height: 52px;
  text-align: center;
  display: block;
  font-size: 14px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.wrap-book-now .book-now:hover {
  background-color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
}
.navbar-toggle {
  width: 100%;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  color: #fff;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  float: left;
}
/*	--------------------------------------------------------------- 
	NAVIGATION
	--------------------------------------------------------------- */
.navbar-default {
  background: none;
  border-radius: 0;
  background-color: transparent;
  border-color: transparent;
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.navbar {
  height: 52px;
  min-height: 52px;
  margin: 0;
  border: none;
  width: auto;
  display: block;
  text-align: right;
}
.main-navigation {
  margin: 0 auto;
  padding: 0;
  width: auto;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  width: 100%;
  border: none;
}
.navbar-nav {
  margin: 0 auto;
  float: right;
}
.navbar-default .navbar-nav > li > a {
  height: 52px;
  padding: 0px 15px;
  background: #000;
  text-shadow: none;
  color: #fff;
  font-size: 14px;
}
.navbar-default .navbar-nav > li > a:hover {
  color: #fff;
}
.navbar-default .navbar-nav > li > a .wrap {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.navbar-collapse {
  margin-top: 0px;
  padding-left: 0;
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .active > a {
  background: none;
  color: #fff;
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
/*	--------------------------------------------------------------- 
	NAVIGATION DROPDOWN
	--------------------------------------------------------------- */
.dropdown-menu {
  border: none;
  padding: 0;
}
.dropdown-menu li a {
  font-size: 14px;
  line-height: 16px;
  height: 45px;
}
.dropdown-menu li a .wrap {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.dropdown-menu li a:hover {
  background: none;
  background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
  background: #fff;
  background-color: #fff;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  background: #fff;
  background-color: #fff;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  background: #fff;
  background-color: #fff;
}
/*	--------------------------------------------------------------- 
	Slideshow
	--------------------------------------------------------------- */
.nofullscreen .wrap-slideshow:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: -1px;
  z-index: 11;
  display: block;
  background: #eaeaea;
  margin-left: -1px;
}
.wrap-slideshow {
  position: relative;
  display: block;
  width: 100%;
  background: #fff;
}
.wrap-slideshow .item {
  background-color: rgba(0, 0, 0, 0.5);
}
.wrap-slideshow .item .caption {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.wrap-slideshow .item .caption .wrap-caption {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wrap-slideshow .item .caption h2 {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 0;
  width: 70%;
  margin: 0 auto;
}
.wrap-slideshow .item .caption.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
}
.wrap-slideshow .item img {
  display: block;
  width: 100%;
  height: auto;
}
.owl-controls {
  padding: 20px;
}
.owl-theme .owl-controls .owl-page span,
.owl-theme .owl-controls .owl-buttons div {
  background: #ccc;
}
.owl-theme .owl-controls .owl-buttons div {
  border-radius: 5px;
  font-size: 24px;
  opacity: 0.8;
}
.owl-theme .owl-controls {
  margin-top: 0;
  height: 128px;
}
#general-services {
  bottom: 128px;
}
/*.owl-controls{
        position: absolute;
        top: 50%;
        margin-top: -50px;
        width: 100%;
        
        .owl-nav{
            font-size: 100px;
            color: fade(#fff,80);
            width: 100%;
            .vertical-align;
            position: relative;
            
            .owl-prev{
                margin-left: 0px;
                width: 100px;
                height: 100px;
                text-align: center;
                display: block;
                position: absolute;
                top:0;
                left: 0;
            }
            
            .owl-next{
                margin-right: 0px;
                width: 100px;
                height: 100px;
                text-align: center;
                display: block;
                position: absolute;
                top:0;
                right: 0;
            }
            
            .fa{
                display: block;
            }
            
        }
    }*/
/*	--------------------------------------------------------------- 
	SUMMARY
	--------------------------------------------------------------- */
#summary p {
  margin-bottom: 0;
}
#summary p + p {
  margin-top: 30px;
}
/*	--------------------------------------------------------------- 
	SERVICES
	--------------------------------------------------------------- */
.wrap-services {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 11;
}
.wrap-services ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: table;
  width: 100%;
}
.wrap-services li {
  padding: 30px;
  float: none;
  display: table-cell;
  vertical-align: middle;
}
.wrap-services li:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.5);
}
.wrap-services li:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.7);
}
.wrap-services .wrap-icon {
  padding-right: 15px;
  display: table-cell;
  vertical-align: middle;
}
.wrap-services .wrap-icon i {
  font-size: 48px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
}
.wrap-services .wrap-text {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}
.wrap-services .wrap-text .small {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
}
.wrap-services .wrap-text .big {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
}
/*	--------------------------------------------------------------- 
	Archive Properties
	--------------------------------------------------------------- */
.post-property a.read-more {
  display: none;
}
.post-property img {
  margin-bottom: 30px;
}
.icons ul {
  list-style: none;
  margin: 0px 0px;
  padding: 0;
}
.icons ul li {
  display: inline-block;
  font-size: 14px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  margin-left: 30px;
  text-align: center;
}
.icons ul li .wrap-text {
  display: block;
  margin: 0 auto;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.icons ul li .wrap-icon {
  font-size: 36px;
  display: block;
  margin: 0 auto;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
}
.icons ul li:before {
  display: none;
}
.icons ul li:first-child {
  margin-left: 0;
}
article.post-property {
  margin-bottom: 50px;
  margin-top: 50px;
}
article.post-property h2 {
  margin-top: 0;
}
/*	--------------------------------------------------------------- 
	CTA
	--------------------------------------------------------------- */
.wrap-cta {
  height: 100px;
  width: 100%;
}
.wrap-cta i {
  color: #fff;
  font-size: 24px;
}
.wrap-cta .container {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wrap-cta form {
  /* firefox 19+ */
  /* ie */
}
.wrap-cta form .form-group {
  margin-bottom: 0;
}
.wrap-cta form input {
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  color: #fff;
  height: 51px;
  background: rgba(0, 0, 0, 0.3);
}
.wrap-cta form span {
  background: rgba(0, 0, 0, 0.3);
  height: 51px;
  padding: 0px 10px;
}
.wrap-cta form #datepicker-in,
.wrap-cta form #datepicker-out {
  cursor: pointer;
}
.wrap-cta form .btn-submit {
  height: 51px;
  width: 100%;
  text-align: center;
  border: none;
  background: rgba(0, 0, 0, 0.8);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  cursor: pointer;
}
.wrap-cta form .btn-submit:hover {
  background: rgba(0, 0, 0, 0.3);
}
.wrap-cta form input.form-control::-webkit-input-placeholder {
  color: #fff;
}
.wrap-cta form input.form-control::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.wrap-cta form input.form-control:-ms-input-placeholder {
  color: #fff;
}
.wrap-cta form input:-moz-placeholder {
  color: #fff;
}
.wrap-cta form ul.parsley-error-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wrap-cta form ul.parsley-error-list li.required {
  color: #fff;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
/*	--------------------------------------------------------------- 
	Banners
	--------------------------------------------------------------- */
.wrap-banners {
  width: 100%;
  opacity: 0;
  transition: all .5s;
}
.wrap-banners ul.banners {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wrap-banners ul.banners li {
  float: left;
  display: inline-block;
}
.wrap-banners ul.banners li a {
  height: 500px;
  width: auto;
  display: block;
  cursor: pointer;
}
.wrap-banners ul.banners li .wrap-text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 20px 0px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.wrap-banners ul.banners li .wrap-text p.small {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 0;
}
.wrap-banners ul.banners li .wrap-text h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 36px;
  color: #333333;
  margin: 0;
}
.wrap-banners ul.banners li a:hover p.small,
.wrap-banners ul.banners li a:hover h2 {
  color: #fff;
}
/*	--------------------------------------------------------------- 
	Content Home
	--------------------------------------------------------------- */
.wrap-content-home {
  padding: 50px 0px;
  display: block;
  width: 100%;
  background: #eaeaea;
  clear: both;
}
.wrap-content-home h1,
.wrap-content-home h2,
.wrap-content-home h3,
.wrap-content-home h4,
.wrap-content-home h5,
.wrap-content-home h6,
.wrap-content-home p {
  text-align: center;
  margin-bottom: 30px;
}
.wrap-content-home h5,
.wrap-content-home h6 {
  margin-bottom: 20px;
}
/*	--------------------------------------------------------------- 
	Title Page
	--------------------------------------------------------------- */
.wrap-title-page {
  height: 150px;
  width: 100%;
  margin-bottom: 30px;
  padding: 10px;
}
.wrap-title-page .wrap-title {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.wrap-title-page .wrap-title p.small {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.wrap-title-page .wrap-title h1 {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  margin: 0;
}
/*	--------------------------------------------------------------- 
	Content
	--------------------------------------------------------------- */
#main-content {
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}
#main-content h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 36px;
  color: #333333;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  text-transform: none;
}
#main-content a:hover {
  color: #333333;
}
.wrap-all-services {
  padding: 30px;
  margin-bottom: 0px;
  display: block;
  background: #eaeaea;
  clear: both;
}
.wrap-all-services h2 {
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.wrap-all-services .services {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wrap-all-services .services .table-icons {
  width: 100%;
  display: table;
}
.wrap-all-services .services .cell-icon {
  width: 33.33%;
  display: table-cell;
  vertical-align: middle;
}
.wrap-all-services .services .cell-icon .wrap-icon {
  display: table-cell;
  font-size: 48px;
  color: #666;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
}
.wrap-all-services .services .cell-icon .wrap-text {
  display: table-cell;
  vertical-align: middle;
  height: 36px;
}
.wrap-all-services .services .cell-icon .wrap-text p {
  font-size: 18px;
  line-height: 18px;
  color: #666;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}
/*	--------------------------------------------------------------- 
	Footer
	--------------------------------------------------------------- */
footer#site-footer {
  background-color: #333333;
  padding: 30px 0px;
  width: 100%;
  float: left;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
footer#site-footer h5 {
  color: #fff;
  text-transform: uppercase;
}
footer#site-footer p {
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
footer#site-footer a:hover {
  color: #fff;
}
footer#site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer#site-footer ul.menu li {
  border-top: 1px solid #999999;
  margin-top: 5px;
  padding-top: 5px;
}
footer#site-footer ul.menu li a {
  color: #fff;
}
footer#site-footer ul.menu li:nth-child(1) {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
footer#site-footer ul li a {
  color: #fff;
}
footer#site-footer .widget_wpcom_social_media_icons_widget ul {
  display: block;
}
footer#site-footer .widget_wpcom_social_media_icons_widget ul li {
  display: inline-block;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
footer#site-footer .widget_wpcom_social_media_icons_widget ul li a {
  font-size: 18px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: block;
  text-align: center;
  background: none;
  border: 1px solid #999999;
  color: #999999;
}
footer#site-footer .widget_wpcom_social_media_icons_widget ul li a:hover {
  color: #fff;
  border-color: color: #fff;
}
footer#site-footer .site-info {
  text-align: right;
}
footer#site-footer .col-md-3 {
  display: none;
}
footer#site-footer .col-md-3:nth-child(1),
footer#site-footer .col-md-3:nth-child(2),
footer#site-footer .col-md-3:nth-child(3),
footer#site-footer .col-md-3:nth-child(4) {
  display: block;
}
footer#site-footer .col-md-3:nth-child(1) aside,
footer#site-footer .col-md-3:nth-child(2) aside,
footer#site-footer .col-md-3:nth-child(3) aside,
footer#site-footer .col-md-3:nth-child(4) aside {
  width: 100%;
  float: left;
}
/*	--------------------------------------------------------------- 
	Blog
	--------------------------------------------------------------- */
.wrap-date {
  width: 60px;
  height: 60px;
  padding: 5px;
  display: block;
  float: left;
}
#post-blog {
  margin-bottom: 50px;
}
#post-blog .wrap-img,
#post-blog #title-post .wrap-video {
  padding-left: 60px;
  height: auto;
}
#post-blog .wrap-video {
  margin-bottom: 20px;
}
#post-blog #title-post .wrap-video {
  margin-bottom: 0px;
}
#post-blog p.excerpt {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
#post-blog p.meta-post {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 5px;
}
#post-blog a.read-more {
  margin-bottom: 15px;
  display: block;
}
#post-blog a:hover {
  color: #333333;
}
.wrap-month {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  float: left;
  width: 100%;
  text-transform: uppercase;
  color: #fff;
}
.wrap-day {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  float: left;
  width: 100%;
  margin-top: -5px;
  color: #fff;
}
.wrap-year {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-top: -3px;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  float: left;
  width: 100%;
  color: #fff;
}
#post-blog .wrap-title {
  padding-top: 10px;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 15px;
  background: #ff3300;
  min-height: 60px;
}
#post-blog .wrap-title h1 a {
  color: #fff;
}
#post-blog a + .wrap-title,
#post-blog .wrap-video + .wrap-title {
  padding-top: 20px;
  background: none;
}
.blog #post-blog .wrap-video {
  margin-bottom: 0;
}
.single #post-blog .wrap-title {
  background: none;
  padding-top: 20px;
}
#post-blog .wrap-title h1 {
  text-align: left;
  margin: 0;
  font-size: 36px;
  line-height: 38px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
#post-blog .wrap-title h1 a {
  text-decoration: none;
}
#post-blog .wrap-title h1 a:hover {
  color: #333333;
}
#post-blog .wrap-title p.meta-post {
  margin-bottom: 0;
  text-align: left;
  font-size: 12px;
  color: #fff;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#post-blog .wrap-title p.meta-post a:hover {
  color: #fff;
}
.comment-subscription-form {
  margin-bottom: 0;
  line-height: 18px;
  margin-top: 15px;
  font-size: 14px;
}
/*	--------------------------------------------------------------- 
	Sidebar - Left
	--------------------------------------------------------------- */
#sidebar-left {
  position: relative;
}
.wrap-sidebar,
.holder-sidebar {
  display: block;
  width: 100%;
}
.floating {
  position: absolute;
  z-index: 10;
  padding-right: 30px;
}
.floating .holder-sidebar {
  padding: 15px;
  margin: 0;
  background: #fff;
  -moz-box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 5px 0px 10px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.5);
}
/*	--------------------------------------------------------------- 
	Sidebar - Right
	--------------------------------------------------------------- */
.widget_search {
  /* firefox 19+ */
  /* ie */
}
.widget_search input#form-search-input.form-control {
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  color: #fff;
  height: 45px;
}
.widget_search input#form-search-input.form-control::-webkit-input-placeholder {
  color: #fff;
}
.widget_search input#form-search-input.form-control::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.widget_search input#form-search-input.form-control:-ms-input-placeholder {
  color: #fff;
}
.widget_search input:-moz-placeholder {
  color: #fff;
}
.widget_search .input-group-btn:last-child > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: #fff;
  text-shadow: none;
  height: 45px;
  border: none;
  border-color: transparent;
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  background: none;
}
.widget_search .input-group-btn:last-child > .btn:hover {
  background-color: #333333;
}
.widget {
  margin-bottom: 30px;
}
.widget h1.widget-title {
  font-size: 18px;
  line-height: 24px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #333333;
  margin-top: 0;
  margin-bottom: 15px;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget ul li {
  border-top: 1px solid #ccc;
  margin-top: 5px;
  padding-top: 5px;
}
.widget ul li a {
  font-size: 14px;
  color: #333333;
}
.widget ul li a:hover {
  text-decoration: none;
}
.widget ul li:nth-child(1) {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
/*	--------------------------------------------------------------- 
	Pagination
	--------------------------------------------------------------- */
.pagination-center {
  text-align: center;
  padding: 35px 0px;
  margin: 30px 0px;
  border-top: 2px dotted #eaeaea;
  border-bottom: 2px dotted #eaeaea;
  font-size: 18px;
}
.pagination-center .col-sm-6:nth-child(1) {
  text-align: left;
}
.pagination-center .col-sm-6:nth-child(1) i {
  margin-right: 10px;
}
.pagination-center .col-sm-6:nth-child(2) {
  text-align: right;
}
.pagination-center .col-sm-6:nth-child(2) i {
  margin-left: 10px;
}
.pagination {
  margin: 0 auto;
}
/*	---------------------------------------------------------------
	Pace
	--------------------------------------------------------------- */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pace-inactive {
  display: none;
}
.pace-done video#bgvid {
  opacity: .8;
}
.pace .pace-progress {
  background: #29d;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}
/*	--------------------------------------------------------------- 
	Sharing Buttons
	--------------------------------------------------------------- */
.sharedaddy {
  margin-top: 30px;
  margin-bottom: 30px;
}
.sharedaddy ul li:before {
  display: none;
}
