/**
*
* ---------------------------------------------------------------------------
*
* Агенство недвижимости "Березка Хауз"
* Author : Artingen
* Author URI : http://artingen.com
*
* --------------------------------------------------------------------------- 
*
*/

/* =================================== */
/*	Basic Style 
/* =================================== */

body {
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 24px;
    font-size: 16px;
    color: #818181;
}

figure, p, address {
    margin: 0;
}

p {
    line-height: 25px;
}

iframe {
    border: 0;
}

a {
    -webkit-transition: all 0.3s ease-out 0s;
       -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
         -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
}

a, a:hover, a:focus, .btn:focus {
    text-decoration: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Open Sans', sans-serif;
    color: #252525;
}

main > section {
    padding: 70px 0;
}

.btn {
    border-radius: 0;
    border: 0;
    position: relative;
}

.btn-blue {
    background-color: rgba(255,39,75, 0.78);
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
    padding: 15px 55px;
    color: #fff;
}

.btn-border {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
}

.bg-blue {
    background-color: #FC002C;
}

/* Sweep To Right */
.btn-effect {
	vertical-align: middle;
	background-color: #FF274B;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	display: inline-block;

	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
		-ms-transform: translateZ(0);
		 -o-transform: translateZ(0);
			transform: translateZ(0);
		  
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
			backface-visibility: hidden;
		  
	-webkit-transition-property: color;
	   -moz-transition-property: color;
		-ms-transition-property: color;
			transition-property: color;
		  
	-webkit-transition-duration: 0.3s;
	   -moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
			transition-duration: 0.3s;
		  
	-moz-osx-font-smoothing: grayscale;
}

.btn-effect:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	
	-webkit-transform: scaleX(0);
	   -moz-transform: scaleX(0);
		-ms-transform: scaleX(0);
			transform: scaleX(0);
			
	-webkit-transform-origin: 0 50%;
	   -moz-transform-origin: 0 50%;
		-ms-transform-origin: 0 50%;
			transform-origin: 0 50%;
			
	-webkit-transition-property: transform;
	   -moz-transition-property: transform;
		-ms-transition-property: transform;
			transition-property: transform;
			
	-webkit-transition-duration: 0.3s;
	   -moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
			transition-duration: 0.3s;
			
	-webkit-transition-timing-function: ease-out;
	   -moz-transition-timing-function: ease-out;
		-ms-transition-timing-function: ease-out;
			transition-timing-function: ease-out;
}

.btn-effect:hover, .btn-effect:focus, .btn-effect:active {
	color: #FC002C;
}

.btn-effect:hover:before, .btn-effect:focus:before, .btn-effect:active:before {
	-webkit-transform: scaleX(1);
	   -moz-transform: scaleX(1);
	    -ms-transform: scaleX(1);
			transform: scaleX(1);
}

.sec-title {
    margin-bottom: 50px;
}

.sec-title.white {
    color: #fff;
}

.sec-title h2 {
	font-weight: normal;
    margin: 0px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 21px;
    line-height: 32px;
    font-family: Tiempos-Text, "Times New Roman", Times, Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 3.24px;
}

.sec-title.white h2 {
    color: #fff;
}


/**
/*	Preloader
/* ==========================================*/

#preloader {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

/*Battery*/
.loder-box {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 1px;
  height: 100px;
  left: 50%;
  margin-left: -64px;
  margin-top: -50px;
  position: absolute;
  top: 50%;
  width: 128px;
}

.battery{
    width: 60px;
    height: 25px;
    top: 35%;
    border: 1px #2E2E2E solid;
    border-radius: 2px;
    position: relative;
    -webkit-animation: charge 5s linear infinite;
       -moz-animation: charge 5s linear infinite;
            animation: charge 5s linear infinite;
    margin: 0 auto;
}

.battery:after {
  background-color: #2E2E2E;
  border-radius: 0 1px 1px 0;
  content: "";
  height: 10px;
  position: absolute;
  right: -5px;
  top: 7px;
  width: 3px;
}

