@charset "UTF-8";
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}
.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}
.animated.fast {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
}
.animated.faster {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}
.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
@media (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important;
    }
}
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden],
template {
    display: none;
}
a {
    background: transparent;
}
a:active,
a:hover {
    outline: 0;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: bold;
}
dfn {
    font-style: italic;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
mark {
    background: #ff0;
    color: #000;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 1em 40px;
}
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}
pre {
    overflow: auto;
}
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}
button {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input {
    line-height: normal;
}
input[type='checkbox'],
input[type='radio'] {
    box-sizing: border-box;
    padding: 0;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    height: auto;
}
input[type='search'] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
}
optgroup {
    font-weight: bold;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,
th {
    padding: 0;
}
@media print {
    * {
        text-shadow: none !important;
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: ' (' attr(href) ')';
    }
    abbr[title]:after {
        content: ' (' attr(title) ')';
    }
    a[href^='javascript:']:after,
    a[href^='#']:after {
        content: '';
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    select {
        background: #fff !important;
    }
    .navbar {
        display: none;
    }
    .btn > .caret,
    .dropup > .btn > .caret,
    .wpcf7-submit > .caret,
    .dropup > .wpcf7-submit > .caret {
        border-top-color: #000 !important;
    }
    .label {
        border: 1px solid #000;
    }
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    font-family: 'Lato';
    font-size: 15px;
    line-height: 1.5;
    color: #2d313f;
    background-color: #ffffff;
}
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
a {
    color: #75b08a;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #4f8a64;
    text-decoration: underline;
}
figure {
    margin: 0;
}
img {
    vertical-align: middle;
}
.thumbnail > img,
.thumbnail a > img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}
.img-rounded {
    border-radius: 6px;
}
.img-thumbnail {
    padding: 4px;
    line-height: 1.5;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}
.img-circle {
    border-radius: 50%;
}
hr {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 0;
    border-top: 1px solid #dedede;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}
iframe {
    width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Lato';
    font-weight: 400;
    line-height: 1.1;
    color: #030304;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 22px;
    margin-bottom: 11px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
    font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 11px;
    margin-bottom: 11px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
    font-size: 75%;
}
h1,
.h1 {
    font-size: 39px;
}
h2,
.h2 {
    font-size: 32px;
}
h3,
.h3 {
    font-size: 26px;
}
h4,
.h4 {
    font-size: 22px;
}
h5,
.h5 {
    font-size: 20px;
}
h6,
.h6 {
    font-size: 15px;
}
p {
    margin: 0 0 11px;
}
.lead {
    margin-bottom: 22px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .lead {
        font-size: 22.5px;
    }
}
small,
.small {
    font-size: 86%;
}
cite {
    font-style: normal;
}
mark,
.mark {
    background-color: #fcf8e3;
    padding: 0.2em;
}
.text-capitalize {
    text-transform: capitalize;
}
.text-muted {
    color: #777777;
}
.text-primary {
    color: #75b08a;
}
a.text-primary:hover {
    color: #589a70;
}
.text-success {
    color: #3c763d;
}
a.text-success:hover {
    color: #2b542c;
}
.text-info {
    color: #31708f;
}
a.text-info:hover {
    color: #245269;
}
.text-warning {
    color: #8a6d3b;
}
a.text-warning:hover {
    color: #66512c;
}
.text-danger {
    color: #a94442;
}
a.text-danger:hover {
    color: #843534;
}
.bg-primary {
    color: #fff;
    background-color: #75b08a;
}
a.bg-primary:hover {
    background-color: #589a70;
}
.bg-success {
    background-color: #dff0d8;
}
a.bg-success:hover {
    background-color: #c1e2b3;
}
.bg-info {
    background-color: #d9edf7;
}
a.bg-info:hover {
    background-color: #afd9ee;
}
.bg-warning {
    background-color: #fcf8e3;
}
a.bg-warning:hover {
    background-color: #f7ecb5;
}
.bg-danger {
    background-color: #f2dede;
}
a.bg-danger:hover {
    background-color: #e4b9b9;
}
.bg-primary-overlay {
    background: rgba(117, 176, 138, 0.9);
}
.page-header {
    padding-bottom: 10px;
    margin: 44px 0 22px;
    border-bottom: 1px solid #dedede;
}
ul,
ol {
    margin-top: 0;
    margin-bottom: 11px;
}
ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0;
}
.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}
.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}
dl {
    margin-top: 0;
    margin-bottom: 22px;
}
dt,
dd {
    line-height: 1.5;
}
dt {
    font-weight: bold;
}
dd {
    margin-left: 0;
}
@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .dl-horizontal dd {
        margin-left: 180px;
    }
}
abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777777;
}
.initialism {
    font-size: 90%;
    text-transform: uppercase;
}
blockquote {
    padding: 11px 22px;
    margin: 0 0 22px;
    font-size: 18.75px;
    border-left: 5px solid #dedede;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
    margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.5;
    color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
    content: '\2014 \00A0';
}
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #dedede;
    border-left: 0;
    text-align: right;
}
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
    content: '';
}
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
    content: '\00A0 \2014';
}
blockquote:before,
blockquote:after {
    content: '';
}
address {
    margin-bottom: 22px;
    font-style: normal;
    line-height: 1.5;
}
code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}
code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}
kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #ffffff;
    background-color: #333333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
    padding: 0;
    font-size: 100%;
    box-shadow: none;
}
pre {
    display: block;
    padding: 10.5px;
    margin: 0 0 11px;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-all;
    word-wrap: break-word;
    color: #333333;
    background-color: #f5f5f5;
    border: 1px solid #cccccc;
    border-radius: 4px;
}
pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
}
.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}
.col-xs-12 {
    width: 100%;
}
.col-xs-11 {
    width: 91.66666666666666%;
}
.col-xs-10 {
    width: 83.33333333333334%;
}
.col-xs-9 {
    width: 75%;
}
.col-xs-8 {
    width: 66.66666666666666%;
}
.col-xs-7 {
    width: 58.333333333333336%;
}
.col-xs-6 {
    width: 50%;
}
.col-xs-5 {
    width: 41.66666666666667%;
}
.col-xs-4 {
    width: 33.33333333333333%;
}
.col-xs-3 {
    width: 25%;
}
.col-xs-2 {
    width: 16.666666666666664%;
}
.col-xs-1 {
    width: 8.333333333333332%;
}
.col-xs-offset-12 {
    margin-left: 100%;
}
.col-xs-offset-11 {
    margin-left: 91.66666666666666%;
}
.col-xs-offset-10 {
    margin-left: 83.33333333333334%;
}
.col-xs-offset-9 {
    margin-left: 75%;
}
.col-xs-offset-8 {
    margin-left: 66.66666666666666%;
}
.col-xs-offset-7 {
    margin-left: 58.333333333333336%;
}
.col-xs-offset-6 {
    margin-left: 50%;
}
.col-xs-offset-5 {
    margin-left: 41.66666666666667%;
}
.col-xs-offset-4 {
    margin-left: 33.33333333333333%;
}
.col-xs-offset-3 {
    margin-left: 25%;
}
.col-xs-offset-2 {
    margin-left: 16.666666666666664%;
}
.col-xs-offset-1 {
    margin-left: 8.333333333333332%;
}
.col-xs-offset-0 {
    margin-left: 0%;
}
@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666666666666%;
    }
    .col-sm-10 {
        width: 83.33333333333334%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666666666666%;
    }
    .col-sm-7 {
        width: 58.333333333333336%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666666666667%;
    }
    .col-sm-4 {
        width: 33.33333333333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.666666666666664%;
    }
    .col-sm-1 {
        width: 8.333333333333332%;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666666666666%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333333334%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666666666666%;
    }
    .col-sm-offset-7 {
        margin-left: 58.333333333333336%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666666666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.666666666666664%;
    }
    .col-sm-offset-1 {
        margin-left: 8.333333333333332%;
    }
    .col-sm-offset-0 {
        margin-left: 0%;
    }
}
@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666666666666%;
    }
    .col-md-10 {
        width: 83.33333333333334%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666666666666%;
    }
    .col-md-7 {
        width: 58.333333333333336%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666666666667%;
    }
    .col-md-4 {
        width: 33.33333333333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.666666666666664%;
    }
    .col-md-1 {
        width: 8.333333333333332%;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666666666666%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333333334%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666666666666%;
    }
    .col-md-offset-7 {
        margin-left: 58.333333333333336%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666666666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.666666666666664%;
    }
    .col-md-offset-1 {
        margin-left: 8.333333333333332%;
    }
    .col-md-offset-0 {
        margin-left: 0%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666666666666%;
    }
    .col-lg-10 {
        width: 83.33333333333334%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666666666666%;
    }
    .col-lg-7 {
        width: 58.333333333333336%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666666666667%;
    }
    .col-lg-4 {
        width: 33.33333333333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.666666666666664%;
    }
    .col-lg-1 {
        width: 8.333333333333332%;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666666666666%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333333334%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666666666666%;
    }
    .col-lg-offset-7 {
        margin-left: 58.333333333333336%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666666666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.666666666666664%;
    }
    .col-lg-offset-1 {
        margin-left: 8.333333333333332%;
    }
    .col-lg-offset-0 {
        margin-left: 0%;
    }
}
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}
.col-xs-15 {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}
table {
    background-color: transparent;
}
th {
    text-align: left;
}
table col[class*='col-'] {
    position: static;
    float: none;
    display: table-column;
}
table td[class*='col-'],
table th[class*='col-'] {
    position: static;
    float: none;
    display: table-cell;
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0;
}
legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 22px;
    font-size: 22.5px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 300;
}
input[type='search'] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
input[type='radio'],
input[type='checkbox'] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}
input[type='file'] {
    display: block;
}
input[type='range'] {
    display: block;
    width: 100%;
}
select[multiple],
select[size] {
    height: auto;
}
input[type='file']:focus,
input[type='radio']:focus,
input[type='checkbox']:focus {
    outline-offset: -2px;
    -webkit-box-shadow: 0 0 2px rgba(117, 176, 138, 0.8);
    box-shadow: 0 0 2px rgba(117, 176, 138, 0.8);
    border-color: #75b08a;
}
output {
    display: block;
    padding-top: 7px;
    font-size: 15px;
    line-height: 1.5;
    color: #555555;
}
.form-control,
.wpcf7-form-control:not(.wpcf7-submit),
.chosen-container-single,
.chosen-container-multi .chosen-choices {
    display: block;
    width: 100%;
    height: 36px;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #000;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-transition:
        border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
    -o-transition:
        border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
    transition:
        border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
}
.form-control:focus,
.wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: #95c3a5;
    outline: 0;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(149, 195, 165, 0.6);
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(149, 195, 165, 0.6);
}
.form-control:focus,
.wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: #95c3a5;
    outline: 0;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 4px #75b08a;
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 4px #75b08a;
}
.form-control::-moz-placeholder,
.wpcf7-form-control:not(.wpcf7-submit)::-moz-placeholder {
    color: #777777;
    opacity: 1;
}
.form-control:-ms-input-placeholder,
.wpcf7-form-control:not(.wpcf7-submit):-ms-input-placeholder {
    color: #777777;
}
.form-control::-webkit-input-placeholder,
.wpcf7-form-control:not(.wpcf7-submit)::-webkit-input-placeholder {
    color: #777777;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control,
.wpcf7-form-control:not(.wpcf7-submit)[disabled],
.wpcf7-form-control:not(.wpcf7-submit)[readonly],
fieldset[disabled] .wpcf7-form-control:not(.wpcf7-submit) {
    cursor: not-allowed;
    background-color: #dedede;
    opacity: 1;
}
textarea.form-control,
textarea.wpcf7-form-control:not(.wpcf7-submit) {
    height: auto;
}
input[type='search'] {
    -webkit-appearance: none;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
    line-height: 36px;
    line-height: 1.5 \0;
}
input[type='date'].input-sm,
input[type='time'].input-sm,
input[type='datetime-local'].input-sm,
input[type='month'].input-sm {
    line-height: 31px;
}
input[type='date'].input-lg,
input[type='time'].input-lg,
input[type='datetime-local'].input-lg,
input[type='month'].input-lg {
    line-height: 48px;
}
.form-group {
    margin-bottom: 15px;
    position: relative;
}
.radio,
.checkbox {
    position: relative;
    display: block;
    min-height: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.radio:first-of-type,
.checkbox:first-of-type {
    margin-top: 0;
}
.radio label,
.checkbox label {
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}
.radio input[type='radio'],
.checkbox input[type='checkbox'] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}
input[type='radio'][disabled],
input[type='checkbox'][disabled],
input[type='radio'].disabled,
input[type='checkbox'].disabled,
fieldset[disabled] input[type='radio'],
fieldset[disabled] input[type='checkbox'] {
    cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed;
}
.input-sm,
.form-horizontal .form-group-sm .form-control,
.form-horizontal .form-group-sm .wpcf7-form-control:not(.wpcf7-submit) {
    height: 31px;
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 3px;
}
select.input-sm {
    height: 31px;
    line-height: 31px;
}
textarea.input-sm,
select[multiple].input-sm {
    height: auto;
}
.input-lg,
.form-horizontal .form-group-lg .form-control,
.form-horizontal .form-group-lg .wpcf7-form-control:not(.wpcf7-submit) {
    height: 48px;
    padding: 10px 16px;
    font-size: 19px;
    line-height: 1.33;
    border-radius: 6px;
}
select.input-lg {
    height: 48px;
    line-height: 48px;
}
textarea.input-lg,
select[multiple].input-lg {
    height: auto;
}
.has-feedback {
    position: relative;
}
.has-feedback .form-control,
.has-feedback .wpcf7-form-control:not(.wpcf7-submit) {
    padding-right: 45px;
}
.form-control-feedback {
    position: absolute;
    top: 27px;
    right: 0;
    z-index: 2;
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
}
.input-lg + .form-control-feedback {
    width: 48px;
    height: 48px;
    line-height: 48px;
}
.input-sm + .form-control-feedback {
    width: 31px;
    height: 31px;
    line-height: 31px;
}
.has-success .help-block,
.has-success .radio,
.has-success .checkbox {
    color: #3c763d;
}
.has-success .form-control,
.has-success .wpcf7-form-control:not(.wpcf7-submit) {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus,
.has-success .wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: #2b542c;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #67b168;
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #67b168;
}
.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8;
}
.has-success .form-control-feedback {
    color: #3c763d;
}
.has-warning .help-block,
.has-warning .radio,
.has-warning .checkbox {
    color: #8a6d3b;
}
.has-warning .form-control,
.has-warning .wpcf7-form-control:not(.wpcf7-submit) {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus,
.has-warning .wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: #66512c;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #c0a16b;
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
    color: #8a6d3b;
}
.has-error .help-block,
.has-error .radio,
.has-error .checkbox {
    color: #a94442;
}
.has-error .form-control,
.has-error .wpcf7-form-control:not(.wpcf7-submit) {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus,
.has-error .wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: #843534;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #ce8483;
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #ce8483;
}
.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede;
}
.has-error .form-control-feedback {
    color: #a94442;
}
.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
}
.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #626b89;
}
@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
    .form-inline .form-control,
    .form-inline .wpcf7-form-control:not(.wpcf7-submit) {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .form-control,
    .form-inline .input-group .wpcf7-form-control:not(.wpcf7-submit) {
        width: auto;
    }
    .form-inline .input-group > .form-control,
    .form-inline .input-group > .wpcf7-form-control:not(.wpcf7-submit) {
        width: 100%;
    }
    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }
    .form-inline .radio label,
    .form-inline .checkbox label {
        padding-left: 0;
    }
    .form-inline .radio input[type='radio'],
    .form-inline .checkbox input[type='checkbox'] {
        position: relative;
        margin-left: 0;
    }
    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}
.form-horizontal .radio,
.form-horizontal .checkbox {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 29px;
}
.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px;
}

