/*----------------------------------------
    GENERAL
----------------------------------------*/

.btn {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}
.buttons {
    margin-top: 25px;
}
.section-title {
    margin-bottom: 50px;
    text-align: center;
}
.section-title h2 {
    display: inline-block;
    border-bottom: 3px solid #d6af3c;
    font-family: 'Montserrat', 'sans-serif';
    font-size: 18px;
    font-weight: 700;
    margin-bottom: -1px;
    padding-bottom: 5px;
    text-transform: uppercase;
}
.spacer-25px {
    background: none !important;
    height: 25px;
}
.price {
    background-color: #777;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    padding: 2px 5px;
}
.price:hover {
    text-decoration: none;
}
.price-lg {
    font-size: 18px !important;
    font-weight: 700;
}
img {
    border-radius: 4px;
}
.img-center {
    margin: 0px auto;
}

/*----------------------------------------
    HEADER
----------------------------------------*/

#header {
    padding: 10px 0px;
    background-color: #fff;
    color: #333;
}
#header .logo {
background: url('../img/logo.png') no-repeat;
height:80px;
}
#header .logo h1 {
    display: inline-block;
    border-bottom: 3px solid #d6af3c;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0px; margin-left: 80px; margin-top: 25px;
    text-transform: uppercase;
}
#header .logo h1 span{
    color:#e74c3c;
}
.header-contact a:hover {
    text-decoration: none;
}
.phone-icon,
.email-icon {
    width: 40px;
    height: 40px;
    background-color: #a0832d;
    border-radius: 50%;
    border: 1px solid #a0832d;
    color: #fff;
    font-size: 20px;
    padding-top: 10px;
    text-align: center;
    margin: 0 auto;margin-top: 25px;
}
.phone-details,
.email-details {
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding-left: 10px;
}

/*----------------------------------------
    HERO
----------------------------------------*/

#hero {
    background-color: #1abc9c;
    margin: 0px;
    padding: 50px 0px;
}
.carousel {
    position: relative;
    padding: 0px;
    margin: 0px -12px;
}
.carousel-caption {
    position: relative;
    left: 0%;
    right: 0%;
    bottom: 0px;
    z-index: 10;
    padding-top: 0px;
    padding-bottom: 0px;
    color: #fff;
    text-shadow: none;
    text-align: left;
}
.controllers {
    position: absolute;
    bottom: 0px;
}

/*----------------------------------------
    LISTINGS
----------------------------------------*/

#listings {
    padding: 50px 0px 80px;
}
#filter-works ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
}
#filter-works ul li {
    display: inline-block;
    padding: 0;
    line-height: 24px;
    background: transparent;
    margin: 0;
    margin-right: 5px;
    margin-bottom: 10px;
}
#filter-works ul li a {
    display: block;
    padding: 10px 15px;
    border: 1px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    text-transform: uppercase;
}
#filter-works ul li a,
#filter-works ul li a:active,
#filter-works ul li a:hover {
    line-height: 24px;
    background-color: #eee;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
}
#filter-works ul li a:hover,
#filter-works ul li.active a {
    background-color: #6d6d6d;
    color: #fff;
}
.listings-container .row {
    -moz-transition: height 0.5s ease-out;
    -webkit-transition: height 0.5s ease-out;
    transition: height 0.5s ease-out;
}
.listing-item {
    position: relative;
    margin-bottom: 30px;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -moz-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}
.listing-item.filtered {
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.2;
    cursor: default;
}
.no-opacity .listing-item.filtered {
    display: none;
}
.listing-item.filtered a {
    cursor: default;
}
.listing-item.filtered .link,
.listing-item.filtered .overlay-mask,
.listing-item.filtered .listing-title {
    display: none;
}
.listing-thumb {
    display: block;
    position: relative;
    overflow: hidden;
}
.listing-thumb .overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #aeaeae;
    border-radius: 4px;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 1;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