@-webkit-keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

@-moz-keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

@keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

/**
/*	Header
/* ==========================================*/

#navigation {
    -webkit-transition: all 0.8s ease 0s;
       -moz-transition: all 0.8s ease 0s;
        -ms-transition: all 0.8s ease 0s;
         -o-transition: all 0.8s ease 0s;
            transition: all 0.8s ease 0s;

    background-color: rgba(255,255,255,1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
}

/*#navigation.animated-header {
    padding: 20px 30px;
}
*/
h1.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.navbar-inverse .navbar-nav > li > a {
    color: #000;
    font-size: 15px;
    text-transform: uppercase;
}


/*=================================================================
	About
==================================================================*/

#about {
    background-color: #fff;
    color: #fff;
	padding-top: 0;
	min-height: 700px;
}

#about h3 {
    margin: 0 0 35px;
    font-size: 30px;
	line-height: 1.5em;
}

#about .welcome-block h3 {
    margin: 0 0 65px;
}

#about .welcome-block img {
    border: 3px solid #fff;
    border-radius: 50%;
    margin-right: 35px;
    max-width: 100px;
}

#about .message-body {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 70px;
}

.col-md-12.col-md-offset-0.wow.animated.fadeInLeft {
    background: url(/img/bg1.jpg);
    min-height: 700px;
}

.residential {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    justify-content: center;
    padding-top: 240px;
}

.residential-properties {
    display: inline-flex;
    flex: 0 1 auto;
    flex-direction: column;
    max-width: 80%;
    text-align: center;
    padding: 24px;
    background-color: rgb(255, 255, 255,0.92);
}

.property-item p {
    font-size: 22px;
	color: #252525;
	line-height: 1.3em;
}

.advantages-item h4 {
    text-align: left;
}


/*=================================================================
	Offers
==================================================================*/
#offers {
    padding-bottom: 10px;
    padding-top: 70px;
}

.offers-info {
    box-shadow: 10px rgba(0, 0, 0, 0.24);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    max-width: 350px;
}

.offers-item {
    padding: 0 20px 20px 20px;
}

.offers-title h5 {
    font-size: 18px;
    font-weight: 600;
    color: #484848;
    text-align: left;
}

.offers-meta {
    min-height: 40px;
}

.offers-city {
	font-size: 14px;
    color: #777;
    font-weight: 500;
    text-align: left;
}

.offers-thumb img {
    width: 100%;
}

.price {
    font-weight: 700;
    color: #8e1818;
    line-height: 40px;
    height: 40px;
    float: left;
}

.listing_id {
   color: #777;
    font-weight: 500;
    line-height: 40px;
    height: 40px;
    float: right;
}

.offers-meta-data {
    padding: 10px 0;
    width: 100%;
}

.d-flex.flex-row.justify-content-around {
    justify-content: space-around !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.living_area {
    margin: 0px 0px 0px 5px;
}

.beds {
    margin: 0px 0px 0px 5px;
}

.baths {
    margin: 0px 0px 0px 5px;
}

#offers2 {
    padding-bottom: 10px;
	padding-top: 0;
}


/*=================================================================
	Reviews
==================================================================*/

#reviews {
    padding: 90px 0;
}

.review-description p {
    text-align: justify;
	font-size: 14px;
}

.review-photo {
    padding: 10px 0;
}

.review-author {
    color: #484848;
}

/*=================================================================
	Contact
==================================================================*/

.contact-details h3 {
    border-bottom: 1px solid #008ecc;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.contact-details p {
    line-height: 30px;
}

.contact-details p i {
    margin-right: 10px;
}

.contact-details span {
    display: block;
    margin-left: 24px;
}

.contacts-info {
    color: #484848;
}

.mail a {
	color: #FC274B;
}

.mail a:hover {
	color: #C90F2E;
}

#google-map {
    padding-top: 0;
	padding-bottom: 0;
}

/*============================================================
	Footer
==============================================================*/