.form-horizontal .has-feedback .form-control-feedback {
    top: 0;
    right: 15px;
}
.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
.fade.in {
    opacity: 1;
}
.collapse {
    display: none;
}
.collapse.in {
    display: block;
}
tr.collapse.in {
    display: table-row;
}
tbody.collapse.in {
    display: table-row-group;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    -o-transition: height 0.35s ease;
    transition: height 0.35s ease;
}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.dropdown {
    position: relative;
}
.dropdown-toggle:focus {
    outline: 0;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 15px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}
.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}
.dropdown-menu .divider {
    height: 1px;
    margin: 10px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}
.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.5;
    color: #333333;
    white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #ffffff;
    text-decoration: none;
    outline: 0;
    background-color: #75b08a;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    cursor: not-allowed;
}
.open > .dropdown-menu {
    display: block;
}
.open > a {
    outline: 0;
}
.dropdown-menu-right {
    left: auto;
    right: 0;
}
.dropdown-menu-left {
    left: 0;
    right: auto;
}
.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 13px;
    line-height: 1.5;
    color: #777777;
    white-space: nowrap;
}
.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990;
}
.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px solid;
    content: '';
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px;
}
@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0;
    }
    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto;
    }
}
.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
.nav > li {
    position: relative;
    display: block;
}
.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 12px;
}
.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
}
.nav > li.disabled > a {
    color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
    color: #777777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: rgba(0, 0, 0, 0);
    border-color: #75b08a;
}
.nav .nav-divider {
    height: 1px;
    margin: 10px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}
.nav > li > a > img {
    max-width: none;
}
.nav-tabs {
    border-bottom: 1px solid #dddddd;
}
.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.5;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
    border-color: #dedede #dedede #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #555555;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-bottom-color: transparent;
    cursor: default;
}
.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0;
}
.nav-tabs.nav-justified > li {
    float: none;
}
.nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
}
@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }
    .nav-tabs.nav-justified > li > a {
        margin-bottom: 0;
    }
}
.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #dddddd;
}
@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #dddddd;
        border-radius: 4px 4px 0 0;
    }
    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #ffffff;
    }
}
.nav-stacked > li {
    float: none;
}
.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0;
}
.nav-justified {
    width: 100%;
}
.nav-justified > li {
    float: none;
}
.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
}
@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }
    .nav-justified > li > a {
        margin-bottom: 0;
    }
}
.nav-tabs-justified {
    border-bottom: 0;
}
.nav-tabs-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border: 1px solid #dddddd;
}
@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #dddddd;
        border-radius: 4px 4px 0 0;
    }
    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #ffffff;
    }
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}
.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}
a.label:hover,
a.label:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}
.label:empty {
    display: none;
}
.btn .label,
.wpcf7-submit .label {
    position: relative;
    top: -1px;
}
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    background-color: #777777;
    border-radius: 10px;
}
.badge:empty {
    display: none;
}
.btn .badge,
.wpcf7-submit .badge {
    position: relative;
    top: -1px;
}
.btn-xs .badge {
    top: 0;
    padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.jumbotron {
    padding: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #dedede;
}
.jumbotron h1,
.jumbotron .h1 {
    color: inherit;
}
.jumbotron p {
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 200;
}
.jumbotron > hr {
    border-top-color: #c5c5c5;
}
.container .jumbotron {
    border-radius: 6px;
}
.jumbotron .container {
    max-width: 100%;
}
@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .container .jumbotron {
        padding-left: 60px;
        padding-right: 60px;
    }
    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 67.5px;
    }
}
.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 22px;
    line-height: 1.5;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
    margin-left: auto;
    margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #75b08a;
}
.thumbnail .caption {
    padding: 9px;
    color: #2d313f;
}
.alert {
    padding: 15px;
    margin-bottom: 22px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert h4 {
    margin-top: 0;
    color: inherit;
}
.alert .alert-link {
    font-weight: bold;
}
.alert > p,
.alert > ul {
    margin-bottom: 0;
}
.alert > p + p {
    margin-top: 5px;
}

.media,
.media-body {
    overflow: hidden;
    zoom: 1;
}
.media,
.media .media {
    margin-top: 15px;
}
.media:first-child {
    margin-top: 0;
}
.media-object {
    display: block;
}
.media-heading {
    margin: 0 0 5px;
}
.media > .pull-left {
    margin-right: 10px;
}
.media > .pull-right {
    margin-left: 10px;
}
.media-list {
    padding-left: 0;
    list-style: none;
}
.list-group {
    margin-bottom: 20px;
    padding-left: 0;
}
.panel {
    margin-bottom: 22px;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel > .list-group {
    margin-bottom: 0;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15);
}
.close {
    float: right;
    font-size: 22.5px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.modal-open {
    overflow: hidden;
}
.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.modal-body {
    position: relative;
    padding: 15px;
}
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn,
.modal-footer .wpcf7-submit + .wpcf7-submit {
    margin-left: 5px;
    margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn,
.modal-footer .btn-group .wpcf7-submit + .wpcf7-submit {
    margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
@media (min-width: 768px) {
    .modal-sm {
        width: 300px;
    }
}
@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0);
}
.tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90);
}
.tooltip.top {
    margin-top: -3px;
    padding: 5px 0;
}
.tooltip.right {
    margin-left: 3px;
    padding: 0 5px;
}
.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0;
}
.tooltip.left {
    margin-left: -3px;
    padding: 0 5px;
}
.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #000000;
    border-radius: 4px;
}
.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}
.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}
.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}
.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}
.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}
.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    white-space: normal;
}
.popover.top {
    margin-top: -10px;
}
.popover.right {
    margin-left: 10px;
}
.popover.bottom {
    margin-top: 10px;
}
.popover.left {
    margin-left: -10px;
}
.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: normal;
    line-height: 18px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}
.popover-content {
    padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.popover > .arrow {
    border-width: 11px;
}
.popover > .arrow:after {
    border-width: 10px;
    content: '';
}
.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px;
}
.popover.top > .arrow:after {
    content: ' ';
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #ffffff;
}
.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999999;
    border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
    content: ' ';
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #ffffff;
}
.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px;
}
.popover.bottom > .arrow:after {
    content: ' ';
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #ffffff;
}
.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999999;
    border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
    content: ' ';
    right: 1px;
    border-right-width: 0;
    border-left-color: #ffffff;
    bottom: -10px;
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.nav:before,
.nav:after,
.modal-footer:before,
.modal-footer:after,
.container-boxed:before,
.container-boxed:after,
.container-fullwidth:before,
.container-fullwidth:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.sf-menu:before,
.sf-menu:after,
.noo-menu:before,
.noo-menu:after,
.noo-social:before,
.noo-social:after,
.properties:before,
.properties:after,
.properties .property-entry .property-detail:before,
.properties .property-entry .property-detail:after,
.properties .property-entry .property-info:before,
.properties .property-entry .property-info:after,
.noo-map .gmap-infobox .info-detail:before,
.noo-map .gmap-infobox .info-detail:after,
.agents.grid:before,
.agents.grid:after,
.content:before,
.content:after,
.content-excerpt:before,
.content-excerpt:after {
    content: ' ';
    display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.nav:after,
.modal-footer:after,
.container-boxed:after,
.container-fullwidth:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.sf-menu:after,
.noo-menu:after,
.noo-social:after,
.properties:after,
.properties .property-entry .property-detail:after,
.properties .property-entry .property-info:after,
.noo-map .gmap-infobox .info-detail:after,
.agents.grid:after,
.content:after,
.content-excerpt:after {
    clear: both;
}
.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.pull-right {
    float: right !important;
}
.pull-left {
    float: left !important;
}
.hide {
    display: none !important;
}
.show {
    display: block !important;
}
.invisible {
    visibility: hidden;
}
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.hidden {
    display: none !important;
    visibility: hidden !important;
}
.affix {
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
@-ms-viewport {
    width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}
@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
    table.visible-xs {
        display: table;
    }
    tr.visible-xs {
        display: table-row !important;
    }
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }
    table.visible-sm {
        display: table;
    }
    tr.visible-sm {
        display: table-row !important;
    }
    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }
    table.visible-md {
        display: table;
    }
    tr.visible-md {
        display: table-row !important;
    }
    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
    table.visible-lg {
        display: table;
    }
    tr.visible-lg {
        display: table-row !important;
    }
    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}
.visible-print {
    display: none !important;
}
@media print {
    .visible-print {
        display: block !important;
    }
    table.visible-print {
        display: table;
    }
    tr.visible-print {
        display: table-row !important;
    }
    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}
.visible-print-block {
    display: none !important;
}
@media print {
    .visible-print-block {
        display: block !important;
    }
}
.visible-print-inline {
    display: none !important;
}
@media print {
    .visible-print-inline {
        display: inline !important;
    }
}
.visible-print-inline-block {
    display: none !important;
}
@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}
@media print {
    .hidden-print {
        display: none !important;
    }
}
select {
    background-color: #ffffff;
    font-size: 15px;
    padding: 5px;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    width: 100%;
}
.bg-cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}
.bg-transparent {
    background-color: transparent;
}
img {
    border: 0;
    max-width: 100%;
}
.site {
    position: relative;
}
.site:before,
.site:after {
    content: ' ';
    display: table;
}
.site:after {
    clear: both;
}
.site:before,
.site:after {
    content: ' ';
    display: table;
}
.site:after {
    clear: both;
}
body {
    position: relative;
}
body.nice-scroll {
    position: relative;
    padding-right: 10px !important;
}