.listing-thumb:hover .overlay-mask {
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.listing-thumb .link {
    display: inline-block;
    margin: 0;
    margin-top: -25px;
    font-size: 50px;
    line-height: 50px;
    color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    height: 50px;
    width: 64px;
    top: 40%;
    left: 50%;
    text-align: center;
    z-index: 3;
}
.listing-thumb .link {
    margin-left: 20px;
    -moz-transform: translateX(200px);
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.listing-thumb:hover .link {
    -moz-transform: translate(0);
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity:1;
    filter: alpha(opacity=100);
    -moz-transition: all 0.3s ease-out 0.6s;
    -webkit-transition: all 0.3s ease-out 0.6s;
    transition: all 0.3s ease-out 0.6s;
}
.listing-thumb .link.centered {
    margin-left: -90px;
    -moz-transform: translateY(-200px);
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
    -moz-transition-delay: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.listing-thumb:hover .link.centered {
    -moz-transform: translateY(15px);
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -moz-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.listing-thumb .listing-title,
.listing-thumb .preview-subtitle {
    display: none;
    width: 100%;
    position: absolute;
    bottom: -100px;
    background: #6d6d6d;
    margin: 0;
    padding: 20px 0;
    color: #fff;
    z-index: 2;
    -moz-transition: bottom 0.4s ease-out,color 0.2s ease-out;
    -webkit-transition: bottom 0.4s ease-out,color 0.2s ease-out;
    transition: bottom 0.4s ease-out,color 0.2s ease-out;
}
.listing-thumb:hover .listing-title,
.listing-thumb:hover .preview-subtitle {
    display: none;
    bottom: 0;
    -moz-transition: bottom 0.3s ease-out 0.1s,color 0.2s ease-out 0s;
    -webkit-transition: bottom 0.3s ease-out 0.1s,color 0.2s ease-out 0s;
    transition: bottom 0.3s ease-out 0.1s,color 0.2s ease-out 0s;
}
.listing-thumb .listing-title:hover {
    color: #333;
}
.loaded-item {
    display: none;
}
.preview-content {
    display: none;
}
#listing-preview {
    display: none;
}
#listing-preview .loader {
    display: block;
    background: url('../img/loader.gif') center center no-repeat;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 35%;
    left: 50%;
    margin-left: -18px;
}
#listing-preview .frame {
    background-color: #eee;
    border-radius: 4px;
    display: block;
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px;
    overflow: hidden;
}
#listing-preview .preview-screen {
    background: transparent;
    border-radius: 4px;
    display: block;
    position: absolute;
    top: 5.5%;
    left: 4.5%;
    width: 91%;
    height: 91%;
    overflow: hidden;
    opacity: 0;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
#listing-preview .preview-screen.loaded {
    opacity: 1;
}
.preview-description {
    padding: 20px;
}
.flexslider {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
}
.preview-slider .flex-direction-nav .flex-prev,
.preview-slider .flex-direction-nav .flex-next {
    background: #333;
    background-image: none;
    border-radius: 4px;
    display: inline;
    text-indent: 0;
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    padding:0;
    padding-top: 3px;
    padding-left: 12px;
    margin: 0;
    margin-top: -22px;
    font-size: 18px;
    line-height: 38px;
    color: #fff;
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.preview-slider .flex-direction-nav .flex-next {
    text-align: right;
    padding-top: 3px;
    padding-right: 12px;
}
.preview-slider .flex-direction-nav a:hover,
.preview-slider .flex-direction-nav a:active,
.preview-slider .flex-direction-nav a:focus {
    text-decoration: none;
}
.preview-slider .flex-direction-nav a:hover {  
    background: #353535;
}
.preview-slider:hover .flex-next {opacity: 1; right: 5px;}
.preview-slider:hover .flex-prev {opacity: 1; left: 5px;}

.preview-slider .flex-direction-nav .flex-disabled,
.preview-slider .flex-direction-nav .flex-disabled {
    display: none;
}
#listing-preview .close-preview {
    display: inline-block;
    padding: 10px;
    font-size: 48px;
    line-height: 48px;
    font-weight: 400;
    margin: 5px 0;
    text-decoration: none;
}
.preview-description td {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    padding: 20px;
}
.listing-attributes,
.location {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}
.listing-google-map {
    margin-top: 20px;
}
.listing-agent-photo {
    float: left;
    width: 150px;
    height: 150px;
}
.listing-agent-profile {
    margin-left: 175px;
}
.listing-google-map iframe {
    border: none;
    width: 600px;
    height: 300px;
}
video {
    max-width: 100%;
    height: auto;
}
iframe,
embed,
object {
    max-width: 100%;
}
.vendor {
  padding: 2%;
  background: #eee;
  margin-bottom: 2em;
}