#footer {
    background-color: #2E2E2E;
    padding: 70px 0 20px 0;
    color: #fff;
}

.footer-content {
    width: 390px;
    margin: 0 auto;
}

.footer-content > div {
    margin-bottom: 40px;
}

.footer-content > div > p:first-child {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-content .footer-social {
    margin: 40px 0 35px;
}

.footer-social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-social ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social ul li a {
    color: #7f7f7f;
    display: block;
    
    -webkit-transition: all 0.2s ease 0s;
       -moz-transition: all 0.2s ease 0s;
        -ms-transition: all 0.2s ease 0s;
         -o-transition: all 0.2s ease 0s;
            transition: all 0.2s ease 0s;
}

.footer-social ul li a:hover {
    color: #ff0000;
}

.footer-content > p {
    color: #ababab;
    font-size: 12px;
}

.row.text-left {
    border-style: solid;
    border-color: #fff;
    border-radius: 0;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 1px;
    border-left-width: 0;
    padding-bottom: 24px;
}

#footer-menu {
    background-color: #2E2E2E;
    padding: 20px 0 70px 0;
    color: #fff;
}

.footer-social {
    float: right;
}


/*============================================================ 
	Responsive Styles
 ============================================================*/

/*============================================================
	For Small Desktop
==============================================================*/

@media (min-width: 980px) and (max-width: 1150px) {

/*about*/
    #about .welcome-block img {
        margin-bottom: 30px;
    }

}


/*============================================================
	Tablet (Portrait) Design for a width of 768px
==============================================================*/

@media (min-width: 768px) and (max-width: 979px) {

.col-md-6.col-md-offset-0.wow.animated.fadeInLeft {
    min-height: 480px;
}

.col-md-6.col-md-offset-0.wow.animated.fadeInRight {
    min-height: 480px;
}

/* about */

.col-md-5.col-sm-6.col-xs-12.text-center.wow.animated.zoomIn {
    display: none;
}

.col-md-7.col-sm-6.col-xs-12.text-center.wow.animated.zoomIn {
    width: 100%;
}

main > section {
    padding: 50px 0 20px 0;
}

.advantages-item {
    margin-bottom: 50px;
	height: 200px;
    }

/* contact form */
    .contact-form {
        margin-bottom: 50px;
    }
}

/*navigation*/

.navbar-inverse .navbar-nav > li > a {
    font-size: 14px;
}

.directions-item-container {
    width: 50%;
}

.directions-item-container3 {
    width: 50%;
}

.col-md-4.col-sm-6.col-xs-12.text-center.wow.animated.zoomIn {
    padding: 10px;
}

/*============================================================
	Mobile (Portrait) Design for a width of 768px
==============================================================*/

@media only screen (min-width: 768px) and (max-width: 960px) {

    body {
        font-size: 14px;
    }

    .sec-title h2 {
        font-size: 25px;
    }

    .sec-title h2:after {
        left: 30%;
    }

.residential {
    padding-top: 110px;
}

.sec-title h2:after {
    width: 38%;
}

/*navigation*/
    .navbar-inverse .navbar-toggle {
        border-color: #fff;
    }

    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background-color: transparent;
    }

/* about */

    #about h3 {
        font-size: 18px;
        margin: 0 0 35px !important;
    }

    #about .owl-buttons {
        margin-top: 20px;
    }

    #about .message-body {
        margin-bottom: 45px;
    }

    #about .welcome-block img {
        margin: 0 25px 15px 0;
    }

/* directions */

.directions-wrapper {
    max-width: 420px;
}

.directions-item {
    margin-left: 0;
    margin-right: 0;
    width: 400px;
}


section#directions {
    padding: 0;
}

/* map */
#google-map {
    padding-top: 0;
}

.sec-title {
    padding-left: 10px;
    padding-right: 10px;
}


/* follow us */
    .social-button li:nth-child(2) {
        margin: 0 25px;
    }

    .social-button li a {
        height: 65px;
        line-height: 71px;
        width: 65px;
    }