a {
    -webkit-transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    -o-transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
a:hover,
a:focus {
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-style: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
    color: #030304;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.h1 a:hover,
.h2 a:hover,
.h3 a:hover,
.h4 a:hover,
.h5 a:hover,
.h6 a:hover {
    color: #75b08a;
    text-decoration: none;
}
body {
    font-weight: 300;
    font-style: normal;
}
iframe {
    max-width: 100%;
}
h1.white,
h2.white,
h3.white,
h4.white,
h5.white {
    color: white;
}
h1.text-shadow,
h2.text-shadow,
h3.text-shadow,
h4.text-shadow,
h5.text-shadow {
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
pre code {
    white-space: normal;
}
.block-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.list-center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}
.container-boxed {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 768px) {
    .container-boxed {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container-boxed {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container-boxed {
        width: 1200px;
    }
}
.container-boxed.max {
    max-width: 100%;
}
.container-boxed.offset {
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .container-boxed {
        width: 100%;
    }
    .container-boxed.max {
        max-width: 100%;
    }
    .container-boxed.offset {
        padding-top: 0;
        padding-bottom: 0;
        margin: 40px auto;
    }
}
.container-fullwidth {
    overflow: hidden;
}
.noo-main.left-sidebar {
    float: right;
}
@media (max-width: 767px) {
    .noo-main.left-sidebar {
        float: none;
    }
}
@media (min-width: 992px) {
    .noo-sidebar .noo-sidebar-wrapper {
        padding-right: 30px;
        padding-left: 30px;
    }
}
.main-content > .row {
    position: relative;
}
.noo-sidebar-line {
    display: none;
}
@media (min-width: 992px) {
    .page-left-sidebar .main-content {
        position: relative;
    }
    .page-left-sidebar .main-content:before {
        display: block;
        position: absolute;
        content: '';
        top: 0;
        left: calc(33.3333% - 15px);
        left: -moz-calc(33.3333% - 15px);
        left: -webkit-calc(33.3333% - 15px);
        width: 1px;
        height: 100%;
        background: #e5e5e5;
    }
    .page-right-sidebar .main-content {
        position: relative;
    }
    .page-right-sidebar .main-content:before {
        display: block;
        position: absolute;
        content: '';
        top: 0;
        right: calc(33.3333% - 15px);
        right: -moz-calc(33.3333% - 15px);
        right: -webkit-calc(33.3333% - 15px);
        width: 1px;
        height: 100%;
        background: #e5e5e5;
    }
}
.wp-caption {
    background: none repeat scroll 0 0 #f7f7f7;
    border: 1px solid #eee;
    max-width: 100%;
    padding: 5px;
}
.wp-caption .wp-caption-text {
    text-align: center;
    margin-top: 10px;
}
#wpstats {
    display: none;
}
.sticky {
    margin-bottom: 30px;
}
.alignleft {
    float: left;
    margin-right: 15px;
}
.alignright {
    float: right;
    margin-left: 15px;
}
.aligncenter {
    display: block;
    margin: 15px auto;
}
.page-title {
    margin-bottom: 30px;
    padding: 0;
}
.page-title small {
    margin: 0;
    padding: 0;
    font-size: 26px;
    font-weight: 300;
}
.colophon {
    background: url('../images/bg-footer.png') no-repeat scroll 0 center
        transparent;
}
.colophon:before,
.colophon:after {
    content: ' ';
    display: table;
}
.colophon:after {
    clear: both;
}
.colophon:before,
.colophon:after {
    content: ' ';
    display: table;
}
.colophon:after {
    clear: both;
}
.wigetized .widget {
    color: #f7f7f7;
}
.wigetized .widget .widget-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
}
.wigetized .widget ul li,
.wigetized .widget ol li {
    border-color: rgba(245, 245, 245, 0.15);
}
.wigetized .widget ul li a,
.wigetized .widget ol li a {
    color: #f5f5f5;
}
.wigetized .widget ul li a:hover,
.wigetized .widget ol li a:hover {
    color: #f0e797;
}
.wigetized .widget.widget_recent_entries li a {
    color: #f5f5f5;
}
.wigetized .widget.widget_recent_entries li a:hover {
    color: #f0e797;
}
.colophon.site-info {
    background: #a2a7a3;
}
.colophon.site-info .footer-menu {
    background-color: #567560;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #567560;
}
.colophon.site-info .footer-menu .noo-menu li > a:hover,
.colophon.site-info .footer-menu .noo-menu li > a:focus {
    background: none;
    text-decoration: underline;
}
.colophon.site-info .footer-menu .noo-menu li.current-menu-item > a {
    background: none;
}
.colophon.site-info .footer-more {
    padding-top: 35px;
    padding-bottom: 35px;
}
.colophon.site-info .footer-more .noo-social {
    text-align: right;
}
.colophon.site-info .footer-more .noo-social a {
    font-size: 25px;
}
.noo-menu {
    margin-right: auto !important;
    margin-left: auto !important;
}
.footer-menu .noo-menu li > a {
    color: #aeaeae;
}

.gm-style img {
    max-width: none;
}
.gm-style label {
    width: auto;
    display: inline;
}
.btn,
.wpcf7-submit,
.content-footer .content-tags a {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.wpcf7-submit:focus,
.wpcf7-submit:active:focus,
.wpcf7-submit.active:focus {
    outline-offset: -2px;
    -webkit-box-shadow: 0 0 2px rgba(117, 176, 138, 0.8);
    box-shadow: 0 0 2px rgba(117, 176, 138, 0.8);
    border-color: #75b08a;
}
.btn:hover,
.btn:focus,
.wpcf7-submit:hover,
.wpcf7-submit:focus {
    color: #94a2a7;
    text-decoration: none;
}
.btn:active,
.btn.active,
.wpcf7-submit:active,
.wpcf7-submit.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.wpcf7-submit.disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-default,
.content-footer .content-tags a {
    color: #94a2a7;
    background-color: #ededed;
    border-color: transparent, #75b08a, #ffffff, #75b08a;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-default:active,
.btn-default.active {
    background-image: none;
}
.btn-default.disabled,
.btn-default.disabled:hover,
.btn-default.disabled:focus,
.btn-default.disabled:active,
.btn-default.disabled.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-default .badge {
    color: #ededed;
    background-color: #94a2a7;
}
.btn-primary {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-primary:active,
.btn-primary.active {
    background-image: none;
}
.btn-primary.disabled,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled:active,
.btn-primary.disabled.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-primary .badge {
    color: #75b08a;
    background-color: #ffffff;
}

.btn-success {
    color: #ffffff;
    background-color: #5cb85c;
    border-color: #4cae4c;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-success:active,
.btn-success.active {
    background-image: none;
}
.btn-success.disabled,
.btn-success.disabled:hover,
.btn-success.disabled:focus,
.btn-success.disabled:active,
.btn-success.disabled.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-success .badge {
    color: #5cb85c;
    background-color: #ffffff;
}
.btn-info {
    color: #ffffff;
    background-color: #5bc0de;
    border-color: #46b8da;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-info:active,
.btn-info.active {
    background-image: none;
}
.btn-info.disabled,
.btn-info.disabled:hover,
.btn-info.disabled:focus,
.btn-info.disabled:active,
.btn-info.disabled.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-info .badge {
    color: #5bc0de;
    background-color: #ffffff;
}
.btn-warning {
    color: #ffffff;
    background-color: #f0ad4e;
    border-color: #eea236;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-warning:active,
.btn-warning.active {
    background-image: none;
}
.btn-warning.disabled,
.btn-warning.disabled:hover,
.btn-warning.disabled:focus,
.btn-warning.disabled:active,
.btn-warning.disabled.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-warning .badge {
    color: #f0ad4e;
    background-color: #ffffff;
}
.btn-danger {
    color: #ffffff;
    background-color: #d9534f;
    border-color: #d43f3a;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-danger:active,
.btn-danger.active {
    background-image: none;
}
.btn-danger.disabled,
.btn-danger.disabled:hover,
.btn-danger.disabled:focus,
.btn-danger.disabled:active,
.btn-danger.disabled.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #75b08a;
}
.btn-danger .badge {
    color: #d9534f;
    background-color: #ffffff;
}
.btn-link {
    color: #75b08a;
    font-weight: normal;
    cursor: pointer;
    border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
    color: #4f8a64;
    text-decoration: underline;
    background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none;
}
.btn-lg {
    padding: 10px 16px;
    font-size: 19px;
    line-height: 1.33;
    border-radius: 6px;
}
.btn-sm {
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 3px;
}
.btn-xs {
    padding: 1px 5px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 3px;
}
.btn-block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.btn-block + .btn-block {
    margin-top: 5px;
}
input[type='submit'].btn-block,
input[type='reset'].btn-block,
input[type='button'].btn-block {
    width: 100%;
}
.navbar {
    position: relative;
    height: 70px;
    z-index: 1000;
    background-color: #ffffff;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-boxed {
    position: relative;
}
@media (min-width: 992px) {
    .navbar-header {
        float: left;
    }
}
.navbar-collapse {
    float: right;
}
@media (max-width: 991px) {
    .navbar-collapse {
        float: none;
        clear: both;
    }
}
@media (min-width: 992px) {
    .navbar-collapse {
        width: auto;
    }
    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
}
.navbar-brand {
    float: left;
    font-family: 'Lato';
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    height: 70px;
    line-height: 70px;
}
.navbar-brand,
.navbar-brand:hover {
    color: #999999;
}
.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none;
}
.navbar-brand img {
    max-height: 100%;
    vertical-align: baseline;
}
.navbar-brand .noo-logo-img,
.navbar-brand .noo-logo-retina-img {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    position: relative;
    vertical-align: middle;
}
.navbar-brand .noo-logo-img {
    display: block;
}
.navbar-brand .noo-logo-retina-img,
.navbar-brand .noo-logo-floating {
    display: none;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (min--moz-device-pixel-ratio: 2),
    only screen and (-o-min-device-pixel-ratio: 2/1),
    only screen and (min-device-pixel-ratio: 2),
    only screen and (min-resolution: 192dpi),
    only screen and (min-resolution: 2dppx) {
    .navbar-brand .noo-logo-img {
        display: none;
    }
    .navbar-brand .noo-logo-retina-img {
        display: block;
    }
}
.navbar-toggle {
    position: relative;
    float: right;
    height: 70px;
    padding: 0 15px;

    svg path {
        fill: #222222;
    }
}
@media (min-width: 992px) {
    .navbar-toggle {
        display: none;
    }
}
.sf-menu,
.noo-menu,
.sf-menu *,
.noo-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sf-menu a,
.noo-menu a {
    display: block;
    position: relative;
    text-decoration: none;
}
.sf-menu > li,
.noo-menu > li {
    display: inline-block;
}
@media (max-width: 991px) {
    .sf-menu > li,
    .noo-menu > li {
        display: block;
    }
}
.sf-menu li,
.noo-menu li {
    position: relative;
}
.sf-menu li:hover > ul.sub-menu,
.noo-menu li:hover > ul.sub-menu,
.sf-menu li .sfHover > ul.sub-menu,
.noo-menu li .sfHover > ul.sub-menu {
    display: block;
}
.sf-menu ul.sub-menu,
.noo-menu ul.sub-menu {
    position: absolute;
    display: none;
    top: auto;
    left: auto;
    width: auto;
    min-width: 200px;
}
.noo-menu li > a {
    color: #75b08a;
    padding: 10px 12px;
}
.noo-menu li > a:hover,
.noo-menu li > a:focus {
    background-color: rgba(0, 0, 0, 0);
    color: #4f8a64;
}
.noo-menu li.current-menu-item > a,
.noo-menu li.active > a {
    background-color: rgba(0, 0, 0, 0);
    color: #4f8a64;
}
.noo-menu li.disabled > a,
.noo-menu li.disabled > a:hover,
.noo-menu li.disabled > a:focus {
    color: #777777;
    background-color: #777777;
}
.noo-menu ul.sub-menu {
    z-index: 1030;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}
.noo-menu ul.sub-menu ul.sub-menu {
    top: 10px;
    left: 95%;
    right: auto;
}
.sf-arrows .sf-with-ul:after {
    content: '\f107';
    font-family: 'FontAwesome';
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    speak: none;
    padding-left: 5px;
}
@media (max-width: 991px) {
    .sf-arrows .sf-with-ul:after {
        float: right;
    }
}
.sf-arrows .sub-menu .sf-with-ul:after {
    content: '\f105';
    font-family: 'FontAwesome';
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    speak: none;
    right: 15px;
    position: absolute;
}
.navbar {
    border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 991px) {
    .navbar-nav > li > a {
        font-weight: bold !important;
    }
}
@media (max-width: 991px) {
    .navbar-nav li {
        border-top: 1px solid #cccccc;
        background-color: #ffffff;
    }
}
.navbar-nav li > a {
    color: #2d313f;
    padding: 10px 12px;
    line-height: 1;
    font-size: 14px;
}
.navbar-nav li > a:hover,
.navbar-nav li > a:focus {
    color: #4f8a64;
    background-color: rgba(0, 0, 0, 0);
}
.navbar-nav li:hover > a,
.navbar-nav li .sfHover > a {
    background-color: rgba(0, 0, 0, 0);
    color: #4f8a64;
}
.navbar-nav li.current-menu-item > a,
.navbar-nav li.active > a {
    background-color: rgba(0, 0, 0, 0);
    color: #75b08a;
}
.navbar-nav li.disabled > a,
.navbar-nav li.disabled > a:hover,
.navbar-nav li.disabled > a:focus {
    color: #cccccc;
    background-color: rgba(0, 0, 0, 0);
}
.navbar-nav ul.sub-menu {
    z-index: 1030;
    font-size: 14px;
}
@media (max-width: 991px) {
    .navbar-nav ul.sub-menu > li > a {
        padding-left: 25px;
    }
    .navbar-nav ul.sub-menu > li li a {
        padding-left: 35px;
    }
}
.navbar-nav ul.sub-menu li {
    display: block;
}
.navbar-nav ul.sub-menu li > a {
    color: #333333;
    border-top: 1px solid #f1f0f0;
    line-height: 22px;
    padding: 7px 20px;
}
.navbar-nav ul.sub-menu li > a:hover {
    color: #4f8a64;
    background-color: #f5f5f5;
}
.navbar-nav ul.sub-menu li:hover .navbar-nav ul.sub-menu li.sfHover > a {
    color: #4f8a64;
    background-color: #f5f5f5;
}
.navbar-nav ul.sub-menu li.current-menu-item > a {
    color: #4f8a64;
    background-color: #f5f5f5;
}
@media (min-width: 992px) {
    .navbar-nav {
        float: right;
    }
    .navbar-nav > li > ul.sub-menu {
        left: 0;
        right: auto;
    }
    .navbar-nav > li > ul.sub-menu ul.sub-menu {
        top: 10px;
        left: auto;
        right: 95%;
    }
}
@media (max-width: 991px) {
    .navbar-nav > li {
        float: none;
    }
    .navbar-nav li > a {
        white-space: normal;
    }
    .navbar-nav li {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
    .navbar-nav ul.sub-menu {
        position: static;
        float: none;
        max-width: none;
        padding: 0;
        border: none;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
    .navbar-nav ul.sub-menu:before,
    .navbar-nav ul.sub-menu:after {
        display: none;
    }
    .navbar-nav ul.sub-menu a {
        font-size: 14px;
    }
}
@media (min-width: 992px) {
    .navbar .navbar-brand {
        line-height: 70px;
    }
    .navbar .navbar-nav > li > a {
        padding-top: 0;
        padding-bottom: 0;
        line-height: 70px;
        font-weight: 500;
    }
}
@media (min-width: 992px) {
    .navbar-nav.sf-menu > li ul.sub-menu {
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
        background-color: #ffffff;
    }
    .navbar-nav.sf-menu > li > ul.sub-menu {
        border-top: 2px solid #75b08a;
    }
    .navbar-nav.sf-menu > li > ul.sub-menu:before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 35px;
        top: -10px;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #75b08a;
        border-left: 8px solid transparent;
    }
    .navbar-nav.sf-menu > li li.fly-left > ul.sub-menu {
        left: auto;
        right: 95%;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    }
    .navbar-nav.sf-menu > li.align-left > ul.sub-menu {
        left: 0;
        right: auto;
    }
    .navbar-nav.sf-menu > li.align-right > ul.sub-menu {
        left: auto;
        right: 0;
    }
    .navbar-nav.sf-menu > li.align-right > ul.sub-menu:before {
        right: 35px !important;
        left: auto !important;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #75b08a;
        border-left: 8px solid transparent;
    }
    .navbar-nav.sf-menu > li.align-center > ul.sub-menu {
        left: 50% !important;
        right: auto;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    .navbar-nav.sf-menu > li.align-center > ul.sub-menu:before {
        right: 50%;
        left: auto;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        border-right: 8px solid transparent;
        border-bottom: 8px solid #75b08a;
        border-left: 8px solid transparent;
    }
    .navbar-nav.sf-menu > li.full-width {
        position: inherit !important;
    }
    .navbar-nav.sf-menu > li.full-width > ul.sub-menu {
        width: 100%;
        left: 0;
    }
    .navbar-nav.sf-menu > li.full-width.sfHover > ul.sub-menu:before {
        border: 0;
    }
    .navbar-nav.sf-menu > li.full-width.sfHover > a {
        position: relative;
    }
    .navbar-nav.sf-menu > li.full-width.sfHover > a:before {
        content: '';
        position: absolute;
        left: 35px;
        bottom: 0px;
        border-right: 8px solid transparent;
        border-bottom: 10px solid #21c2f8;
        border-left: 0px solid transparent;
    }
}
@media (min-width: 992px) {
    .navbar-left {
        float: left !important;
    }
    .navbar-right {
        float: right !important;
    }
}
.noo-navbar {
    display: inline-block;
    width: 100%;
}
.nooicon {
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    speak: none;
}
.nooicon:before {
    speak: none;
    line-height: 1;
}
a [class^='fa-'],
a [class*=' fa-'] {
    display: inline-block;
}
.nav [class^='fa-'],
.nav [class*=' fa-'] {
    display: inline;
    margin-right: 0.5em;
}
li [class^='fa-'],
.nav li [class^='fa-'],
li [class*=' fa-'],
.nav li [class*=' fa-'] {
    display: inline-block;
    width: 1.25em;
    text-align: center;
}
[class^='fa-'].left,
[class*=' fa-'].left {
    margin-right: 0.3em;
}
[class^='fa-'].right,
[class*=' fa-'].right {
    margin-left: 0.3em;
}
.noo-social {
    font-weight: 400;
    line-height: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.noo-social a {
    text-align: center;
    margin-left: 8px;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff;
}
.noo-social a i {
    display: block;
    width: 38px;
    height: 38px;
    border: 2px solid;
    color: #ffffff;
    border-radius: 50%;
    line-height: 38px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.noo-social a i:hover {
    background: transparent;
}
.noo-social a .fa-facebook {
    background: #3c599f;
    border-color: #3c599f;
}
.noo-social a .fa-facebook:hover {
    color: #3c599f;
}
.noo-social a .fa-twitter {
    background: #5dd7fc;
    border-color: #5dd7fc;
}
.noo-social a .fa-twitter:hover {
    color: #5dd7fc;
}
.noo-social a .fa-pinterest {
    background: #e63d44;
    border-color: #e63d44;
}
.noo-social a .fa-pinterest:hover {
    color: #e63d44;
}
.noo-social a .fa-linkedin {
    background: #0077b5;
    border-color: #0077b5;
}
.noo-social a .fa-linkedin:hover {
    color: #0077b5;
}
.noo-social a:hover {
    color: #4f8a64;
}
.noo-social a:first-child {
    margin-left: 0px;
}
@-webkit-keyframes progress {
    0% {
        background-position: 0;
    }
    100% {
        background-position: -7px;
    }
}
@-moz-keyframes progress {
    0% {
        background-position: 0;
    }
    100% {
        background-position: -7px;
    }
}
@-ms-keyframes progress {
    0% {
        background-position: 0;
    }
    100% {
        background-position: -7px;
    }
}
@-o-keyframes progress {
    0% {
        background-position: 0;
    }
    100% {
        background-position: -7px;
    }
}
.tp-bullets.simplebullets.round .bullet {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 12px;
    width: 12px;
}
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.round .bullet:hover {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 0 2px #ffffff;
    box-shadow: 0 0 0 2px #ffffff;
    margin: 0 5px;
}
.wpcf7-form-control:not(.wpcf7-submit) {
    margin-top: 5px;
    margin-bottom: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wpcf7-form-control:not(.wpcf7-submit).wpcf7-checkbox,
.wpcf7-form-control:not(.wpcf7-submit).wpcf7-radio {
    height: auto;
}
.wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
    margin-bottom: 24px;
}
div.wpcf7 .screen-reader-response {
    border: 0 none;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.wpcf7-submit {
    color: #bdb254;
    background-color: #f0e797;
    border-color: #f0e797;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    padding: 5px 16px;
    margin-top: 0;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 23px;
}
.wpcf7-submit:hover,
.wpcf7-submit:focus,
.wpcf7-submit:active,
.wpcf7-submit.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #bdb254;
}
.wpcf7-submit:active,
.wpcf7-submit.active {
    background-image: none;
}
.wpcf7-submit.disabled,
.wpcf7-submit.disabled:hover,
.wpcf7-submit.disabled:focus,
.wpcf7-submit.disabled:active,
.wpcf7-submit.disabled.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #bdb254;
}
.wpcf7-submit .badge {
    color: #f0e797;
    background-color: #bdb254;
}
.wpcf7-not-valid-tip {
    color: #f56e6e;
    font-size: 13px;
    display: block;
}
.wpcf7-display-none {
    display: none;
}
div.wpcf7-response-output {
    padding: 4px 8px;
    text-align: right;
    margin-top: 5px;
    font-size: 13px;
}
div.wpcf7-validation-errors {
    border: 1px solid #f56e6e;
}
.contact-actions {
    display: block;
    text-align: right;
}
.contact-form:before {
    content: '';
    background: #eee;
    width: 98%;
    margin-right: 15px;
    height: 1px;
    margin-top: -50px;
    left: 0;
    z-index: 999;
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .contact-form .contact-desc {
        padding-left: 0 !important0;
    }
}
.contact-info {
    background: #f8f8f8;
    border: 1px solid #eeeeee;
    font-size: 13px;
}
.contact-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-info ul li {
    line-height: 100%;
}
.contact-info ul li b {
    width: 40%;
    text-align: right;
    padding-right: 40px;
    display: inline-block;
}
.contact-info1 {
    position: absolute !important;
    right: 60%;
    top: 150px;
    z-index: 999;
    background: #f8f8f8;
    border: 1px solid #eeeeee;
    font-size: 13px;
    padding: 10px !important;
}
.contact-info1 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-info1 ul li {
    line-height: 180%;
}
.contact-info1 ul li b {
    width: 40%;
    text-align: right;
    padding-right: 40px;
    display: inline-block;
}
@media (max-width: 767px) {
    .contact-info1 {
        right: 20%;
        top: 550px;
    }
}
@media (max-width: 991px) {
    .contact-info1 {
        top: 550px;
    }
}
.contact-desc1 {
    width: 65%;
}
.contact-desc1 .wpcf7-textarea {
    max-height: 150px;
}
@media (max-width: 767px) {
    .contact-desc1 {
        width: 100%;
        padding-top: 30px !important;
        padding-left: 30px !important;
    }
}
@media (max-width: 991px) {
    .contact-desc1 {
        padding-top: 30px !important;
        padding-left: 30px !important;
    }
}
#cf7-email-input {
    background: white;
    border-radius: 100vh;
    padding: 1rem 2rem;
    color: rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#cf7-submit-button {
    border-top-right-radius: 100vh;
    border-bottom-right-radius: 100vh;
    width: 50%;
    margin-top: 20px;
    height: 50px;
    background: #ededed;
    color: #555555;
    border-color: #ededed;
}
.form-control,
.wpcf7-form-control:not(.wpcf7-submit),
.chosen-container-single,
.chosen-container-multi .chosen-choices {
    font-size: 15px;
    border: medium none;
    border-radius: 3px;
    padding: 8px;
    width: 100%;
    height: 50px;
    border: 1px solid #dedede;
    -webkit-box-shadow: none;
    box-shadow: none;
}
select[multiple].form-control-chosen,
select[size].form-control-chosen {
    height: 50px;
}
.chosen-container-single,
.chosen-container-multi .chosen-choices {
    background-image: none;
    min-height: 50px;
    height: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    padding: 0;
}
[data-toggle='checkbox'],
[data-toggle='radio'] {
    display: none;
    outline: medium none !important;
}
.form-group .dropdown > span {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    display: block;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.form-group .dropdown > span svg {
    opacity: 0.5;
    border-left: 1px solid #e5e5e5;
    display: block;
    height: 33px;
    position: absolute;
    right: 0;
    top: 0;
    width: 33px;
}
.form-group .dropdown .dropdown-menu {
    width: 100%;
    border: 1px solid #e5e5e5;
    padding: 0;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.175);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.175);
    background: #fff;
}
.form-group .dropdown .dropdown-menu > li {
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
    margin: 0;
}
.form-group .dropdown .dropdown-menu > li:last-child {
    border: none;
}
.form-group .dropdown .dropdown-menu > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: inherit;
}
.form-group .dropdown .dropdown-menu > li > a:focus,
.form-group .dropdown .dropdown-menu > li > a:hover {
    background-color: #75b08a;
    color: #ffffff;
}
@media (max-width: 767px) {
    .form-group .noo-box-select {
        position: relative;
    }
    .form-group .noo-box-select:after {
        content: none;
        font-family: 'FontAwesome';
        position: absolute;
        right: 6px;
        top: 13px;
    }
}
.form-control-flat {
    position: relative;
    text-align: left;
}
.form-control-flat > label {
    position: relative;
    display: block;
    margin: 0;
}
.form-control-flat textarea,
.form-control-flat select,
.form-control-flat input {
    padding: 6px 12px;
    background-color: #ffffff;
    height: 36px;
    padding: 6px 18px;
    line-height: 1.5;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    letter-spacing: 0.5px;
    -webkit-transition:
        border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
    -o-transition:
        border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
    transition:
        border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
    font-size: 15px;
    border: medium none;
    border-radius: 3px;
    padding: 8px;
    width: 100%;
    height: 50px;
    border: 1px solid #dedede;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none repeat scroll 0 0 #fff;
    border-style: solid;
    border-width: 1px;
    border-color: #cccccc;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    display: block;
    outline: none;
    padding-right: 30px;
}
.form-control-flat textarea:focus,
.form-control-flat select:focus,
.form-control-flat input:focus {
    border-color: #95c3a5;
    outline: 0;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(149, 195, 165, 0.6);
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(149, 195, 165, 0.6);
}
.form-control-flat textarea:focus,
.form-control-flat select:focus,
.form-control-flat input:focus {
    border-color: #95c3a5;
    outline: 0;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 4px #75b08a;
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 4px #75b08a;
}
.form-control-flat textarea::-moz-placeholder,
.form-control-flat select::-moz-placeholder,
.form-control-flat input::-moz-placeholder {
    color: #777777;
    opacity: 1;
}
.form-control-flat textarea:-ms-input-placeholder,
.form-control-flat select:-ms-input-placeholder,
.form-control-flat input:-ms-input-placeholder {
    color: #777777;
}
.form-control-flat textarea::-webkit-input-placeholder,
.form-control-flat select::-webkit-input-placeholder,
.form-control-flat input::-webkit-input-placeholder {
    color: #777777;
}
.form-control-flat textarea[disabled],
.form-control-flat select[disabled],
.form-control-flat input[disabled],
.form-control-flat textarea[readonly],
.form-control-flat select[readonly],
.form-control-flat input[readonly],
fieldset[disabled] .form-control-flat textarea,
fieldset[disabled] .form-control-flat select,
fieldset[disabled] .form-control-flat input {
    cursor: not-allowed;
    background-color: #dedede;
    opacity: 1;
}
textarea.form-control-flat textarea,
textarea.form-control-flat select,
textarea.form-control-flat input {
    height: auto;
}
.form-control-flat textarea:focus,
.form-control-flat select:focus,
.form-control-flat input:focus {
    border-color: #95c3a5;
    outline: 0;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(149, 195, 165, 0.6);
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(149, 195, 165, 0.6);
}
.form-control-flat textarea:focus,
.form-control-flat select:focus,
.form-control-flat input:focus {
    border-color: #95c3a5;
    outline: 0;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 4px #75b08a;
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 4px #75b08a;
}
.form-control-flat textarea::-moz-placeholder,
.form-control-flat select::-moz-placeholder,
.form-control-flat input::-moz-placeholder {
    color: #777777;
    opacity: 1;
}
.form-control-flat textarea:-ms-input-placeholder,
.form-control-flat select:-ms-input-placeholder,
.form-control-flat input:-ms-input-placeholder {
    color: #777777;
}
.form-control-flat textarea::-webkit-input-placeholder,
.form-control-flat select::-webkit-input-placeholder,
.form-control-flat input::-webkit-input-placeholder {
    color: #777777;
}
.form-control-flat textarea[disabled],
.form-control-flat select[disabled],
.form-control-flat input[disabled],
.form-control-flat textarea[readonly],
.form-control-flat select[readonly],
.form-control-flat input[readonly],
fieldset[disabled] .form-control-flat textarea,
fieldset[disabled] .form-control-flat select,
fieldset[disabled] .form-control-flat input {
    cursor: not-allowed;
    background-color: #dedede;
    opacity: 1;
}
textarea.form-control-flat textarea,
textarea.form-control-flat select,
textarea.form-control-flat input {
    height: auto;
}
.form-control-flat select + i {
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translate(0px, -50%);
}
.form-control-flat select[multiple] {
    height: auto;
    display: none;
}
.form-control-flat > .radio,
.form-control-flat > .checkbox {
    margin: 0;
    cursor: pointer;
    display: block;
    position: relative;
    padding: 0 0 0 30px;
}
.form-control-flat > .radio input,
.form-control-flat > .checkbox input {
    left: -9999px;
    position: absolute;
}
.form-control-flat > .radio i,
.form-control-flat > .checkbox i {
    background: none repeat scroll 0 0 #fff;
    border-style: solid;
    border-width: 1px;
    display: block;
    height: 22px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    left: 0;
    outline: medium none;
    position: absolute;
    top: 0px;
    border-color: #cccccc;
    width: 22px;
    color: #75b08a;
}
.form-control-flat > .radio i:after,
.form-control-flat > .checkbox i:after {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.1s ease 0s;
    -o-transition: opacity 0.1s ease 0s;
    transition: opacity 0.1s ease 0s;
}
.form-control-flat > .radio input:checked + i:after,
.form-control-flat > .checkbox input:checked + i:after {
    opacity: 1;
    filter: alpha(opacity=100);
}
.form-control-flat .radio {
    min-height: 28px;
}
.form-control-flat .radio i {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.form-control-flat .radio i:after {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    content: '';
    height: 8px;
    left: 6px;
    top: 6px;
    width: 8px;
    position: absolute;
    background: #75b08a;
}
.form-control-flat .checkbox {
    min-height: 28px;
}
.form-control-flat .checkbox i:after {
    content: '\f00c';
    position: relative;
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    padding-left: 5px;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.form-control-flat .checkbox i:after {
    height: 22px;
    left: -3px;
    text-align: center;
    top: -2px;
    width: 22px;
    opacity: 0;
    filter: alpha(opacity=0);
}
@media (max-width: 600px) {
    body {
        position: initial;
    }
}
.nav-tabs {
    border-bottom: 0;
}
.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}
@media (max-width: 767px) {
    .nav-tabs > li {
        float: none;
        margin-bottom: 2px;
        width: 100% !important;
    }
}
.nav-tabs > li > a {
    margin-right: 0px;
    font-size: 19px;
    padding: 10px 0px;
    color: #302e38;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 0;
}
.nav-tabs > li > a:hover {
    border-color: transparent;
    background-color: #75b08a;
    color: #fff;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #75b08a;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-top-color: #dddddd;
    border-bottom-color: transparent;
    cursor: default;
}
@media (max-width: 767px) {
    .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:hover,
    .nav-tabs > li.active > a:focus {
        border-bottom-color: #dddddd;
    }
}
.tab-content > .tab-pane {
    display: none;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    padding: 40px 30px;
    font-size: 15px;
}
.tab-content > .active {
    display: block;
}
.alert {
    border-radius: 0;
    padding: 15px;
    font-size: 15px;
}
.alert > p + p {
    padding-left: 8px;
}
.label {
    font-size: 13px;
    font-weight: 300;
    padding: 0.3em 1em 0.4em;
}

.noo-block-grid {
    display: block;
    overflow: hidden;
    padding: 0;
    list-style: disc;
}
.noo-block-grid > li {
    display: block;
    height: auto;
    float: left;
}
.noo-block-grid > li > img.noo-img-thumbnail {
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-transition:
        border 0.3s ease,
        box-shadow 0.3s ease;
    transition:
        border 0.3s ease,
        box-shadow 0.3s ease;
}
.noo-block-grid.two-col {
    margin: 1.313em -1.25%;
}
.noo-block-grid.two-col > li {
    width: 50%;
    padding: 1.25%;
}
.noo-block-grid.two-col > li:nth-child(2n + 1) {
    clear: both;
}
.noo-block-grid.three-col {
    margin: 1.313em -1%;
}
.noo-block-grid.three-col > li {
    width: 33.33333%;
    padding: 1%;
}
.noo-block-grid.three-col > li:nth-child(3n + 1) {
    clear: both;
}
.noo-block-grid.four-col {
    margin: 1.313em -0.9%;
}
.noo-block-grid.four-col > li {
    width: 25%;
    padding: 0.9%;
}
.noo-block-grid.four-col > li:nth-child(4n + 1) {
    clear: both;
}
.noo-block-grid.five-col {
    margin: 1.313em -0.85%;
}
.noo-block-grid.five-col > li {
    width: 20%;
    padding: 0.85%;
}
.noo-block-grid.five-col > li:nth-child(5n + 1) {
    clear: both;
}
.noo-block-grid.six-col {
    margin: 1.313em -0.8%;
}
.noo-block-grid.six-col > li {
    width: 16.66666%;
    padding: 0.8%;
}
.noo-block-grid.six-col > li:nth-child(6n + 1) {
    clear: both;
}
.pressable {
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 -2px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 -2px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: -webkit-box-shadow 0.1s ease-in-out;
    -moz-transition: -moz-box-shadow 0.1s ease-in-out;
    -o-transition: -o-box-shadow 0.1s ease-in-out;
    transition: box-shadow 0.1s ease-in-out;
    -webkit-transition:
        background-color 0.2s ease-in-out,
        -webkit-transform 0.1s ease-in-out;
    -moz-transition:
        background-color 0.2s ease-in-out,
        -moz-transform 0.1s ease-in-out;
    -o-transition:
        background-color 0.2s ease-in-out,
        -o-transform 0.1s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        transform 0.1s ease-in-out;
}
.pressable:active {
    outline: none;
    webkit-box-shadow:
        inset rgba(255, 255, 255, 0.6) 0 0.3em 0.3em,
        inset rgba(0, 0, 0, 0.2) 0 -0.1em 0.3em,
        rgba(0, 0, 0, 0.4) 0 0.1em 1px,
        rgba(0, 0, 0, 0.2) 0 0.2em 6px;
    -moz-box-shadow:
        inset rgba(255, 255, 255, 0.6) 0 0.3em 0.3em,
        inset rgba(0, 0, 0, 0.2) 0 -0.1em 0.3em,
        rgba(0, 0, 0, 0.4) 0 0.1em 1px,
        rgba(0, 0, 0, 0.2) 0 0.2em 6px;
    -moz-transform: translateY(0.2em);
    transform: translateY(0.2em);
}
.icon-right i {
    padding-left: 5px;
}
.btn,
.wpcf7-submit,
.content-footer .content-tags a {
    -webkit-transition: border-color color 0.2s ease;
    -o-transition: border-color color 0.2s ease;
    transition: border-color color 0.2s ease;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}
.btn.square,
.wpcf7-submit.square {
    border-radius: 0;
}
.btn.pill,
.wpcf7-submit.pill {
    border-radius: 100em;
}
.btn.rounded,
.wpcf7-submit.rounded {
    border-radius: 0.225em;
}
.btn.btn-white,
.wpcf7-submit.btn-white {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    -webkit-transition: all 0.2 ease;
    -o-transition: all 0.2 ease;
    transition: all 0.2 ease;
}
.btn.btn-white:hover,
.wpcf7-submit.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    color: #57666e;
}
.btn.btn-white:hover > i,
.wpcf7-submit.btn-white:hover > i {
    color: #57666e !important;
}
.btn i,
.wpcf7-submit i {
    margin-right: 10px;
}
.btn.icon-right i,
.wpcf7-submit.icon-right i {
    padding-left: 10px;
    padding-right: 0px;
}
.btn:hover,
.wpcf7-submit:hover {
    border-color: rgba(255, 255, 255, 0.1) !important;
}
.btn:focus,
.btn:active,
.btn.active,
.wpcf7-submit:focus,
.wpcf7-submit:active,
.wpcf7-submit.active {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn.btn-link:hover,
.wpcf7-submit.btn-link:hover {
    text-decoration: none;
}
.noo-lightbox-item > img {
    display: block;
    margin: 0 auto;
}
.noo-lightbox-item .rounded {
    border-radius: 4px;
}
.noo-lightbox-item .circle {
    border-radius: 50%;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeIn {
    opacity: 0;
}
.fadeIn.go {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.fadeOut.goAway {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.noo-gap {
    margin-left: 0;
    margin-bottom: 0;
    border-color: rgba(0, 0, 0, 0);
}

.noo-slider {
    position: relative;
}

code {
    display: block;
    font-family: Consolas, 'Andale Mono WT', 'Andale Mono', 'Lucida Console',
        'Lucida Sans Typewriter', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono',
        'Liberation Mono', 'Nimbus Mono L', Monaco, 'Courier New', Courier,
        monospace;
    margin: 0 !important;
    color: #555;
    padding: 10px 15px;
    padding-left: 4px !important;
    font-size: 15px;
    line-height: 16px;
    background-color: #f7f7f9;
    white-space: normal;
    word-break: break-all;
    word-wrap: break-word;
    border-radius: 4px;
}
@media (min-width: 760px) {
    .rp-prev {
        top: 50%;
        right: auto;
        margin-left: -70px;
        background: white;
        color: #77b08b;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    .rp-next {
        top: 50%;
        left: auto;
        margin-right: -70px;
        background: white;
        color: #77b08b;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}
.disabled {
    display: none !important;
}
.cf7 {
    display: flex;
}
.cf7 #cf7-email-input {
    background: white;
    border-radius: 100vh;
    padding: 1rem 2rem;
    color: rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.cf7 #cf7-submit-button {
    border-top-right-radius: 100vh;
    border-bottom-right-radius: 100vh;
    width: 50%;
    margin-top: 20px;
    height: 50px;
    background: #ededed;
    color: black;
    border-color: #ededed;
}
.vjs-poster {
    background-size: cover !important;
    opacity: 1 !important;
}
.properties-header {
    display: table;
    width: 100%;
    margin-bottom: 30px;
}
.properties-header .page-title {
    vertical-align: middle;
    display: table-cell;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
.properties-header .properties-toolbar {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
    padding-top: 15px;
}
.properties-header .properties-toolbar a {
    font-size: 19px;
    color: #c9c9c9;
    margin-left: 10px;
}
.properties-header .properties-toolbar a.selected,
.properties-header .properties-toolbar a:hover {
    color: #4f8a64;
}
.properties-header .properties-ordering {
    text-align: left;
    float: right;
    margin-left: 30px;
}
.properties-header .properties-ordering .properties-ordering-label {
    float: left;
    padding-top: 5px;
    padding-right: 10px;
}
.properties-header .properties-ordering .properties-ordering-select {
    float: left;
}
.properties-header .properties-ordering .form-group .dropdown > span {
    width: 150px;
    height: 33px;
    line-height: 29px;
    padding: 0 10px;
}
.properties-header .properties-ordering .form-group .dropdown > span:before {
    height: 33px;
    line-height: 33px;
    width: 33px;
    padding: 0;
}
.properties-header
    .properties-ordering
    .form-group
    .dropdown
    .dropdown-menu
    li
    a {
    font-size: 15px;
    margin: 0;
    padding: 5px 10px;
    color: #2d313f;
    cursor: pointer;
}
@media (max-width: 767px) {
    .properties-header .page-title {
        width: 100%;
    }
    .properties-header .properties-toolbar {
        display: none;
    }
    .properties-header .properties-ordering {
        display: none;
    }
}
.properties {
    position: relative;
}
.properties:before,
.properties:after {
    content: ' ';
    display: table;
}
.properties:after {
    clear: both;
}
.properties:before,
.properties:after {
    content: ' ';
    display: table;
}
.properties:after {
    clear: both;
}
.properties .properties-content:before,
.properties .properties-content:after {
    content: ' ';
    display: table;
}
.properties .properties-content:after {
    clear: both;
}
.properties .properties-content:before,
.properties .properties-content:after {
    content: ' ';
    display: table;
}
.properties .properties-content:after {
    clear: both;
}
.properties .property-entry {
    float: left;
    width: 48%;
    padding: 0 0 0 0;
    margin: 0 4% 30px 0;
    border-bottom: none;
}
.properties .property-entry:nth-of-type(n) {
    clear: none;
}
.properties .property-entry:nth-of-type(2n) {
    margin-right: 0;
}
.properties .property-entry:nth-of-type(2n + 1) {
    clear: both;
}
.properties .property-entry:hover .property-featured .property-category {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}
.properties .property-entry:hover .property-featured .out-link {
    opacity: 1;
    filter: alpha(opacity=100);
}
.properties .property-entry:hover .property-featured .out-link i {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
    .page-fullwidth .properties .property-entry {
        width: 31.33%;
        margin: 0 3% 30px 0;
    }
    .page-fullwidth .properties .property-entry:nth-of-type(n) {
        clear: none !important;
    }
    .page-fullwidth .properties .property-entry:nth-of-type(2n) {
        margin-right: 3%;
    }
    .page-fullwidth .properties .property-entry:nth-of-type(3n) {
        margin-right: 0;
    }
    .page-fullwidth .properties .property-entry:nth-of-type(3n + 1) {
        clear: both !important;
    }
}
.properties .property-entry .property-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding: 15px 15px;
    background: #f9f9f9;
}
.properties .property-entry .property-title small {
    display: none;
}
.properties .property-entry .property-featured {
    margin: 0;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}
.properties .property-entry .property-featured .content-thumb {
    min-height: 175px;
}
.properties .property-entry .property-featured img {
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    width: 100%;
    height: auto;
}
.properties .property-entry .property-featured .featured {
    background: none repeat scroll 0 0 #fff;
    color: #f47606;
    font-size: 24px;
    height: 100px;
    left: -50px;
    line-height: 100px;
    position: absolute;
    text-align: center;
    top: -50px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100px;
    z-index: 10;
}
.properties .property-entry .property-featured .featured i {
    left: 68px;
    position: absolute;
    top: 35px;
}
.properties .property-entry .property-featured .property-category {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: rgba(255, 255, 255, 0.85);
    padding: 0 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    z-index: 10;
}
.properties .property-entry .property-featured .property-category a {
    color: #2d313f;
}
.properties .property-entry .property-featured .property-category a:hover {
    color: #4f8a64;
}
.properties .property-entry .property-featured .property-label {
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 8px 15px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    background: #75b08a;
    font-weight: bold;
    z-index: 10;
}
.properties .property-entry .property-featured .property-label.sold {
    background: #6c6a64;
}
.properties .property-entry .property-featured .out-link {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.properties .property-entry .property-featured .out-link i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: #fff;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    -o-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.properties .property-entry .property-wrap {
    padding-left: 0 !important;
}
.properties .property-entry .property-excerpt {
    display: none;
}
.properties .property-entry .property-detail {
    background: #f9f9f9;
    border-top: 1px solid #e5e5e5;
    display: table;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}
.properties .property-entry .property-detail > div {
    width: 33.33%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 14px 8px;
    border-left: 1px solid #e5e5e5;
}
.properties .property-entry .property-detail > div:first-child {
    border-left: none;
}
.properties .property-entry .property-info {
    border-top: 1px solid #fff;
    background: #ececec;
    display: table;
    width: 100%;
    position: relative;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}
.properties .property-entry .property-info > div {
    padding: 10px 20px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.properties .property-entry .property-info .property-price {
    text-align: center;
    font-size: 18px;
}
.properties .property-entry .property-info .property-action {
    padding: 0;
    font-weight: normal;
    text-align: right;
    padding-right: 15px;
    -webkit-border-radius: 0 0 4px 0;
    border-radius: 0 0 4px 0;
    -webkit-transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    -o-transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.properties .property-entry .property-info .property-action i {
    padding-right: 9px;
    color: #797979;
    cursor: pointer;
    -webkit-animation: 1s zoomIn;
    -o-animation: 1s zoomIn;
    animation: 1s zoomIn;
}
.properties .property-entry .property-info .property-action i:hover {
    cursor: pointer;
    color: #313131;
}
.properties .property-entry .property-info.style-2 .property-price {
    width: 50%;
    font-weight: bold;
}
.properties .property-entry .property-info.style-2 .property-action {
    padding: 0;
    margin: 0;
    text-align: center;
    color: #bdb254;
    background-color: #f0e797;
    border-color: #f0e797;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.properties .property-entry .property-info.style-2 .property-action:hover,
.properties .property-entry .property-info.style-2 .property-action:focus,
.properties .property-entry .property-info.style-2 .property-action:active,
.properties .property-entry .property-info.style-2 .property-action.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #bdb254;
}
.properties .property-entry .property-info.style-2 .property-action:active,
.properties .property-entry .property-info.style-2 .property-action.active {
    background-image: none;
}
.properties .property-entry .property-info.style-2 .property-action.disabled,
.properties
    .property-entry
    .property-info.style-2
    .property-action.disabled:hover,
.properties
    .property-entry
    .property-info.style-2
    .property-action.disabled:focus,
.properties
    .property-entry
    .property-info.style-2
    .property-action.disabled:active,
.properties
    .property-entry
    .property-info.style-2
    .property-action.disabled.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #bdb254;
}
.properties .property-entry .property-info.style-2 .property-action .badge {
    color: #f0e797;
    background-color: #bdb254;
}
.properties .property-entry .property-info.style-2 .property-action > a {
    color: #bdb254;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    background: transparent;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.properties .property-entry .property-info.style-2 .property-action:hover > a {
    color: #fff;
    background: transparent;
}
@media (max-width: 767px) {
    .properties .property-entry {
        width: 100%;
        padding: 0 0 !important;
        margin: 0 0 15px 0 !important;
    }
    .properties .property-entry .property-title {
        text-align: center !important;
    }
    .properties .property-entry .property-price,
    .properties .property-entry .property-action a {
        text-align: center !important;
        padding: 10px !important;
        font-size: 16px !important;
    }
}
.properties .property-info.property-fullwidth-info {
    display: none !important;
}
@media (min-width: 480px) {
    .properties.list .property-entry {
        display: table;
        width: 100%;
        margin: 0 0 30px 0;
        padding: 0 0 30px 0;
    }
    .properties.list .property-featured {
        width: 40%;
        margin: 0;
        display: table-cell;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-border-radius: 4px 0 0 4px;
        border-radius: 4px 0 0 4px;
    }
    .properties.list .property-featured img {
        width: 100%;
        height: auto;
        -webkit-border-radius: 4px 0 0 4px;
        border-radius: 4px 0 0 4px;
    }
    .page-fullwidth .properties.list .property-featured {
        width: 30%;
    }
    .page-fullwidth .properties.list .property-featured img {
        max-height: 220px;
        width: auto;
        width: 100%;
    }
    .properties.list .property-wrap {
        width: 60%;
        display: table-cell;
        vertical-align: top;
        position: inherit;
        background: #f9f9f9;
        -webkit-border-radius: 0 0 4px 4px;
        border-radius: 0 0 4px 4px;
        position: relative;
    }
    .page-fullwidth .properties.list .property-wrap {
        width: 99%;
    }
    .properties.list .property-title {
        font-size: 18px;
        font-weight: bold;
        margin: 0;
        padding: 15px 30px 0;
        background: #f9f9f9;
    }
    .properties.list .property-title small {
        display: none;
    }
    .properties.list .property-summary {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
    }
    .properties.list .property-excerpt {
        display: block;
        padding: 15px 30px;
    }
    .properties.list .property-excerpt > p {
        display: block;
    }
    .properties.list .property-excerpt > p.property-fullwidth-excerpt {
        display: none;
    }
    .properties.list .property-detail {
        background: #f9f9f9;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        display: table;
        width: 100%;
    }
    .properties.list .property-detail > div {
        width: 33.33%;
        display: table-cell;
        height: 100%;
        vertical-align: middle;
        text-align: center;
        padding: 14px 8px;
    }
    .properties.list .property-info {
        border-top: 0px solid #fff;
        background: #ececec;
        display: table;
        width: 100%;
        border-radius: 0;
    }
    .properties.list .property-info > div {
        padding: 10px 30px;
        display: table-cell;
        vertical-align: middle;
        width: 50%;
        text-align: center;
        font-weight: bold;
    }
    .properties.list .property-info .property-price {
        font-size: 18px;
    }
    .properties.list .property-info .property-action {
        padding: 0;
        -webkit-border-radius: 0 0 4px 0;
        border-radius: 0 0 4px 0;
    }
    .properties.list .property-info .property-action a {
        color: #bdb254;
        background-color: #f0e797;
        border-color: #f0e797;
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        padding: 10px 15px;
        display: block;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: bold;
        -webkit-border-radius: 0 0 4px 0;
        border-radius: 0 0 4px 0;
    }
    .properties.list .property-info .property-action a:hover,
    .properties.list .property-info .property-action a:focus,
    .properties.list .property-info .property-action a:active,
    .properties.list .property-info .property-action a.active {
        color: #ffffff;
        background-color: #75b08a;
        border-color: #bdb254;
    }
    .properties.list .property-info .property-action a:active,
    .properties.list .property-info .property-action a.active {
        background-image: none;
    }
    .properties.list .property-info .property-action a.disabled,
    .properties.list .property-info .property-action a.disabled:hover,
    .properties.list .property-info .property-action a.disabled:focus,
    .properties.list .property-info .property-action a.disabled:active,
    .properties.list .property-info .property-action a.disabled.active {
        color: #ffffff;
        background-color: #75b08a;
        border-color: #bdb254;
    }
    .properties.list .property-info .property-action a .badge {
        color: #f0e797;
        background-color: #bdb254;
    }
}
@media (min-width: 992px) {
    .page-fullwidth .properties.list .property-title small {
        display: block;
        font-size: 15px;
        font-style: italic;
        margin-top: 10px;
        font-weight: bold;
        color: #2d313f;
    }
    .page-fullwidth .properties.list .property-excerpt > p {
        display: none;
    }
    .page-fullwidth
        .properties.list
        .property-excerpt
        > p.property-fullwidth-excerpt {
        display: block;
    }
    .page-fullwidth .properties.list .property-summary > .property-detail {
        display: none;
    }
    .page-fullwidth .properties.list .property-summary > .property-info {
        display: none;
    }
    .page-fullwidth .properties.list .property-fullwidth-info.property-info {
        border-top: 1px solid #fff;
        background: #ececec;
        display: table !important;
        width: 100%;
        border-radius: 0;
    }
    .page-fullwidth
        .properties.list
        .property-fullwidth-info.property-info
        > div {
        padding: 10px 30px;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        width: 23%;
        border-right: 1px solid #fff;
    }
    .page-fullwidth
        .properties.list
        .property-fullwidth-info.property-info
        > div:last-child {
        border-right: none;
    }
}
.floor-plan-container {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}
.floor-plan-container .floor-plan-wrap {
    position: relative;
    padding-top: 10px;
}
.floor-plan-container .floor-plan-item {
    display: inline-block;
    padding: 0 13px;
    height: auto;
    width: 100%;
}
.floor-plan-container .floor-plan-item img {
    height: auto;
    width: 100%;
}
.property .property-featured {
    margin-bottom: 50px;
    padding: 10px;
    background: #f6f6f6;
    position: relative;
    clear: both;
}
.property .property-featured .property-label {
    position: absolute;
    right: 30px;
    top: 30px;
    padding: 8px 15px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    background: #75b08a;
    font-weight: bold;
}
.property .property-featured .property-label.sold {
    background: #6c6a64;
}
.property .property-featured .images {
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.property .property-featured .images ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.property .property-featured .images ul:before,
.property .property-featured .images ul:after {
    content: ' ';
    display: table;
}
.property .property-featured .images ul:after {
    clear: both;
}
.property .property-featured .images ul:before,
.property .property-featured .images ul:after {
    content: ' ';
    display: table;
}
.property .property-featured .images ul:after {
    clear: both;
}
.property .property-featured .images ul li {
    float: left;
    padding: 0 !important;
}
.property .property-featured .images ul li img {
    width: 100%;
    height: auto;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

@media (min-width: 1025px) {
    .property .property-featured .images:hover ul li img {
        opacity: 0.8;
        filter: alpha(opacity=80);
    }
}
.property .property-featured .thumbnails {
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}
.property .property-featured .thumbnails .thumbnails-wrap {
    margin: 0 -5px;
}
.property .property-featured .thumbnails ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.property .property-featured .thumbnails ul:before,
.property .property-featured .thumbnails ul:after {
    content: ' ';
    display: table;
}
.property .property-featured .thumbnails ul:after {
    clear: both;
}
.property .property-featured .thumbnails ul:before,
.property .property-featured .thumbnails ul:after {
    content: ' ';
    display: table;
}
.property .property-featured .thumbnails ul:after {
    clear: both;
}
.property .property-featured .thumbnails ul li {
    float: left;
    margin: 0 5px;
    padding: 0 !important;
    max-width: 190px;
}
.property .property-featured .thumbnails ul li img {
    width: 100%;
    height: auto;
}
.property-featured .images {
    display: flex;
    flex-wrap: no-wrap;
}
.glide .slider-next,
.glide .slider-prev {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-out 0s;
    z-index: 100;
    border-radius: 3px;
}
.glide .slider-next:hover,
.glide .slider-prev:hover {
    background-color: #75b08a;
}
.glide .slider-next.disabled,
.glide .slider-prev.disabled {
    display: none !important;
}
.glide .slider-prev {
    left: -35px;
}
.glide .slider-next {
    right: -35px;
}
.glide:hover > .slider-prev {
    left: 10px;
}
.glide:hover > .slider-next {
    right: 10px;
}
@media screen and (max-width: 767px) {
    .glide > .slider-prev {
        left: 10px;
    }
    .glide > .slider-next {
        right: 10px;
    }
}
.property .property-title {
    margin-bottom: 30px;
    margin-top: 0;
    font-size: 24px;
    font-weight: bold;
    color: #2d313f;
    float: left;
    width: 72%;
    width: -webkit-calc(100% - 240px);
    width: -moz-calc(100% - 240px);
    width: calc(100% - 240px);
}
.property .property-title small {
    font-size: 18px;
    font-weight: 300;
    color: #2d313f;
    display: block;
    margin-top: 11px;
}
.property .property-share {
    float: right;
}
.property .property-share a {
    background: #eee;
    border-radius: 50%;
    margin: 0px 3px;
    color: #a5a5a5;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
}
.property .property-share a:hover {
    background: #75b08a;
    color: #fff;
}
.property .property-share a.action {
    background: #95c3a5;
    color: #fff;
}
.property .property-summary {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}
.property .property-detail {
    padding: 15px;
    background: #f6f6f6;
    border: 1px solid #e5e5e5;
    margin: 0 30px 15px 15px;
}
@media (max-width: 767px) {
    .property .property-detail {
        margin: 0 15px;
    }
}
.property .property-detail-title {
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 20px;
}
.property .property-feature-title,
.property .property-map-title {
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 20px;
}
.property .property-information-title {
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 20px;
}
.property .property-detail-content .detail-field {
    font-size: 13px;
}
.property .property-detail-content .detail-field > span {
    padding-top: 3px;
    padding-bottom: 3px;
}
.property .property-detail-content .detail-field .detail-field-label {
    font-weight: bold;
    text-align: right;
    clear: both;
}
@media (max-width: 767px) {
    .property .property-detail-content .detail-field > span {
        display: block;
        text-align: left !important;
        clear: none;
    }
}
.property .property-desc {
    width: calc(66.6666% - 45px);
    padding-top: 15px;
    padding-left: 0;
    padding-right: 0;
}
@media (max-width: 767px) {
    .property .property-desc {
        margin: 30px 15px 0;
        width: auto;
    }
}
.property .property-content {
    padding: 0 15px 0 0;
    text-align: justify;
}
@media (max-width: 767px) {
    .property .property-content {
        padding: 0 15px;
    }
}
.property .floor-plan-container .floor-plan-title {
    font-weight: 300;
    margin-bottom: 20px;
    margin-top: 0;
}
.property .property-feature {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}
.property .property-feature-content {
    text-transform: capitalize;
}
.property .property-feature-content:before,
.property .property-feature-content:after {
    content: ' ';
    display: table;
}
.property .property-feature-content:after {
    clear: both;
}
.property .property-feature-content:before,
.property .property-feature-content:after {
    content: ' ';
    display: table;
}
.property .property-feature-content:after {
    clear: both;
}
.property .property-feature-content .has,
.property .property-feature-content .no-has {
    padding: 3px 0;
    font-size: 13px;
    width: 33.333%;
    float: left;
}
@media (max-width: 767px) {
    .property .property-feature-content .has,
    .property .property-feature-content .no-has {
        width: 49%;
    }
}
.property .property-feature-content .no-has {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.property .property-feature-content i {
    margin-right: 5px;
    font-size: 13px;
}
.property .property-video {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}
.property .property-video .property-video-title {
    font-weight: 300;
    margin-bottom: 20px;
    margin-top: 0;
}
.property .property-map {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}
.property .property-map img {
    max-width: none;
}
.property #property_map_search_input {
    margin-top: 6px;
    border: 1px solid transparent;
    border-radius: 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 32px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    padding: 0 11px 0 13px;
    width: 300px;
    display: none;
}
.property .property-map-content > .property-map-box {
    width: 100%;
    height: 350px;
}
.property .property-map-content > .property-map-box #property_map_search_input {
    display: block;
}
.property-label + .property-label {
    margin-top: 40px;
}
.agent-property {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
    padding-bottom: 30px;
    clear: both;
}
.agent-property .agent-property-title h3 {
    font-weight: 300;
    margin-bottom: 20px;
    margin-top: 0;
}
.agent-property .agents .hentry {
    margin-bottom: 0 !important;
}
.agent-property .agents .conact-agent {
    float: left;
    width: 50%;
    padding-left: 15px;
}
@media (max-width: 767px) {
    .agent-property .agents .conact-agent {
        width: 100%;
        float: left;
        padding: 0;
        margin-top: 15px;
    }
}
.agent-property .agents .conact-agent span.msg {
    font-size: 13px;
    color: #3c763d;
    padding: 5px 0;
    display: block;
    text-align: right;
}
.agent-property .agents .conact-agent span.error {
    font-size: 13px;
    color: #a94442;
}
.agent-property .agents .conact-agent input.form-control,
.agent-property
    .agents
    .conact-agent
    input.wpcf7-form-control:not(.wpcf7-submit) {
    height: 37px;
}
.agent-property .agents .conact-agent textarea.form-control,
.agent-property
    .agents
    .conact-agent
    textarea.wpcf7-form-control:not(.wpcf7-submit) {
    height: 80px;
}
.pac-container {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.noo-map {
    position: relative;
    background: url('../images/bg-map.jpg') repeat-x scroll 0 center transparent;
    background-size: cover;
}
.noo-map.fullscreen {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100000;
}
.noo-map.fullscreen #gmap {
    height: 100% !important;
}
.noo-map #gmap {
    height: 840px;
    width: 100%;
}
.noo-map .gmap-search {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.noo-map #gmap_search_input {
    margin-top: 16px;
    border: 1px solid transparent;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 35px;
    outline: none;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    padding: 0 11px 0 13px;
    width: 400px;
    left: 0px;
    line-height: 18px;
    margin-left: 60px;
    font-size: 15px;
    font-family: 'Lato';
    font-weight: 300;
}
.noo-map .gmap-loading {
    background-color: #fff;
    margin: 0px auto;
    position: absolute;
    top: 20%;
    left: 50%;
    width: 300px;
    height: 105px;
    margin-left: -150px;
    text-align: center;
    padding-top: 16px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    opacity: 0.95;
    z-index: 9999;
}
.noo-map .gmap-loader {
    margin: 100px auto;
    width: 100%;
    height: 30px;
    text-align: center;
}
.noo-map .gmap-loading .gmap-loader {
    margin: 10px auto;
}
.noo-map .gmap-loading .gmap-loader > div {
    -webkit-animation: 1.5s ease 0s normal none infinite loadingFade;
    -o-animation: 1.5s ease 0s normal none infinite loadingFade;
    animation: 1.5s ease 0s normal none infinite loadingFade;
    background: none repeat scroll 0 0 #75b08a;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    margin: 0 4px;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 10px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
.noo-map .gmap-loading .gmap-loader .rect2 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.noo-map .gmap-loading .gmap-loader .rect3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.noo-map .gmap-loading .gmap-loader .rect4 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.noo-map .gmap-loading .gmap-loader .rect5 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
@-webkit-keyframes loadingFade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-moz-keyframes loadingFade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes loadingFade {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
    50% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}
.noo-map .gmap-zoom {
    position: absolute;
    left: 0;
    top: 0;
    margin: 10px;
    z-index: 100;
    width: 40px;
}
.noo-map .gmap-zoom a {
    background: #75b08a;
    background: rgba(117, 176, 138, 0.75);
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    line-height: 40px;
    color: #fff;
    margin-bottom: 5px;
    font-size: 18px;
}
.noo-map .gmap-zoom a:hover {
    background: #4f8a64;
    background: rgba(79, 138, 100, 0.8);
}
@media (max-width: 991px) {
    .noo-map .gmap-zoom a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .noo-map .gmap-zoom a i {
        line-height: 30px;
    }
}
.noo-map .gmap-infobox {
    border: 1px solid #aba7a3;
    background: none repeat scroll 0 0 #ffffff;
    box-shadow: 3px 5px 13px 0 rgba(29, 29, 29, 0.05);
    margin: -260px 0 0 -200px;
    max-width: 480px;
    padding: 0;
    position: absolute;
    width: 500px;
}
.noo-map .gmap-infobox .info-close {
    background: #75b08a;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: -10px;
    text-align: center;
    top: -10px;
    width: 20px;
}
.noo-map .gmap-infobox .info-img {
    float: left;
}
.noo-map .gmap-infobox .info-img img {
    height: 160px !important;
    width: 190px !important;
}
.noo-map .gmap-infobox .info-summary {
    margin-left: 190px;
    font-family: 'Lato';
    background: #f9f9f9;
    height: 160px;
}
.noo-map .gmap-infobox .info-title {
    padding: 12px 15px;
    font-weight: bold;
    font-size: 15px;
    margin: 0;
    background: #f9f9f9;
    border-bottom: 1px solid #f3f3f3;
    height: 62px;
    overflow: hidden;
    ext-overflow: ellipsis;
}
.noo-map .gmap-infobox .info-detail {
    background: #f9f9f9;
    border-top: 1px solid #fff;
    display: table;
    width: 100%;
    border-bottom: 1px solid #f3f3f3;
}
.noo-map .gmap-infobox .info-detail > div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 15px 8px;
}
.noo-map .gmap-infobox .info-more {
    border-top: 1px solid #fff;
    background: #ececec;
    display: table;
    width: 288px;
    position: absolute;
    bottom: 0;
}
.noo-map .gmap-infobox .info-more > div {
    padding: 7px 15px;
    display: table-cell;
    vertical-align: middle;
    width: 20%;
    text-align: left;
    font-weight: bold;
}
.noo-map .gmap-infobox .info-more .info-price {
    font-weight: 400;
    font-size: 18px;
    width: 80%;
}
.noo-map .gmap-infobox .info-more .info-action {
    padding: 0;
    background: #75b08a;
}
.noo-map .gmap-infobox .info-more .info-action a {
    padding: 7px 15px;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 16px;
}
.noo-map .gmap-infobox .info-more .info-action:hover {
    background: #589a70;
}
@media (max-width: 991px) {
    .noo-map .gmap-infobox {
        width: 190px;
        margin: -350px 0 0 -40px;
    }
    .noo-map .gmap-infobox .info-img,
    .noo-map .gmap-infobox .info-summary {
        width: 190px;
    }
    .noo-map .gmap-infobox .info-summary {
        margin-left: 0;
    }
    .noo-map .gmap-infobox .info-title {
        padding: 12px 4px;
        height: auto;
    }
    .noo-map .gmap-infobox .info-detail > div {
        padding: 6px 4px;
    }
    .noo-map .gmap-infobox .info-more {
        position: relative;
        width: 100%;
    }
    .noo-map .gmap-infobox .info-more .info-price {
        font-size: 15px;
    }
}
.noo-map .gmap-control {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
}
.noo-map .gmap-control a {
    background: #75b08a;
    background: rgba(117, 176, 138, 0.75);
    color: #fff;
    float: left;
    margin-right: 8px;
    text-align: center;
    min-width: 40px;
    height: 40px;
}
.noo-map .gmap-control a i {
    font-size: 30px;
    line-height: 40px;
}
.noo-map .gmap-control a:hover {
    background: #4f8a64;
    background: rgba(79, 138, 100, 0.8);
}
.noo-map .gmap-control .gmap-full i {
    font-size: 20px;
}
.noo-map .gmap-control .gmap-prev i {
    margin-right: 2px;
}
.noo-map .gmap-control .gmap-next i {
    margin-left: 2px;
}
@media (max-width: 991px) {
    .noo-map .gmap-control a {
        min-width: 30px;
        height: 30px;
    }
    .noo-map .gmap-control a i {
        line-height: 30px;
    }
}
.gsearch {
    width: 100%;
}
.pt-4 {
    padding-top: 16px;
}
.gsearch .form-marker-icon {
    display: none;
}
.gsearch .gsearchform {
    display: block;
}
.gsearch .gsearchform:before,
.gsearch .gsearchform:after {
    content: ' ';
    display: table;
}
.gsearch .gsearchform:after {
    clear: both;
}
.gsearch .gsearchform:before,
.gsearch .gsearchform:after {
    content: ' ';
    display: table;
}
.gsearch .gsearchform:after {
    clear: both;
}

.gsearch .gsearch-content .gsearch-field > .form-group .dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}
.gsearch .gsearch-content .gsearch-field > .form-group.gprice .ui-slider {
    position: relative;
    text-align: left;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.gprice
    .ui-slider
    .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    top: -7px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #fff;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.gprice
    .ui-slider
    .ui-slider-handle:last-child {
    margin-left: -1em;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.gprice
    .ui-slider
    .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: 0.7em;
    display: block;
    border: 0;
    background: #75b08a;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.gprice
    #gprice-slider-range
    .ui-widget-content {
    background: #e5e5e5;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.gprice
    .ui-slider-horizontal {
    height: 5px;
    background: #e5e5e5;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-top: 10px;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.gprice
    .ui-slider-horizontal
    .ui-slider-range {
    top: 0;
    height: 100%;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.gprice
    .ui-slider-horizontal
    .ui-slider-range-min {
    left: -1px;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.gprice
    .ui-slider-horizontal
    .ui-slider-range-max {
    right: -1px;
}
.gsearch .gsearch-content .gsearch-field > .form-group.garea .ui-slider {
    position: relative;
    text-align: left;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.garea
    .ui-slider
    .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none;
    top: -7px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #fff;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.garea
    .ui-slider
    .ui-slider-handle:last-child {
    margin-left: -1em;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.garea
    .ui-slider
    .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: 0.7em;
    display: block;
    border: 0;
    background: #75b08a;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.garea
    #garea-slider-range
    .ui-widget-content {
    background: #e5e5e5;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.garea
    .ui-slider-horizontal {
    height: 5px;
    background: #e5e5e5;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-top: 10px;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.garea
    .ui-slider-horizontal
    .ui-slider-range {
    top: 0;
    height: 100%;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.garea
    .ui-slider-horizontal
    .ui-slider-range-min {
    left: -1px;
}
.gsearch
    .gsearch-content
    .gsearch-field
    > .form-group.garea
    .ui-slider-horizontal
    .ui-slider-range-max {
    right: -1px;
}
.gsearch .gsearch-content .gsearch-action .gsubmit {
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 0;
    right: 20px;
    max-height: 150px;
}
.gsearch .gsearch-content .gsearch-action .gsubmit button {
    color: #bdb254;
    background-color: #f0e797;
    border-color: #f0e797;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: none;
    height: 100%;
    width: 100%;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: normal;
    min-height: 100px;
}
.gsearch .gsearch-content .gsearch-action .gsubmit button:hover,
.gsearch .gsearch-content .gsearch-action .gsubmit button:focus,
.gsearch .gsearch-content .gsearch-action .gsubmit button:active,
.gsearch .gsearch-content .gsearch-action .gsubmit button.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #bdb254;
}
.gsearch .gsearch-content .gsearch-action .gsubmit button:active,
.gsearch .gsearch-content .gsearch-action .gsubmit button.active {
    background-image: none;
}
.gsearch .gsearch-content .gsearch-action .gsubmit button.disabled,
.gsearch .gsearch-content .gsearch-action .gsubmit button.disabled:hover,
.gsearch .gsearch-content .gsearch-action .gsubmit button.disabled:focus,
.gsearch .gsearch-content .gsearch-action .gsubmit button.disabled:active,
.gsearch .gsearch-content .gsearch-action .gsubmit button.disabled.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #bdb254;
}
.gsearch .gsearch-content .gsearch-action .gsubmit button .badge {
    color: #f0e797;
    background-color: #bdb254;
}

@media (max-width: 991px) {
    .gsearch {
        position: relative;
        bottom: auto;
        left: auto;
        padding-top: 20px;
    }
    .gsearch .gsearch-content {
        display: block;
    }

    .gsearch .gsearch-content .gsearch-action {
        display: block;
        width: 100%;
        padding: 20px 0 30px;
    }
    .gsearch .gsearch-content .gsearch-action .gsubmit {
        position: relative;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
    }
    .gsearch .gsearch-content .gsearch-action .gsubmit button {
        padding: 10px 16px;
    }
}
.horizontal .gsearch .gsearch-content .gsearch-action .gsubmit.one-line button {
    font-size: 18px;
    min-height: 50px;
}

@media (max-width: 1199px) {
    #gmap_search_input {
        display: none;
    }
}
@media (min-width: 992px) {
    .noo_advanced_search_property.vertical .gsearch .container-boxed {
        position: relative;
    }
    .noo_advanced_search_property.vertical .gsearch .form-marker-icon {
        display: block;
        background: none repeat scroll 0 0 #75b08a;
        color: #fff;
        display: inline-block;
        font-size: 32px;
        height: 70px;
        left: -70px;
        line-height: 70px;
        position: absolute;
        text-align: center;
        top: 80px;
        width: 70px;
    }
    .noo_advanced_search_property.vertical .gsearch .gsearch-wrap {
        bottom: 0;
        width: 311px;
        position: absolute;
        right: 0;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap
        .gsearch-content {
        display: block;
        background: #f9f9f9;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap
        .gsearch-content
        .gsearch-field,
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap
        .gsearch-content
        .gsearch-action {
        display: block;
        width: 100%;
        padding: 15px 30px;
        background: none;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap
        .gsearch-content
        .gsearch-field
        > div {
        float: none;
        width: 100%;
        padding: 0;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap
        .gsearch-content
        .gsearch-field
        > div.form-group
        .dropdown
        > span {
        height: 40px;
        background: #fff;
        line-height: 40px;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap
        .gsearch-content
        .gsearch-field
        > div.form-group
        .dropdown
        > span:before {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap
        .gsearch-content
        .gsearch-action
        .gsubmit {
        position: relative;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap
        .gsearch-content
        .gsearch-action
        .gsubmit
        button {
        background: #ededed;
        color: #94a2a7;
        font-size: 20px;
        padding: 16px;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap
        .gsearch-content
        .gsearch-action
        .gsubmit
        button:hover {
        background: #75b08a;
        color: #fff;
    }
    .noo_advanced_search_property.vertical .gsearch .gsearch-wrap-style-2 {
        bottom: 0;
        width: 311px;
        position: absolute;
        right: 0;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap-style-2
        .gsearch-content {
        display: block;
        background: #f9f9f9;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap-style-2
        .gsearch-content
        .gsearch-field,
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap-style-2
        .gsearch-content
        .gsearch-action {
        display: block;
        width: 100%;
        padding: 15px 30px;
        background: none;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap-style-2
        .gsearch-content
        .gsearch-field
        > div {
        float: none;
        width: 100%;
        padding: 0;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap-style-2
        .gsearch-content
        .gsearch-field
        > div.form-group
        .dropdown
        > span {
        height: 40px;
        background: #fff;
        line-height: 40px;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap-style-2
        .gsearch-content
        .gsearch-field
        > div.form-group
        .dropdown
        > span:before {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap-style-2
        .gsearch-content
        .gsearch-action
        .gsubmit {
        position: relative;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap-style-2
        .gsearch-content
        .gsearch-action
        .gsubmit
        button {
        background: #ededed;
        color: #94a2a7;
        font-size: 20px;
        padding: 16px;
    }
    .noo_advanced_search_property.vertical
        .gsearch
        .gsearch-wrap-style-2
        .gsearch-content
        .gsearch-action
        .gsubmit
        button:hover {
        background: #75b08a;
        color: #fff;
    }
}
.property-featured ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.property-featured li {
    margin: 0;
    padding: 0 0 20px !important;
    border: none !important;
    float: left;
    width: 100%;
}
.property-featured li h4 {
    margin: 0;
}
.property-featured li .featured-status {
    font-size: 13px;
    font-style: italic;
}
.property-featured .featured-image {
    float: left;
    margin-right: 20px;
}
.property-featured .featured-image img {
    max-width: 70px;
    height: auto;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.loadmore-action {
    text-align: center;
}
.loadmore-action .noo-loader {
    display: none;
}
.loadmore-action .noo-loader > div {
    -webkit-animation: 1.5s ease 0s normal none infinite loadingFade;
    -o-animation: 1.5s ease 0s normal none infinite loadingFade;
    animation: 1.5s ease 0s normal none infinite loadingFade;
    background: none repeat scroll 0 0 #75b08a;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    margin: 0 4px;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 10px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}
.loadmore-action .noo-loader > div.rect2 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.loadmore-action .noo-loader > div.rect3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.loadmore-action .noo-loader > div.rect4 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.loadmore-action .noo-loader > div.rect5 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.loadmore-action .btn,
.loadmore-action .wpcf7-submit {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}
.loadmore-action ~ .pagination {
    display: none;
}
span.property-meta {
    display: inline-block;
    font-size: 14px !important;
    font-weight: 300;
    padding: 0 5px;
}
span.property-meta-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-bottom: -5px;
    background-position-x: 0px;
    background-position-y: center;
    background-size: cover;
    background-repeat-x: no-repeat;
    background-repeat-y: no-repeat;
    background-attachment: scroll;
    background-origin: initial;
    background-clip: initial;
    background-color: transparent;
}
.size > span.property-meta-icon,
.area > span.property-meta-icon {
    background-image: url('../images/size-icon.png');
}
.bathrooms > span.property-meta-icon {
    background-image: url('../images/bathroom-icon.png');
}
.bedrooms > span.property-meta-icon {
    background-image: url('../images/bedroom-icon.png');
}

.noo-loading-property {
    display: none;
    text-align: center;
    padding: 15px;
    margin-bottom: 25px;
}
.show-filter-property {
    display: none;
    height: 70px;
    line-height: 70px;
    background: #efefef;
    padding: 0 30px;
    color: #313131;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.show-filter-property:hover {
    color: #75b08a;
}
.show-filter-property.not_found {
    cursor: inherit;
}
.show-filter-property.not_found:hover {
    color: #313131;
}
.noo-agent .agent-info .agent-detail-info > div {
    display: table;
}

.validate-error input,
.validate-error textarea,
.validate-error select,
.validate-error iframe,
.validate-error .chosen-container-single {
    border: 1px solid red !important;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .chosen-container-single,
    .chosen-container-multi {
        min-width: 160px !important;
    }
}
@media (max-width: 767px) {
    .properties .property-entry {
        padding: 0 15px !important;
    }
}
.property-citi-navigation ul {
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    width: 50%;
}
.property-citi-navigation ul li {
    flex: 1;
    flex-basis: auto;
    padding: 5px;
}
.property-citi-navigation ul li a {
    color: black;
    font-weight: 500;
}
.property-citi-navigation ul li:last-of-type {
    border: none;
}
.s-prop-agent {
    clear: both;
}
.s-prop-agent .advanced_search_agent {
    border-color: #dedede;
    min-height: 50px;
    color: #777777;
}
.s-prop-agent .advanced_search_agent:active {
    outline: none;
}
.s-prop-agent .advanced_search_agent:hover {
    outline: none;
}
.s-prop-agent .advanced_search_agent option {
    color: #777777;
    box-shadow: inset 20px 20px #f00;
}
.s-prop-agent .advanced_search_agent option:checked:hover {
    background-color: darkgoldenrod;
}
.chosen-container-single .chosen-single span {
    padding-left: 10px;
}

#uploaded-images {
    float: left;
    width: 100%;
}
#uploaded-images .uploaded-img {
    float: left;
    margin: 0 10px 15px 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    width: 150px;
    min-height: 100px;
    max-height: 150px;
    cursor: grab;
    cursor: -webkit-grab;
}
#uploaded-images .uploaded-img i {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #75b08a;
    color: #fff;
    font-size: 20px;
    padding: 5px;
    cursor: pointer;
}
#uploaded-images .uploaded-img i.featured-img {
    left: 0px;
    top: 0px;
    bottom: auto;
    right: auto;
    cursor: auto;
}
#aaiu-uploader {
    margin-top: 30px;
}
.noo_property_google_map {
    position: relative;
}
.noo_property_google_map .noo_property_google_map_search {
    position: absolute;
    width: 50%;
    margin: 0 auto;
    top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}
.noo_property_google_map #noo_property_google_map_search_input {
    margin-top: 16px;
    border: 1px solid transparent;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    padding: 0 11px 0 13px;
    width: 350px;
    height: 40px;
    font-size: 14px;
}

.additional-block tr {
    margin-bottom: 15px;
}
.additional-block tr td label {
    margin-bottom: 5px;
    font-weight: normal;
}
.additional-block tr td:nth-child(1) {
    width: 5%;
}
.additional-block tr td:nth-child(2) {
    width: 40%;
    margin-right: 10px;
}
.additional-block tr td:nth-child(3) {
    width: 40%;
    margin-right: 10px;
}
.additional-block tr td:nth-child(4) {
    width: 5%;
}
.additional-block tr .add-additional-row {
    margin-top: 25px;
}
.noo-agent .content-title {
    text-transform: uppercase;
    float: left;
    margin-right: 30px;
    margin-bottom: 0;
}
.noo-agent .content-title small {
    display: block;
    margin-top: 10px;
    font-size: 70%;
    font-style: italic;
    text-transform: none;
}
.noo-agent .agent-info {
    float: left;
    margin: 30px 0;
    width: 100%;
}
.noo-agent .agent-info .content-featured {
    width: 50%;
    float: left;
    margin: 0 30px 20px 0;
}
@media (max-width: 767px) {
    .noo-agent .agent-info .content-featured {
        width: 100%;
        margin: 0 0 20px 0;
    }
}
.noo-agent .agent-info .agent-detail-title {
    font-weight: 300;
}
.noo-agent .agent-info .agent-detail-info {
    line-height: 30px;
}
.noo-agent .agent-info .agent-detail-info i {
    font-size: 15px;
    width: 20px;
    height: 20px;
    float: left;
    margin-top: 8px;
    padding-left: 1px;
}
.noo-agent .agent-info .agent-detail-info span {
    font-weight: bold;
    width: 80px;
    float: left;
}
.noo-agent .agent-info .agent-desc {
    margin: 30px 0;
}
.noo-agent .conact-agent .content-title {
    margin-bottom: 30px;
}
.noo-agent .conact-agent .form-control,
.noo-agent .conact-agent .wpcf7-form-control:not(.wpcf7-submit) {
    padding: 4px 8px;
    height: 40px;
}
.noo-agent .conact-agent textarea.form-control,
.noo-agent .conact-agent textarea.wpcf7-form-control:not(.wpcf7-submit) {
    height: auto;
}
.noo-agent .conact-agent .form-group {
    margin-bottom: 30px;
}
.noo-agent .conact-agent .form-group.message {
    margin-bottom: 15px;
}
.noo-agent .conact-agent .btn,
.noo-agent .conact-agent .wpcf7-submit {
    width: 100%;
    text-transform: uppercase;
    padding: 10px 0;
    font-weight: bold;
    font-size: 19px;
    margin-bottom: 30px;
}
.noo-agent .properties-header .page-title {
    font-size: 23px;
    font-weight: bold;
    text-transform: uppercase;
}
.agents {
    position: relative;
}
.agents:before,
.agents:after {
    content: ' ';
    display: table;
}
.agents:after {
    clear: both;
}
.agents:before,
.agents:after {
    content: ' ';
    display: table;
}
.agents:after {
    clear: both;
}
.agents.grid .agents-header .page-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 23px;
}
.agents.grid .noo_agent {
    margin: 0 0 30px 0;
    border-bottom: none;
}
.agents.grid .noo_agent .agent-title {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    padding: 15px 15px;
    background: #f9f9f9;
}
.agents.grid .noo_agent .agent-featured,
.agents.grid .noo_agent .agent-wrap {
    height: 240px;
    overflow: hidden;
}
.agents.grid .noo_agent .agent-featured {
    width: 50%;
    float: left;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
    background-color: #f9f9f9;
}
.agents.grid .noo_agent .agent-featured a {
    height: 100%;
}
.agents.grid .noo_agent .agent-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.agents.grid .noo_agent .agent-featured:after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 0px;
    top: 30px;
    border-top: 0px solid transparent;
    border-right: 17px solid #f9f9f9;
    border-bottom: 17px solid transparent;
    z-index: 99;
}
.agents.grid .noo_agent .agent-wrap {
    width: 50%;
    float: left;
    background: #f9f9f9;
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    position: relative;
}
.agents.grid .noo_agent .agent-wrap .agent-desc {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #ececec;
    background: #f9f9f9;
}
.agents.grid .noo_agent .agent-wrap .agent-info {
    line-height: 30px;
    font-size: 13px;
    padding: 10px 15px;
}
.agents.grid .noo_agent .agent-wrap .agent-info div {
    overflow: hidden;
    display: block;
    white-space: nowrap;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .agents.grid .noo_agent .agent-wrap .agent-info div {
        display: block;
    }
}
.agents.grid .noo_agent .agent-wrap .agent-info i {
    font-size: 15px;
    width: 20px;
    height: 20px;
    float: left;
    margin-top: 8px;
}
.agents.grid .noo_agent .agent-title {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    padding: 30px 30px 0;
    background: #f9f9f9;
}
.agents.grid.ava-top .noo_agent .agent-featured,
.agents.grid.ava-top .noo_agent .agent-wrap {
    width: 100%;
    display: block;
    height: auto;
}
.agents.grid.ava-top .noo_agent .agent-featured {
    max-height: 380px;
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}
.agents.grid.ava-top .noo_agent .agent-featured:after {
    border-right: 0;
}
.agents.grid.ava-top .noo_agent .agent-wrap {
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}
.agents.grid.ava-top .noo_agent .agent-wrap .agent-desc {
    position: relative;
}
@media (max-width: 991px) {
    .agents.grid .noo_agent .agent-featured,
    .agents.grid .noo_agent .agent-wrap {
        width: 100%;
        display: block;
        height: auto;
    }
    .agents.grid .noo_agent .agent-featured {
        max-height: 380px;
        -webkit-border-radius: 4px 4px 0 0;
        border-radius: 4px 4px 0 0;
    }
    .agents.grid .noo_agent .agent-featured:after {
        border-right: 0;
    }
    .agents.grid .noo_agent .agent-wrap {
        -webkit-border-radius: 0 0 4px 4px;
        border-radius: 0 0 4px 4px;
    }
    .agents.grid .noo_agent .agent-wrap .agent-desc {
        position: relative;
    }
}
@media (min-width: 992px) {
    body.page-fullwidth .agents.grid .noo_agent.col-md-6 .agent-featured,
    body.page-fullwidth .agents.grid .noo_agent.col-md-6 .agent-wrap {
        height: 290px;
    }
}
@media (max-width: 480px) {
    .agents.grid .noo_agent.col-xs-6 {
        width: 100%;
    }
}

.widget + .widget {
    margin-top: 30px;
}
.widget .widget-title:before {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.widget a:hover,
.widget a:focus {
    text-decoration: none;
}
.widget p:last-child,
.widget ul:last-child,
.widget ol:last-child {
    margin-bottom: 0;
}
.widget ul,
.widget ol {
    overflow: hidden;
    margin-left: 0;
    padding: 0;
    list-style: none;
    background-color: transparent;
}
.widget ul li,
.widget ol li {
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 0;
    line-height: 1.5;
    color: #8e8e8e;
    font-weight: 300;
}
.widget ul li a,
.widget ol li a {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
}
.widget ul li:first-child,
.widget ol li:first-child {
    padding-top: 0;
}
.widget ul li:last-child,
.widget ol li:last-child {
    border-bottom: 0;
}
.widget select {
    width: 100%;
}
.widget-title {
    color: #6c6c6c;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0px 0 30px;
}
.widget_search form {
    position: relative;
}
.widget_search form:before {
    content: '\f002';
    position: relative;
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    padding-right: 0;
    opacity: 1;
    filter: alpha(opacity=100);
}
.widget_search form:before {
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: inherit;
    top: 0;
    width: 50px;
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.56);
    color: #b8b8b8;
}
.widget_search #s {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    padding-right: 50px;
}
.widget_calendar #wp-calendar {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #f8f8f8;
    max-width: 100%;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    font-size: 15px;
    border-radius: 3px;
}
.widget_calendar #wp-calendar caption {
    font-size: 15px;
    font-weight: 300;
    padding: 8px;
    text-transform: uppercase;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}
.colophon .widget_calendar #wp-calendar,
.colophon .widget_calendar #wp-calendar caption {
    background-color: rgba(0, 0, 0, 0.2);
}
.widget_calendar #wp-calendar th,
.widget_calendar #wp-calendar td {
    text-align: center;
    line-height: 26px;
    padding: 10px;
}
.widget_calendar #wp-calendar > thead {
    background-color: rgba(0, 0, 0, 0);
}
.widget_calendar #wp-calendar > thead > tr > th {
    border-bottom: 1px solid #e5e5e5;
    font-weight: 300;
    font-size: 15px;
    padding: 8px;
}
.widget_calendar #wp-calendar > tbody > tr > td {
    border: none;
    line-height: 26px;
    padding: 5px;
}
.widget_calendar #wp-calendar > tbody > tr > td.pad {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.widget_calendar #wp-calendar > tbody > tr > td.pad:first-child {
    border-left: 0;
}
.widget_calendar #wp-calendar > tbody > tr > td.pad:last-child {
    border-right: 0;
}
.widget_calendar #wp-calendar > tbody > tr > td > a {
    background: #75b08a;
    color: #ffffff;
    display: block;
    border-radius: 3px;
}
.widget_calendar #wp-calendar > tfoot {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.widget_calendar #wp-calendar > tfoot .pad {
    border: none;
}
.widget_calendar #wp-calendar #prev,
.widget_calendar #wp-calendar #next {
    font-weight: 300;
    padding: 5px 10px;
    text-shadow: none;
    text-transform: uppercase;
    position: absolute;
    top: 0;
}
.widget_calendar #wp-calendar #prev > a,
.widget_calendar #wp-calendar #next > a {
    display: block;
    width: 40px;
    height: 40px;
    text-indent: -9999em;
    position: absolute;
    top: 0;
}
.widget_calendar #wp-calendar #next {
    right: 0;
    padding-left: 15px;
}
.widget_calendar #wp-calendar #next:before {
    content: '\f105';
    position: relative;
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    padding-right: 5;
    opacity: 1;
    filter: alpha(opacity=100);
}
.widget_calendar #wp-calendar #next > a {
    right: 0;
}
.widget_calendar #wp-calendar #prev {
    left: 0;
    padding-left: 15px;
}
.widget_calendar #wp-calendar #prev:before {
    content: '\f104';
    position: relative;
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    padding-right: 5;
    opacity: 1;
    filter: alpha(opacity=100);
}
.widget_calendar #wp-calendar #prev > a {
    left: 0;
}
.widget_nav_menu ul li a,
.widget_meta ul li a,
.widget_pages ul li a {
    display: block;
}
.widget_nav_menu ul li ul,
.widget_meta ul li ul,
.widget_pages ul li ul,
.widget_nav_menu ul li .sub-menu,
.widget_meta ul li .sub-menu,
.widget_pages ul li .sub-menu {
    border: 0;
    background-color: transparent;
    border-radius: 0;
}
.widget_nav_menu ul li ul li a,
.widget_meta ul li ul li a,
.widget_pages ul li ul li a,
.widget_nav_menu ul li .sub-menu li a,
.widget_meta ul li .sub-menu li a,
.widget_pages ul li .sub-menu li a {
    padding-left: 35px;
}
.widget_nav_menu ul li ul li:first-child a,
.widget_meta ul li ul li:first-child a,
.widget_pages ul li ul li:first-child a,
.widget_nav_menu ul li .sub-menu li:first-child a,
.widget_meta ul li .sub-menu li:first-child a,
.widget_pages ul li .sub-menu li:first-child a {
    border-radius: 0;
}
.widget_nav_menu ul li ul ul li a,
.widget_meta ul li ul ul li a,
.widget_pages ul li ul ul li a,
.widget_nav_menu ul li .sub-menu ul li a,
.widget_meta ul li .sub-menu ul li a,
.widget_pages ul li .sub-menu ul li a {
    padding-left: 60px;
}
.widget_nav_menu .menu > li:last-child a:first-child {
    border-bottom: 0;
}
.widget_nav_menu .current-menu-item > a {
    background-color: rgba(0, 0, 0, 0);
}
.widget.widget_meta ul {
    border-bottom: 0;
}
.widget.widget_meta li abbr[title] {
    border-bottom: 0;
}
.widget.widget_pages ul {
    border-bottom: 0;
}
.widget.widget_recent_comments li,
.widget.widget_recent_entries li,
.widget.widget_rss li {
    font-size: 15px;
}
.widget.widget_recent_entries li a {
    display: block;
    border-bottom: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #75b08a;
}
.widget.widget_recent_entries li a:hover {
    color: #75b08a;
}
.widget.widget_recent_entries li .post-date {
    display: block;
    color: #8e8e8e;
    font-weight: 300;
    font-size: 13px;
}
.widget.widget_rss .widget-title img[alt='RSS'] {
    display: none !important;
    visibility: hidden !important;
}
.widget.widget_rss .widget-title a:last-child:before {
    content: '\f143';
    position: relative;
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    padding-right: 8px;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.widget.widget_rss li a {
    display: block;
    margin-top: 5px;
    border-bottom: 0;
    font-size: 19px;
    font-weight: 300;
}
.widget.widget_rss li a:before {
    content: '\f08e';
    position: relative;
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    padding-right: 5px;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.widget_rss .rss-date {
    display: block;
    margin-top: 5px;
    text-transform: uppercase;
}
.widget_rss .rss-date:not(:empty):before {
    content: '\f133';
    position: relative;
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    padding-right: 5px;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.widget_rss .rssSummary {
    margin: 10px 0;
    font-size: 15px;
}
.widget_rss cite {
    display: block;
    text-transform: uppercase;
}
.widget_rss cite:not(:empty):before {
    content: '\f007';
    position: relative;
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
    padding-right: 5px;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.hentry {
    border-bottom: 1px solid #f8f8f8;
    padding-bottom: 50px;
    margin-top: 50px;
}
.hentry:first-child {
    margin-top: 0;
}
.hentry:last-child {
    border: none;
    padding-bottom: 0;
}
.hentry p:last-child,
.hentry ul:last-child,
.hentry ol:last-child {
    margin-bottom: 0;
}
.hentry a:hover {
    text-decoration: none;
}
@media (max-width: 767px) {
    .hentry {
        padding: 0 15px;
    }
}
.hentry.format-quote a,
.hentry.format-link a {
    color: #fff;
}
.hentry.format-quote cite,
.hentry.format-link cite {
    color: #ffffff;
    font-size: 13px;
    font-style: italic;
}
.hentry.format-quote i[class^='fa-'],
.hentry.format-link i[class^='fa-'] {
    font-size: 24px;
    padding-right: 10px;
    vertical-align: middle;
}
.hentry.format-quote > .content-wrap,
.hentry.format-link > .content-wrap {
    background: #75b08a;
    padding: 20px;
    -webkit-box-shadow: 2px 2px 0px #eaeaea;
    box-shadow: 2px 2px 0px #eaeaea;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.hentry.format-quote > .content-wrap:hover,
.hentry.format-link > .content-wrap:hover {
    background: #f0e797;
}
.hentry.format-quote > .content-wrap:hover a,
.hentry.format-link > .content-wrap:hover a {
    color: #bdb254;
}
.hentry.format-quote > .content-wrap:hover cite,
.hentry.format-link > .content-wrap:hover cite {
    color: #bdb254;
}
.hentry.format-quote .content-header,
.hentry.format-link .content-header {
    padding-left: 85px;
    margin-bottom: 10px;
}
.hentry.format-quote .content-header .content-title,
.hentry.format-link .content-header .content-title {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #fff;
}
.hentry.format-quote .content-header .content-quote,
.hentry.format-link .content-header .content-quote {
    font-size: 15px;
    font-weight: 300;
}
.hentry.format-quote .content-link i,
.hentry.format-link .content-link i,
.hentry.format-quote .content-cite i,
.hentry.format-link .content-cite i {
    position: absolute;
    left: 10px;
    top: -5px;
    font-size: 50px;
    opacity: 0.5;
}
.content-header {
    position: relative;
    margin-bottom: 20px;
}
.content-featured {
    margin-bottom: 22px;
    position: relative;
    -webkit-box-shadow: 2px 2px 0px #eaeaea;
    box-shadow: 2px 2px 0px #eaeaea;
}
.content-featured img {
    width: 100%;
    height: auto;
}
.has-featured .content-featured {
    overflow: hidden;
}
.single .content-wrap {
    padding-left: 100px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
    .single .content-wrap {
        padding-left: 0;
        padding: 0;
    }
}
.content-wrap {
    display: block;
    position: relative;
    background-color: #ffffff;
    padding-left: 0px;
    border-bottom: 0;
    padding-bottom: 0px;
}
.content-wrap:first-child {
    margin-top: 0;
}
.content-title {
    font-size: 23px;
    margin-top: 0;
    font-weight: 900;
}
.single .content-title {
    font-size: 23px;
    font-weight: 900;
}
.content-thumb {
    display: block;
    position: relative;
}
.content-sub-title {
    display: block;
    margin: 5px 0 0;
    font-size: 19px;
}
.content-link,
.content-cite {
    font-size: 15px;
}
.content-link a {
    word-break: break-all;
}
.content-meta {
    margin-top: 0;
    color: #585f7b;
    font-weight: 300;
}
.content-meta > span {
    display: inline-block;
    padding-right: 5px;
    color: #2d313f;
}
.content-meta > span i[class^='fa-'] {
    padding-right: 3px;
}
.content-meta > span > a {
    white-space: nowrap;
    color: #2d313f;
}
.content-meta > span > a:hover {
    color: #75b08a;
}
.content-meta > span:last-child:after {
    display: none;
}
.content-meta > span .entry-date {
    color: #2d313f;
}
.single .content-meta > span {
    padding: 0;
}
.content,
.content-excerpt {
    margin-top: 16px;
}
.content embed,
.content-excerpt embed,
.content iframe,
.content-excerpt iframe,
.content object,
.content-excerpt object {
    width: 100%;
    max-width: 100%;
}
.read-more {
    color: #bdb254;
    background-color: #f0e797;
    border-color: #f0e797;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    display: inline-block;
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
    border-radius: 4px;
    padding: 10px 30px;
    margin: 20px 0 0px 0;
}
.read-more:hover,
.read-more:focus,
.read-more:active,
.read-more.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #bdb254;
}
.read-more:active,
.read-more.active {
    background-image: none;
}
.read-more.disabled,
.read-more.disabled:hover,
.read-more.disabled:focus,
.read-more.disabled:active,
.read-more.disabled.active {
    color: #ffffff;
    background-color: #75b08a;
    border-color: #bdb254;
}
.read-more .badge {
    color: #f0e797;
    background-color: #bdb254;
}
.read-more .fa-arrow-circle-o-right {
    margin-left: 5px;
}
.entry-tags span {
    font-size: 23px;
    font-weight: bold;
    width: 100%;
    display: block;
    padding: 30px 0 30px 0;
}
.entry-tags a {
    background: #f8f8f8;
    border-radius: 20px;
    margin: 5px;
    padding: 5px 16px;
    color: #2d313f;
}
@media (max-width: 767px) {
    .entry-tags a {
        line-height: 35px;
    }
}
.entry-tags a:first-child {
    margin-left: 0;
}

.content-footer .content-tags {
    margin-top: 22px;
    margin-bottom: 11px;
}
.content-footer .content-tags a {
    margin: 0 0px 3px 0;
    color: #ffffff;
    background: #555555;
    border-color: #555555;
    font-size: 11px !important;
    margin: 0 3px 3px 0;
}
.content-footer .content-tags a:hover {
    background: #75b08a;
    border-color: #75b08a;
    color: #ffffff;
}
.single .content-footer {
    margin-top: 50px;
}
.content-share {
    position: absolute;
    left: 30px;
    top: 0;
}
.content-share > a {
    font-size: 19px;
}
@media (max-width: 767px) {
    .content-share {
        position: relative;
        left: 0;
        padding: 0 0 20px 0;
    }
    .content-share .noo-social a {
        float: left;
    }
}
.project-link-btn i {
    padding-right: 10px;
}

li.comment {
    margin: 0;
    padding: 0;
}
.comment-img {
    float: left;
}
.comment-img img {
    border-bottom: 3px solid #f6f6f6;
    border-right: 2px solid #f6f6f6;
}
.comment-wrap {
    position: relative;
    margin: 0 0 10px 0px;
    padding: 20px 100px 10px 0;
    border: 0;
}
@media (max-width: 767px) {
    .comment-wrap {
        padding: 7%;
    }
}
.comment-block {
    padding: 0;
    margin: 0 0 0 87px;
}
@media (max-width: 767px) {
    .comment-block {
        margin: 15px 0;
    }
}
.comment-header {
    padding-bottom: 6px;
    display: inline-flex;
}
.comment-header span.pull-right {
    margin-top: 6px;
}
.comment-content {
    position: relative;
    line-height: 1.7;
    font-size: 16px;
}
.comment-author {
    font-family: 'Lato';
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    margin-right: 10px;
}
.comment-author a {
    color: #2d313f;
}
.comment-author a:hover {
    color: #4f8a64;
}
.ispostauthor {
    background: none repeat scroll 0 0 #75b08a;
    color: #ffffff;
    font-size: 13px;
    padding: 0px 5px;
    margin-left: 10px;
    border-radius: 4px;
}
.comment-meta {
    position: relative;
    margin: 5px 0;
    padding-left: 15px;
    font-size: 13px;
}
.comment-meta time:before {
    content: '.';
    position: absolute;
    font-size: 30px;
    top: -20px;
    left: 0;
}
.comment-pending {
    padding: 6px 12px;
    text-align: center;
    color: #75b08a;
    background-color: #dedede;
    border-radius: 4px;
}
.breadcrumb {
    padding: 8px 0 0;
    margin-bottom: 22px;
    list-style: none;
    color: #979797;
    margin-bottom: 0;
    font-size: 13px;
}
.breadcrumb > li {
    display: inline-block;
    font-size: 13px;
}
.breadcrumb > li + li:before {
    content: '/\00a0';
    padding: 0 5px;
}
.breadcrumb > li > a {
    color: #979797;
}
.breadcrumb > li > a:hover {
    color: #75b08a;
}
.breadcrumb > li > a i {
    text-decoration: none;
}
.breadcrumb > .active span {
    color: #979797;
    text-decoration: underline;
}
.pagination {
    display: table;
    padding-left: 0;
    margin: 22px auto;
    line-height: 3;
}
.pagination .page-numbers {
    color: #2d313f;
    background: #ececec;
    padding: 0 15px;
    text-transform: uppercase;
    font-size: 15px;
    float: left;
    height: 40px;
    line-height: 40px;
    margin: 0 3px;
    text-align: center;
}
.pagination .page-numbers.current {
    background: #75b08a;
    color: #ffffff;
}
.pagination .page-numbers.dots {
    border: none;
    border-radius: 0px;
    color: #2d313f;
    padding-left: 10px;
    padding-right: 10px;
}
.pagination a.page-numbers {
    text-decoration: none;
    color: #2d313f;
    font-weight: bold;
}
.pagination a.page-numbers:hover {
    background: #75b08a;
    color: #ffffff;
}
.noo-col-5 {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .noo-col-5.col-sm-6 {
        width: 50%;
    }
}
@media screen and (min-width: 992px) {
    .noo-col-5.col-sm-6 {
        width: 20%;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 15%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0%, 0);
    }
}
.display-block {
    display: block;
}
.box-content-icon {
    font-size: 2em;
}
#noo-button-2 {
    font-size: 24px;
    font-weight: bold;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 70px;
    padding-right: 70px;
}