/*----------------------------------------
    SERVICES
----------------------------------------*/

#services {
    background-color: #fafafa;
    padding: 50px 0px 40px;
}
.service-item {
    padding-bottom: 30px;
    text-align: center;
}
.service-item-icon {
    width: 80px;
    height: 80px;
    background-color: #a0832d;
    border-radius: 50%;
    border: 1px solid #a0832d;
    text-align: center;
    margin: 0 auto;
}
.service-item-icon i {
    color: #fff;
    font-size: 40px;
    padding-top: 18px;
}

/*----------------------------------------
    ABOUT
----------------------------------------*/

#about {
    background: #fff;
    padding: 50px 0px 60px;
}
.about-images {
    margin-bottom: 50px;
}
.about-img {
    padding: 10px;
}
.about-item {
    padding: 10px 0px;
}
.about-item-icon {
    float: left;
    width: 40px;
    height: 40px;
    background-color: #a0832d;
    border-radius: 50%;
    border: 1px solid #a0832d;
    text-align: center;
    margin-top: 10px;
}
.about-item-icon i {
    color: #fff;
    font-size: 20px;
    padding-top: 10px;
}
.about-item-text {
    margin-left: 70px;
}
blockquote {
    background: #fafafa;
}

/*----------------------------------------
    FAQ
----------------------------------------*/

#faq {
    background: #fafafa;
    padding: 50px 0px 60px;
}
.faq-item {
    padding-bottom: 10px;
}

/*----------------------------------------
    SUBSCRIBE
----------------------------------------*/

#subscribe {
    background: #d6af3c;
    padding: 50px 0px;
}

/*----------------------------------------
    CLIENTS
----------------------------------------*/

#clients {
    background: #fff;
    padding: 50px 0px 70px;
}

/*----------------------------------------
    CONTACT
----------------------------------------*/

#contact {
    background-color: #fafafa;
    padding: 50px 0px;
}
.subscribe {
    margin-top: 20px;
}

/*----------------------------------------
    FOOTER
----------------------------------------*/

#footer {
    padding: 25px 0px;
    background-color: #16a085;
    color: #fff;
}
.social {
    margin-top: 25px;
}
.social li {
    width: 40px;
    height: 40px;
    background-color: #17a98c;
    border-radius: 50%;
    border: 1px solid #17a98c;
    padding-top: 5px;
    text-align: center;
    margin: 0px 5px;
}
.social li a {
    color: #fff;
    font-size: 20px;
}
.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 7px;
    right: 10px;
    display: none;
}


/*----------------------------------------
    MEDIA QUERIES
----------------------------------------*/

@media (min-width: 320px) and (max-width: 360px) {
    .controllers {
        position: absolute;
        top: 0px;
    }
    .preview-description td {
        font-size: 16px;
        padding: 5px;
    }
    .list-checked {
        font-size: 12px;
    }
    .client-item {
        padding: 10px 0px;
    }
    .subscribe {
        margin-bottom: 20px;
    }
}
@media (min-width: 480px) and (max-width: 640px) {
    .controllers {
        position: absolute;
        top: 0px;
    }
    .client-item {
        padding: 10px 0px;
    }
    .subscribe {
        margin-bottom: 20px;
    }
}
@media (min-width: 768px) and (max-width: 980px) {
    .controllers {
        position: absolute;
        top: 0px;
    }
    .carousel-caption h2 {
        font-size: 18px;
    }
    .carousel-caption li,
    .carousel-caption p {
        font-size: 12px;
    }
    .btn-details {
        margin-bottom: 10px;
    }
    .preview-description td {
        font-size: 16px;
        padding: 8px;
    }
    .listing-agent-profile h3 {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .listing-item .listing-thumb {
        max-width:400px;
        margin:0 auto;
    }
}