/* footer */
    .footer-content {
        width: 100%;
    }

    .footer-social ul li {
        margin: 0 7px;
    }

.col-md-4.col-sm-6.col-xs-12.text-center.wow.animated.zoomIn {
    padding: 10px;
}

}


/*============================================================
	Mobile (Landscape) Design for a width of 480px
==============================================================*/

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .sec-title h2:after {
        left: 38%;
    }

/*about*/

    #about .welcome-block h3 {
        margin: 0 0 35px;
    }

/* social */
    .social-button li:nth-child(2) {
        margin: 0 50px;
    }

    .social-button li a {
        height: 90px;
        line-height: 96px;
        width: 90px;
    }

/* contact form */
    .contact-form {
        margin-bottom: 50px;
    }

/* footer */
    .footer-content {
        width: 380px;
    }
}

/*============================================================
	Mobile (Landscape) Design for a width of 414px
==============================================================*/

@media only screen and (min-width: 415px) and (max-width: 479px) {

img#nn {
    width: 85%;
}

section#service {
    padding: 0;
}

.service-text-container {
    margin-right: 0;
}

.advantages-item {
    padding: 10px;
}

#advantages {
    padding-bottom: 0;
}

#advantages2 {
    padding-top: 0;
}

.col-md-4.col-sm-6.col-xs-12.text-center.wow.animated.zoomIn {
    padding: 20px 0px 0 30px;
}

.col-md-4.col-sm-6.col-xs-12.wow.animated.fadeInUp {
    padding: 30px 20px 0px 20px;
}

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

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

.btn.btn-danger {
    font-size: 15px;
}

}

/*============================================================
	Mobile (Landscape) Design for a width of 412px
==============================================================*/

@media only screen and (min-width: 412px) and (max-width: 414px) {

img#nn {
    width: 85%;
}

section#service {
    padding: 0;
}

.service-text-container {
    margin-right: 0;
}

.advantages-item {
    padding: 10px;
}

#advantages {
    padding-bottom: 0;
}

#advantages2 {
    padding-top: 0;
}

.col-md-4.col-sm-6.col-xs-12.text-center.wow.animated.zoomIn {
    padding: 20px 0px 0 30px;
}

.col-md-4.col-sm-6.col-xs-12.wow.animated.fadeInUp {
    padding: 30px 20px 0px 20px;
}

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

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

.btn.btn-danger {
    font-size: 15px;
}

}


/*============================================================
	Mobile (Landscape) Design for a width of 375px
==============================================================*/

@media only screen and (min-width: 375px) and (max-width: 411px) {

img#nn {
    width: 85%;
}

section#service {
    padding: 0;
}

.service-text-container {
    margin-right: 0;
}

.advantages-item {
    padding: 10px;
}

#advantages {
    padding-bottom: 0;
}

#advantages2 {
    padding-top: 0;
}

.col-md-4.col-sm-6.col-xs-12.text-center.wow.animated.zoomIn {
    padding: 20px 0px 0 13px;
}

.col-md-4.col-sm-6.col-xs-12.wow.animated.fadeInUp {
    padding: 30px 20px 0px 20px;
}

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

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

.btn.btn-danger {
    font-size: 15px;
}

}

/*============================================================
	Mobile (Landscape) Design for a width of 320px
==============================================================*/

@media only screen and (min-width: 320px) and (max-width: 374px) {

section#service {
    padding: 0;
}

.advantages-item {
    padding: 10px;
}

.footer-social {
    float: left;
    padding: 10px 0;
}

#advantages {
    padding-bottom: 0;
}

#advantages2 {
    padding-top: 0;
}

.col-md-4.col-sm-6.col-xs-12.text-center.wow.animated.zoomIn {
    padding: 10px;
}

.col-md-4.col-sm-6.col-xs-12.wow.animated.fadeInUp {
    padding: 30px 20px 0px 20px;
}

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

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

.btn.btn-danger {
    font-size: 12px;
}

#about h3 {
    font-size: 18px;
}

}