body {
  margin: 0;
  font-family: "Questrial", sans-serif;
  background: #fff;
  overflow-x: hidden;
}
body a {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Questrial", serif;
}
p {
  margin: 0;
}
ul,
label {
  margin: 0;
  padding: 0;
}
body a:hover {
  text-decoration: none;
}
/*--banner--*/
.banner {
  /*background:url(../images/house_wide_view.jpg)no-repeat;*/
  background: url(../images/banner1.jpeg) no-repeat;
  /*url(../images/banner1.jpeg)*/
  -webkit-background-size: cover;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 799px;
}

/*.banner:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    background: rgba(0, 0, 0, 0.8);*/
/*    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);*/
/*    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0)));*/
/*    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.0) 100%);*/
/*    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);*/
/*    background: -ms-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);*/
/*    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);*/
/*    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1);*/
/*}*/

.logo h1 {
  font-size: 3.5em;
  display: inline-block;
  font-family: "Questrial", serif;
  line-height: 1em;
}
.logo h1 a {
  color: #fff;
  text-decoration: none;
}
/*--top-nav--*/
.top-nav {
  padding: 1em 0;
}
nav.navbar.navbar-default {
  background-color: inherit;
  border: none;
  margin: 0;
}
ul.nav.navbar-right {
  margin-top: 0.6em;
}
.top-nav ul li {
  margin: 0 1.5em;
  display: inline-block;
  padding: 16px 10px;
}
.top-nav ul li:nth-child(7) {
  margin-right: 0;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.top-nav ul li a.active:before {
  color: #5bd982;
}
.top-nav ul li a {
  text-decoration: none;
  font-size: 1.4em;
  color: #fff;
  position: relative;
  padding: 0;
  font-family: "Questrial", serif;
  text-align: center;
}
.top-nav ul li a:hover,
.top-nav ul li a.active {
  color: #24ffed;
}
.nav > li > a:hover,
.nav > li > a:focus,
.top-nav ul li a.active {
  background: none;
}
.top-nav ul li a.sign-in {
  /*
    padding: .4em 1.2em;
    color: #fff;
    border: 1px solid #ef717a;
    font-size: 1.2em;
    outline: none;
*/
}
.top-nav ul li a.sign-in:hover {
  background: #ef717a;
  color: #000;
}
/*--//top-nav--*/
/*--banner-text--*/
.banner-text {
  width: 40%;
  margin: 14em auto 0;
  text-align: center;
}
.banner-text h2.bnr-title {
  color: #24ffed;
  font-size: 7em;
}
.banner-text p {
  font-size: 1em;
  color: #fff;
  margin-top: 1.5em;
  letter-spacing: 3px;
  line-height: 1.8em;
  font-family: "Roboto", sans-serif;
}
/*--button--*/
.button {
  display: inline-block;
  margin: 2em 0 0;
  padding: 1em 2.1em;
  border: none;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  background: #ec3935;
  color: #000;
  overflow: hidden;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  -moz-transition: color 0.3s;
}
.button::before,
.button::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -moz-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button::before {
  background: #f6afb4;
}
.button::after {
  background: #ef717a;
}
.button:hover {
  color: #fff;
}
.button:hover::before,
.button:hover::after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
}
.button:hover::after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
  -moz-transition-delay: 0.175s;
}
/*--//button--*/
.social-icons {
  margin-top: 4em;
}
.social-icons ul li {
  display: inline-block;
  margin: 0 0.8em;
}
.social-icons ul li a {
  background: url(../images/social-icons.png) no-repeat 0px 0px;
  display: block;
  height: 36px;
  width: 35px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
}
.social-icons ul li a.pin {
  background-position: 0px -38px;
}
.social-icons ul li a.in {
  background-position: 0px -76px;
}
.social-icons ul li a.be {
  /*-- w3layouts --*/
  background-position: 0px -114px;
}
.social-icons ul li a.you {
  background-position: 0px -152px;
}
.social-icons ul li a.vimeo {
  background-position: 0px -192px;
}
.social-icons ul li a:hover {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
}
/*--//banner-text--*/
/*--login-modal--*/
.modal-open .modal {
  background: rgba(0, 0, 0, 0.48);
  overflow-y: scroll !important;
}
.modal.sign-in-modal {
  overflow-y: inherit !important;
  padding: 0 1em !important;
}
.modal-body {
  padding: 2em;
}
.modal-dialog {
  margin: 11.5em auto 0;
}
.sign-in-modal .modal-header {
  border: none;
  min-height: 3.5em;
}
.sign-in-modal button.close {
  color: #fff;
  opacity: 0.9;
  font-size: 3em;
}
/*--login--*/
.login h3 {
  color: #fff;
  font-weight: normal;
  font-size: 1.5em;
  text-align: center;
  letter-spacing: 1px;
}
.login input[type="text"],
.login input[type="password"] {
  /*-- agileits --*/
  width: 100%;
  padding: 1em;
  font-weight: normal;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  outline: none;
  font-size: 1em;
  margin-top: 2em;
}
.login h4 {
  font-size: 1.2em;
  margin: 1em 0;
  letter-spacing: 1px;
}
.login h4 a {
  color: #fff;
}
.login h4 a:hover {
  color: #000;
}
.login input[type="submit"] {
  background: #ef717a;
  color: #fff;
  font-size: 1.1em;
  border: none;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  padding: 0.6em 1em;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  margin: 1em 0;
}
.login input[type="submit"]:hover {
  background: #fff;
  color: #ef717a;
}
.check-box input[type="checkbox"] + label {
  position: relative;
  padding-left: 2em;
  border: none;
  outline: none;
  font-size: 0.9em;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
  /*-- w3layouts --*/
}
.check-box input[type="checkbox"] {
  display: none;
}

.check-box input[type="checkbox"]:checked + label span:first-child:before {
  content: "";
  background: url(../images/tick.png) no-repeat;
  position: absolute;
  left: 1px;
  top: 2px;
  font-size: 10px;
  width: 10px;
  height: 10px;
}
.check-box input[type="checkbox"] + label span:first-child {
  width: 15px;
  height: 15px;
  display: inline-block;
  border: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 1px;
}
/*--//login-modal--*/
/*--about--*/
.about,
.team,
.gallery,
.testimonials,
.contact {
  padding: 7em 0;
}

.about {
  padding-top: 10em;
  position: relative;
  z-index: 10;
  background-color: white;
}

.team {
  position: relative;
}
.about-left img {
  width: 100%;
}
h3.title {
  font-size: 4em;
  color: #ec3935;
  text-align: center;
  margin-bottom: 0.8em;
}
p {
  font-size: 1em;
  color: #999;
  line-height: 1.8em;
}
/*--tabs--*/
.tab-content {
  margin-top: 1.5em;
}
.nav-tabs {
  border: none;
  /*-- agileits --*/
}
.nav-tabs li {
  margin-right: 1em;
}
.tabs .nav-tabs > li.active > a,
.tabs .nav-tabs > li.active > a:hover,
.tabs .nav-tabs > li.active > a:focus {
  border-color: #ef717a;
  background-color: #ef717a;
  color: #fff;
}
.tabs .nav-tabs li a {
  margin-right: 0;
  border-color: #ccc;
  color: #555;
  padding: 0.7em 4em;
  font-size: 1em;
  border-radius: 5px;
  line-height: initial;
}
/*--//tabs--*/
p.tab-text {
  margin-top: 0.8em;
}
/*--//about--*/
/*-- services --*/
.services,
.news {
  /*background: url(../images/bg1.png) fixed;*/
  -webkit-background-size: contain;
  background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  -ms-background-size: contain;
  padding: 6em 0;
}
.services h3.title {
  /*text-align: left;*/
  margin-left: 0.6em;
}
.services-grid.services-grid-mdl {
  margin: 3.5em 0;
}
/*--Effect 1--*/
.services-grid-left span {
  font-size: 2em;
  color: #fff;
  display: inline-block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-border-radius: 50%;
  text-decoration: none;
  z-index: 1;
  padding: 1em;
}
.services-grid-left span:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-border-radius: 50%;
  content: "";
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.effect-1 {
  background: #ec3935;
  -webkit-transition: background 0.5s, color 0.2s;
  -moz-transition: background 0.5s, color 0.2s;
  transition: background 0.5s, color 0.2s;
}
.effect-1:after {
  top: -7px;
  left: -7px;
  padding: 7px;
  -webkit-box-shadow: 0 0 0 2px #ec3935;
  box-shadow: 0 0 0 2px #ec3935;
  -moz-box-shadow: 0 0 0 2px #ec3935;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.2s;
  -moz-transition: -moz-transform 0.5s, opacity 0.2s;
  transition: transform 0.5s, opacity 0.2s;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
  -moz-opacity: 0;
}
.services-grid:hover span {
  background: #ec3935;
  color: #fff !important;
}
.services-grid:hover span:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -moz-opacity: 1;
}
/*--//Effect 1--*/
.services img {
  height: 100px;
  margin-bottom: 15px;
}
.services h4 {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ec3935;
}

.services p {
  margin-bottom: 15px;
}

.service-info div {
  /*margin-bottom: 15px;*/
  margin-bottom: 15px;
  padding: 15px;
}
.services-right {
  padding: 0 0 0 5em;
}
.services-grid-right h4 {
  font-size: 1.5em;
  margin-top: 0.5em;
  color: #555;
  line-height: 1.5em;
}
.services-grid-left {
  text-align: right;
  padding-right: 3em;
}
/*--//services--*/
/*--team--*/
.flip-content {
  position: relative;
  overflow: hidden;
}
.img-text {
  position: absolute;
  bottom: -50%;
  left: 0;
  background: rgba(0, 0, 0, 0.76);
  padding: 1em;
  text-align: center;
  width: 100%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
}
.img-text h4 {
  font-size: 2em;
  color: #ec3935;
}
.img-text p {
  color: #fff;
  margin-top: 0.5em;
}
.flipster-carousel .flip-current .flip-content:hover .img-text {
  bottom: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
}
/*--//team--*/
/*--news--*/
.news-grid {
  position: relative;
  width: 32%;
  padding: 0;
  overflow: hidden;
}
.news-grid:nth-child(2) {
  margin: 0 1.5em;
}
.news img {
  width: 100%;
}
.news-grid-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.56);
  padding: 2em;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
}
.news h5 {
  font-size: 2em;
  color: #fff;
}
.news h5 span {
  font-size: 2.2em;
}
.news-grid-info h4 {
  font-size: 1em;
  background: #24ffed;
  margin: 7em 0 0;
  display: inline-block;
  color: #000;
  padding: 5px 10px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.news-grid-info p {
  color: #fff;
  margin-top: 0.8em;
}
.article-links ul li {
  display: inline-block;
  margin-right: 2em;
  color: #fff;
}
.article-links ul li i.glyphicon {
  margin-right: 8px;
}
.article-links {
  margin-top: 4em;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
}
.article-links ul li a {
  font-size: 1em;
  color: #fff;
}
.article-links ul li a:hover {
  color: #24ffed;
}
.news-grid-info:hover .article-links {
  margin-top: 1em;
}
.news-grid-info:hover h4 {
  margin: 4.5em 0 0;
}
.news-grid:hover .news-grid-info {
  background: rgba(239, 113, 122, 0.55);
}
/*--//news--*/
/*--gallery--*/
.gallery-grids {
  padding: 0;
}
.gallery-grids-top {
  position: relative;
}
.b-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(239, 113, 122, 0.78);
  -webkit-transform: scale(0);
  transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
}
.gallery-grids.glry-grid2 .b-wrapper h5 {
  margin: 94% 0;
}
.b-wrapper h5 {
  font-size: 2em;
  color: #fff;
  margin: 45% 0;
  text-align: center;
  font-weight: bolder;
  letter-spacing: 2px;
}
.gallery img.img-responsive {
  width: 100%;
}
.gallery-grids-top:hover .b-wrapper {
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
}
/*--//gallery--*/
/*--portfolio--*/
.portfolio-container {
  width: 60%;
  margin: 0 auto;
  display: block;
}
.portfolio-modal {
  padding: 0 !important;
  overflow: inherit !important;
}
.portfolio-modal .modal-content {
  padding: 10px 0 35px;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  text-align: center;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-box-shadow: none;
}
.portfolio-modal .modal-content h3 {
  margin: 0.3em 0 0.6em 0;
  font-size: 4em;
  color: #fff;
}
.portfolio-modal .modal-content img {
  margin: 0 auto;
  width: inherit;
  border: 10px solid rgba(255, 255, 255, 0.42);
}
.portfolio-modal .modal-content p {
  padding: 2em 0;
  color: #fff;
}
.portfolio-modal .close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 75px;
  height: 75px;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  z-index: 999;
}
.portfolio-modal .close-modal:hover {
  opacity: 0.7;
}
.modal-content {
  background-color: rgba(12, 208, 192, 0.7);
}
div#portfolioModal3 img {
  width: 45%;
}
.portfolio-modal .close-modal .lr {
  z-index: 1051;
  width: 2px;
  height: 50px;
  margin-left: 35px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.portfolio-modal .close-modal .lr .rl {
  z-index: 1052;
  width: 2px;
  height: 50px;
  background-color: #fff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
/*--//Portfolio--*/
/*--testimonials--*/
.testimonials {
  background: url(../images/banner.jpg) no-repeat 0px bottom;
  -webkit-background-size: cover;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
}
.flexslider {
  width: 60%;
  margin: 0 auto;
}
.testi-left {
  float: left;
  width: 20%;
}
.testi-right {
  float: left;
  width: 65%;
  margin-left: 3em;
}
.testi-left img {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-border-radius: 50%;
}
.testi-right h4 {
  font-size: 2.5em;
  color: #fff;
  text-transform: uppercase;
  margin: 0.5em 0;
}
.testi-right h6 {
  color: #fff;
  font-size: 1.2em;
}
.testi-text {
  margin-bottom: 3em;
}
.testi-text p {
  background: #fff;
  padding: 2em;
  position: relative;
  -webkit-box-shadow: 1px 4px 2px rgb(239, 113, 122);
  box-shadow: 1px 4px 2px rgb(239, 113, 122);
  -moz-box-shadow: 1px 4px 2px rgb(239, 113, 122);
  border-radius: 7px;
}
.testi-text p:before {
  width: 0;
  height: 0;
  position: absolute;
  content: "";
  bottom: -24px;
  left: 19%;
  display: block;
  border-style: solid;
  border-width: 25px 30px 0 5px;
  border-color: #ffffff transparent transparent transparent;
}
/*--//testimonials--*/
/*--contact--*/
.contact h4 {
  font-size: 1.8em;
  color: #000;
  margin-bottom: 0.5em;
}
.contact-top-left iframe {
  width: 100%;
  height: 28em;
  border: 5px solid #f6aeb3;
}
.address ul li {
  display: block;
  margin-top: 1.2em;
  color: #555;
}
.address ul li i.glyphicon {
  font-size: 1.5em;
  margin-right: 0.8em;
  position: relative;
  top: 8px;
  /*vertical-align: middle;*/
}
.address ul li a {
  color: #555;
}
.address ul li a:hover {
  color: #ec3935;
}
.contact-textarea {
  margin-top: 1em;
}
.contact-textarea input[type="text"] {
  width: 100%;
  color: #999;
  outline: none;
  font-size: 1em;
  padding: 0.6em 1em;
  margin-bottom: 1em;
  -webkit-appearance: none;
  background: none;
  border: 1px solid #dadada;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
}
.contact-textarea textarea {
  resize: none;
  width: 100%;
  color: #999;
  font-size: 1em;
  outline: none;
  padding: 0.8em 1em;
  border: none;
  min-height: 13em;
  -webkit-appearance: none;
  background: none;
  border: 1px solid #dadada;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
}
.contact-textarea input[type="submit"],
.contact-textarea input[type="reset"] {
  border: none;
  outline: none;
  color: #fff;
  background: #ef717a;
  width: 49%;
  padding: 0.8em;
  font-size: 1em;
  margin: 0.5em 0 0;
  -webkit-appearance: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.contact-textarea input[type="reset"] {
  margin: 0 0 0 0;
  background: #ec3935;
}
.contact-textarea input[type="submit"]:hover {
  background: #ec3935;
}
.contact-textarea input[type="reset"]:hover {
  background: #ef717a;
}
/*--//contact--*/
/*--footer--*/
.footer {
  background: #ecefef;
  padding: 6em 0;
}
.footer h3 {
  font-size: 2.6em;
  color: #ec3935;
  margin-bottom: 0.5em;
}
.footer-grids:nth-child(1) {
  padding: 0 2em 0 0;
}
.footer p a {
  color: #ef717a;
}
.footer p a:hover {
  color: #999;
}
.footer input[type="text"] {
  outline: none;
  width: 85%;
  color: #999;
  font-size: 1em;
  padding: 10px 15px;
  font-family: "Roboto", sans-serif;
  border: 1px solid #aaa;
  margin-bottom: 1em;
}
.footer input[type="submit"] {
  outline: none;
  border: 3px solid #ef717a;
  width: 85%;
  background: #ef717a;
  color: #fff;
  font-size: 1.1em;
  padding: 8px 12px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  font-family: "Roboto", sans-serif;
}
.footer input[type="submit"]:hover {
  color: #ef717a;
  background: #fff;
}
/*--//footer--*/
/*--slider-up-arrow--*/
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 3%;
  right: 3%;
  overflow: hidden;
  width: 32px;
  height: 32px;
  border: none;
  text-indent: 100%;
  background: url("../images/move-up.png") no-repeat 0px 0px;
  z-index: 999;
}
#toTopHover {
  width: 32px;
  height: 32px;
  display: block;
  overflow: hidden;
  float: right;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
}
/*--//slider-up-arrow--*/
/*---- responsive-design -----*/
@media (max-width: 1440px) {
  .banner-text {
    width: 46%;
    margin: 13em auto 0;
  }
  .portfolio-container {
    width: 70%;
  }
  .about,
  .team,
  .gallery,
  .testimonials,
  .contact {
    padding: 6em 0;
  }
}
@media (max-width: 1366px) {
  .banner-text {
    width: 50%;
  }
  .testi-right h4 {
    font-size: 2em;
  }
}
@media (max-width: 1280px) {
  .banner-text h2.bnr-title {
    font-size: 6em;
  }
  .banner-text {
    margin: 11em auto 0;
  }
  .portfolio-modal .modal-content h3 {
    margin: 0 0 0.6em 0;
    font-size: 3.5em;
  }
  .footer {
    padding: 5em 0;
  }
}
@media (max-width: 1080px) {
  .banner-text h2.bnr-title {
    font-size: 5.5em;
  }
  .banner-text {
    width: 55%;
  }
  .social-icons {
    margin-top: 2em;
  }
  .button {
    padding: 0.8em 2.1em;
  }
  .banner {
    min-height: 680px;
  }
  .about,
  .team,
  .gallery,
  .testimonials,
  .contact {
    padding: 5em 0;
  }
  .services,
  .news {
    padding: 4em 0;
  }
  .services-grid-left {
    padding-right: 1em;
  }
  .services-grid-right {
    padding-right: 0;
  }
  .services-grid-right h4 {
    font-size: 1.3em;
  }
  .services-grid-left span {
    font-size: 1.5em;
  }
  .services-grid.services-grid-mdl {
    margin: 2.5em 0;
  }
  .services-right {
    padding: 0 0 0 3em;
  }
  .news-grid {
    width: 31.8%;
  }
  .news-grid-info {
    padding: 1.5em;
  }
  .news-grid-info h4 {
    margin: 4em 0 0;
  }
  .news-grid-info:hover h4 {
    margin: 2.5em 0 0;
  }
  .flexslider {
    width: 70%;
  }
  .testi-right h4 {
    font-size: 1.8em;
  }
  .contact-textarea input[type="submit"],
  .contact-textarea input[type="reset"] {
    width: 48.8%;
  }
  .contact-textarea textarea {
    min-height: 11em;
  }
  .footer {
    padding: 4em 0;
  }
}
@media (max-width: 1024px) {
  div#portfolioModal3 img {
    width: 42%;
  }
  .banner-text {
    margin: 10em auto 0;
  }
  .top-nav ul li {
    margin: 0 1.3em;
  }
}
@media (max-width: 991px) {
  .top-nav ul li a {
    font-size: 1.2em;
  }
  .top-nav ul li a.sign-in {
    padding: 0.3em 1em;
    font-size: 1.1em;
  }
  .banner-text h2.bnr-title {
    font-size: 5em;
  }
  .banner-text {
    width: 61%;
  }
  .logo h1 {
    font-size: 3em;
  }
  ul.nav.navbar-right {
    margin-top: 0.3em;
  }
  .button {
    padding: 0.7em 2em;
  }
  .banner-text {
    margin: 9em auto 0;
  }
  .banner {
    min-height: 630px;
  }
  .about,
  .team,
  .gallery,
  .testimonials,
  .contact {
    padding: 4em 0;
  }
  h3.title {
    font-size: 3.5em;
    margin-bottom: 0.7em;
  }
  .about-right {
    margin-top: 2em;
  }
  .services-grid-left {
    width: 15%;
  }
  .services-right {
    margin-top: 2em;
  }
  .news-grid {
    width: 45%;
    float: none;
    margin: 0 auto;
  }
  .news-grid:nth-child(2) {
    margin: 1em auto;
  }
  .gallery-grids {
    float: left;
    width: 25%;
  }
  .b-wrapper h5 {
    font-size: 1.5em;
    margin: 44% 0;
  }
  .portfolio-modal .modal-content {
    padding: 0;
  }
  .gallery .modal-body {
    padding: 1em;
  }
  .portfolio-modal .modal-content h3 {
    font-size: 3em;
  }
  .flexslider {
    width: 90%;
  }
  .contact-top-left iframe {
    height: 20em;
  }
  .contact-top-right {
    margin-top: 2.5em;
  }
  .footer-grids:nth-child(2) {
    margin: 2em 0;
  }
  .footer-grids {
    padding: 0;
  }
  .tab-content {
    margin-top: 1em;
  }
  .modal-dialog {
    margin: 8.5em auto 0;
  }
}
@media (max-width: 800px) {
  .banner-text h2.bnr-title {
    font-size: 4em;
  }
  .banner-text p {
    letter-spacing: 2px;
  }
  .banner-text {
    width: 70%;
  }
  .button {
    margin: 1.5em 0 0;
  }
  .banner-text {
    margin: 7em auto 0;
  }
  .banner {
    min-height: 525px;
  }
  .services-right {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .banner-text {
    margin: 6em auto 0;
  }
  .social-icons ul li {
    margin: 0 0.5em;
  }
  .top-nav ul li {
    margin: 0 1em;
  }
  .banner {
    min-height: 510px;
  }
  .about,
  .team,
  .gallery,
  .testimonials,
  .contact {
    padding: 3.5em 0;
  }
  h3.title {
    margin-bottom: 0.5em;
  }
  .portfolio-container {
    width: 80%;
  }
  .portfolio-modal .close-modal .lr .rl,
  .portfolio-modal .close-modal .lr {
    height: 40px;
  }
  .testi-right h4 {
    margin: 1em 0 0.5em;
  }
}
@media (max-width: 767px) {
  .top-nav {
    margin: 0 2em;
  }

  button.navbar-toggle {
    background: #ef717a;
    border-color: #fff;
  }
  .navbar-toggle .icon-bar {
    background: #fff;
  }
  .top-nav ul li {
    display: block;
    margin: 0.5em 0;
  }
  .top-nav ul li a {
    padding: 5px 0;
  }
  div#bs-example-navbar-collapse-1 {
    background: #000;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 90%;
    z-index: 999;
    left: 4%;
  }
  ul.nav.navbar-right {
    text-align: center;
  }
  .navbar-right .dropdown-menu {
    min-width: 100%;
    position: relative;
    text-align: center;
  }
  .menu__link::before,
  .menu__link::after {
    height: 2px;
  }
  .top-nav ul li a.sign-in {
    padding: 0.4em 2em;
    display: inline-block;
  }
}
@media (max-width: 640px) {
  .banner-text h2.bnr-title {
    font-size: 3.8em;
  }
  .banner-text p {
    letter-spacing: 0px;
  }
  .button {
    padding: 0.5em 1.5em;
  }
  .banner {
    min-height: 500px;
  }
  .banner-text {
    margin: 5em auto 0;
  }
  .services,
  .news {
    padding: 3em 0;
  }
  .news-grid {
    width: 55%;
  }
  .b-wrapper h5 {
    letter-spacing: 0px;
  }
  .testi-text p {
    padding: 1.5em;
  }
  .testi-right {
    margin-left: 2em;
  }
  .testi-right h6 {
    font-size: 1.1em;
  }
  .about,
  .team,
  .gallery,
  .testimonials,
  .contact {
    padding: 3em 0;
  }
  h3.title {
    font-size: 3.2em;
  }
}
@media (max-width: 480px) {
  .top-nav {
    padding: 1em 0 0;
  }
  button.navbar-toggle {
    margin: 0;
  }
  .banner-text {
    width: 83%;
  }
  .banner-text h2.bnr-title {
    font-size: 3em;
  }
  .banner-text p {
    margin-top: 1em;
  }
  .button {
    margin: 1em 0 0;
  }
  .banner {
    min-height: 440px;
  }
  .services-grid-left {
    width: 20%;
    padding: 0;
    text-align: left;
  }
  .services-grid-right h4 {
    font-size: 1.2em;
  }
  .services-grid.services-grid-mdl {
    margin: 2em 0;
  }
  .services-right {
    padding: 0 0 0 1em;
  }
  .news-grid {
    width: 74%;
  }
  .gallery-grids {
    width: 49.6%;
  }
  .testi-right h4 {
    margin: 0.5em 0 0.5em;
    font-size: 1.5em;
  }
  .testi-text {
    margin-bottom: 2em;
  }
  .flexslider {
    width: 100%;
  }
  .testi-text p:before {
    bottom: -20px;
    left: 19%;
    border-width: 20px 25px 0 5px;
  }
  p.tab-text {
    margin-top: 0.5em;
  }
  .contact h4 {
    font-size: 1.6em;
  }
  .contact-top-left iframe {
    height: 16em;
  }
  .contact-textarea input[type="text"] {
    margin-bottom: 0.5em;
  }
  .contact-textarea input[type="submit"],
  .contact-textarea input[type="reset"] {
    width: 48.5%;
  }
  .footer {
    padding: 3em 0;
  }
  .footer input[type="submit"] {
    padding: 6px 12px;
  }
  .footer h3 {
    font-size: 2.4em;
    margin-bottom: 0.3em;
  }
  .sign-in-modal .modal-header {
    padding: 9px 15px;
  }
  .login input[type="text"],
  .login input[type="password"] {
    font-size: 0.9em;
    margin-top: 1.5em;
  }
}
@media (max-width: 414px) {
  .banner-text h2.bnr-title {
    font-size: 2.8em;
  }
  .banner-text p {
    margin-top: 0.8em;
    font-size: 0.9em;
  }
  .top-nav {
    margin: 0 1em;
  }
  .banner-text {
    width: 90%;
  }
  .social-icons ul li {
    margin: 0 0.3em;
  }
  .social-icons {
    margin-top: 1.5em;
  }
  .banner {
    min-height: 400px;
  }
  .about,
  .team,
  .gallery,
  .testimonials,
  .contact {
    padding: 2em 0;
  }
  h3.title {
    font-size: 3em;
  }
  .about-right {
    margin-top: 1em;
  }
  .tabs .nav-tabs li a {
    padding: 0.6em 2.5em;
    font-size: 0.9em;
  }
  /*.about-left,.about-right{*/
  /*    padding: 0;*/
  /*}*/
  p {
    font-size: 0.9em;
  }
  .services,
  .news {
    padding: 2em 0;
  }
  .services-left,
  .services-right {
    padding: 0;
  }
  .services-grid-right h4 {
    font-size: 1em;
  }
  .services-right {
    margin-top: 1em;
  }
  h3.title {
    font-size: 2.5em;
  }
  ul.flip-items {
    height: 225px !important;
    width: 225px !important;
  }
  .img-text h4 {
    font-size: 1.5em;
    color: #ec3935;
  }
  .news-grid {
    width: 85%;
  }
  .news h5 span {
    font-size: 2em;
  }
  .portfolio-container {
    width: 91%;
  }
  .portfolio-modal .modal-content h3 {
    font-size: 2.5em;
  }
  div#portfolioModal3 img {
    width: 76%;
  }
  .testi-right h4 {
    font-size: 1.3em;
  }
  .address ul li {
    margin-top: 1em;
  }
  .contact-top-right {
    margin-top: 1.5em;
  }
  .contact-textarea input[type="text"] {
    font-size: 0.9em;
    padding: 0.5em 1em;
  }
  .contact-textarea {
    margin-top: 0.8em;
  }
  .contact-top-left,
  .contact-top-right {
    padding: 0;
  }
  .contact-textarea input[type="submit"],
  .contact-textarea input[type="reset"] {
    padding: 0.6em;
    font-size: 0.9em;
  }
  .footer {
    padding: 2em 0;
  }
  .footer h3 {
    font-size: 2.2em;
  }
  .footer input[type="text"] {
    padding: 7px 15px;
    font-size: 0.9em;
  }
  .footer input[type="submit"] {
    font-size: 1em;
  }
}
@media (max-width: 375px) {
  .banner-text {
    margin: 4em auto 0;
  }
  .banner-text h2.bnr-title {
    font-size: 2.6em;
  }
  .button {
    font-size: 0.9em;
  }
  ul.flip-items {
    height: 200px !important;
    width: 200px !important;
  }
  .news-grid {
    width: 100%;
  }
  .testi-left {
    width: 23%;
  }
  .testi-right {
    margin-left: 1em;
  }
  .contact-textarea textarea {
    min-height: 9em;
  }
  .contact-textarea input[type="submit"],
  .contact-textarea input[type="reset"] {
    width: 48%;
  }
  div#bs-example-navbar-collapse-1 {
    width: 92%;
  }
  .sign-in-modal button.close {
    font-size: 2.5em;
  }
  .sign-in-modal .modal-header {
    padding: 10px 15px 0;
    min-height: 2.5em;
  }
  .login h3 {
    letter-spacing: 0px;
  }
  .news-grid-info h4 {
    margin: 6em 0 0;
  }
  .gallery-grids {
    width: 50%;
  }
  .services h3.title {
    margin-left: 0;
  }
}
@media (max-width: 320px) {
  .logo h1 {
    font-size: 2.5em;
  }
  .navbar-toggle {
    padding: 7px 7px;
  }
  .banner-text h2.bnr-title {
    font-size: 2.4em;
  }
  .banner-text p {
    font-size: 0.87em;
  }
  .social-icons ul li {
    margin: 0 0.2em;
  }
  .social-icons ul li a {
    background: url(../images/social-icons.png) no-repeat 0px 2px;
    height: 30px;
    width: 30px;
    background-size: 100%;
  }
  .social-icons ul li a.pin {
    background-position: 0px -27px;
  }
  .social-icons ul li a.in {
    background-position: 0px -55px;
  }
  .social-icons ul li a.be {
    background-position: 0px -84px;
  }
  .social-icons ul li a.you {
    background-position: 0px -113px;
  }
  .social-icons ul li a.vimeo {
    background-position: 0px -141px;
  }
  .social-icons {
    margin-top: 1em;
  }
  .banner {
    min-height: 365px;
  }
  .banner-text {
    margin: 3.5em auto 0;
  }
  .nav-tabs li {
    margin-right: 0.5em;
  }
  .tabs .nav-tabs li a {
    padding: 0.6em 2.2em;
  }
  .services-grid-left span {
    font-size: 1.3em;
  }
  .services-grid-right h4 {
    margin-top: 0;
  }
  .services-grid.services-grid-mdl {
    margin: 1.5em 0;
  }
  .news h5 {
    font-size: 1.8em;
  }
  .news-grid-info h4 {
    margin: 3em 0 0;
  }
  .gallery-grids {
    width: 100%;
  }
  .top-nav ul li a.sign-in {
    padding: 0.3em 2em;
  }
  .news-grid-info:hover h4 {
    margin: 2em 0 0;
  }
  .testi-text p {
    padding: 1em;
  }
  .contact-top-left iframe {
    height: 12em;
  }
  .footer h3 {
    font-size: 2em;
  }
  .login h3 {
    font-size: 1.3em;
  }
  .modal-body {
    padding: 1.5em;
  }
  .modal-dialog {
    margin: 4.5em auto 0;
  }
  .modal.sign-in-modal {
    padding: 0 0.5em !important;
  }
  .portfolio-modal .modal-content p {
    padding: 1em 0;
  }
  .portfolio-modal .close-modal .lr .rl,
  .portfolio-modal .close-modal .lr {
    height: 30px;
  }
  .portfolio-modal .close-modal {
    top: 17px;
    right: 14px;
    width: 48px;
    height: 30px;
  }
  .portfolio-modal .close-modal .lr {
    margin-left: 26px;
  }
  .portfolio-container {
    width: 90%;
  }
  .portfolio-modal .modal-content img {
    border: 4px solid rgba(255, 255, 255, 0.42);
  }
  div#portfolioModal3 img {
    width: 80%;
  }
}
/*--//responsive-design---*/
.post-change {
  position: absolute;
  top: 50%;
  margin-top: -5%;
}

.site-search-module {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 112%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}

.site-search-module-inside {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}

.site-search-module-inside label {
  color: #e7e7e7 !important;
  font-weight: 100;
}

.box {
  padding: 20px;
  width: 100%;
  height: 400px;
  background-color: #e7e7e7;
}

/*.his {*/
/*    overflow-y:scroll;height:250px;*/
/*}*/

.ftr {
  height: 30px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.projects {
  display: block;
  padding: 10rem 0px;
  background-color: #eee;
}

.slick-projects .prj-item {
  margin: 0px 6px;
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.slick-projects .prj-item:focus {
  border: none;
  outline: 0;
}

.slick-projects .prj-item:hover {
  box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.12);
}

.slick-projects .prj-item .prj-footer {
  padding: 20px 0 20px 20px;
  border: none;
  /*min-height: 210px;*/
  /*minheight: ;*/
}

.prj-footer h4 {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 10px;
  /*margin-bottom: 15;*/
}

.prj-footer p {
  font-size: 14px;
  color: #333;
  margin-top: 6px;
}

.prj-footer .price {
  font-size: 16px;
  font-weight: 600;
}

.prj-footer .light-grey {
  font-weight: normal;
  font-size: 14px;
  color: #9b9b9b;
}

.slick-prev {
  left: 25px;
  top: 40%;
  z-index: 99;
}

.slick-next {
  right: 40px;
  z-index: 99;
  top: 40%;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 29px;
  line-height: 1;
  opacity: 0.75;
  color: #fcfbfbcc;
}

.btn-primary {
  color: #fff;
  background-color: #ec3935;
  border-color: #ec3935;
  /*height: 52px;*/
}

.prj-img {
  position: relative;
  display: block;
}

.prj-img .caption {
  position: absolute;
  border-radius: 4px;
  bottom: -1px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  color: #cecece;
  letter-spacing: 0.9px;
}

/*-----Property Details--------*/

.prj-banner {
  display: block;
  height: 100vh;
  min-height: 100vh;
  background: url(../images/house_wide_view.jpg);
  /*background: url(../images/banner1.jpeg);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.prj-banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  background: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(0, 0, 0, 0.8)),
    color-stop(100%, rgba(0, 0, 0, 0))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1);
}

div#hero {
  padding: 10rem 0;
  height: 100%;
}

div#hero h1 {
  font-size: 50px;
  color: #fff;
  margin: 0;
  text-align: left;
  font-weight: 600;
}

div#hero h3 {
  font-size: 24px;
  line-height: auto;
  color: #f0efef;
  margin: 20px 0 0;
  padding: 0;
}

div#hero .h2 {
  font-size: 20px;
  color: #fff;
  margin: 10px 0 0;
}

div#hero .details-left {
  /*background: rgba(0, 0, 0, .5);*/
  margin: 25px 0 0;
  position: relative;
  width: 78%;
  font-weight: 400;
}

div#hero .details-left ul {
  margin: 15px 0 5px 15px;
}

div#hero .details-left ul li {
  color: #fff;
  /*float: left;*/
  /*width: 48%;*/
  display: inline-block;
  font-size: 18px;
  padding: 5px 0 10px;
  list-style: none;
  margin: 0 20px 0 0;
  font-weight: 400;
}

div#hero .details-left ul li span {
  margin-left: 2px;
  font-weight: 400;
}

div#hero .details-left ul li:first-child {
  width: 44%;
}

div#hero .offer {
  background: rgba(0, 0, 0, 0.5);
  margin: 20px 0 0;
  border: 1px dashed #ffd600;
  font-size: 16px;
  padding: 10px;
  color: #fff;
  float: left;
  font-weight: 600;
}

div#hero .top-form {
  background: #fff;
  border-radius: 4px;
  width: 300px;
  /*height: 322px;*/
  float: right;
  padding: 35px 25px;
  /*margin: 120px 0 0;*/
}

div#hero .top-form h1 {
  font-size: 24px;
  /*margin: 0px;*/
  /*padding: 30px 0px;*/
  padding-bottom: 30px;
  color: #999;
}

div#hero .top-form .form-control {
  /*border-bottom:  1px solid #ccc;*/
  border-bottom: 1px solid #ccc;
  border-top: #fff;
  border-left: #fff;
  border-right: #fff;
  box-shadow: none;
}

.button-cta {
  width: 250px;
  height: 40px;
  border-radius: 30px;
  background-color: #ec3935;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0px;
  text-align: center;
  transition: all 0.3s ease 0s;
  border: 0px;
  margin: 5px 0 0;
}

.unitDetails {
  padding: 10px 0px;
}

.unitDetails h2 {
  font-weight: 600;
}

.unitDetails h2 span {
  font-weight: normal;
  color: #555555;
}

.text .sub-unit {
  padding: 20px 0px;
}

.inline-butons {
  margin: 0;
  padding: 10px 0;
  margin-bottom: 10px;
}

.inline-butons li {
  display: inline-block;
  padding-left: 0px;
  padding-right: 20px;
}

.inline-butons li i {
  color: #12d1c1;
  margin-right: 10px;
}

.prj-details {
  display: block;
  /*padding: 50px 0px;*/
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.prj-gallery {
  display: block;
  padding: 15rem 0;
}

.prj-gallery .gallery {
  margin: 0;
  padding: 0;
}

.prj-gallery .gallery li {
  display: block;
  width: 25%;
  float: left;
  /*margin-bottom: 2px;*/
}

.prj-gallery .gallery li a img {
  max-width: 100%;
  height: 280px;
  transition: all 0.2s cubic-bezier(0.2, 0.86, 0, 0.9);
}

.prj-gallery .gallery li a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

div#hero .offer span {
  font-weight: 400;
}

.d-text-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;
}

/*-----End Property Details--------*/

/*--------Property listing---------*/

.list-banner {
  display: block;
  position: relative;
  height: 45vh;
  min-height: 45vh;
  background: url(../images/house_wide_view.jpg);
  /*background: url(../images/banner1.jpeg);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.list-banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  background: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(0, 0, 0, 0.8)),
    color-stop(100%, rgba(0, 0, 0, 0))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1);
}

.list-banner div#hero {
  padding: 5rem 0;
  height: auto;
}

.list-banner div#hero h1 {
  text-align: center;
}

.prj-list {
  display: block;
  position: relative;
  padding: 50px 0px;
  background-color: #eee;
}

.sidebar_advanced_search_widget {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}

.sidebar_advanced_search_widget .search-list li {
  list-style: none;
  display: block;
}

.sidebar_advanced_search_widget .search-list li .form-control {
  background-color: #ffffff;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 8px;
  font-size: 14px;
  /*font-family: "Nunito";*/
  color: #484848;
  line-height: 1.2;
  height: 52px;
  padding-left: 20px;
}

.sidebar_advanced_search_widget .search-list li.list-inline-item div {
  width: 49%;
  display: inline-block;
}

.price-label {
  padding: 30px 0px;
}

.div-price-md {
  padding: 20px 0px;
}

.ui-widget-content {
  border: 1px solid #bdc3c7;
  background: #e1e1e1;
  color: #222222;
  margin-top: 4px;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 5.2em;
  height: 2.2em;
  cursor: default;
  margin: 0 -40px auto !important;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
  font-size: 15px;
}

.ui-slider .ui-slider-handle .glyphicon {
  color: #ffffff;
  margin: 0 3px;
  font-size: 11px;
  opacity: 0.5;
}

.ui-corner-all {
  border-radius: 20px;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.9em;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  border: 1px solid #f9f9f9;
  background: #3498db;
}

.ui-slider-horizontal .ui-slider-handle {
  margin-left: -0.5em;
}

.ui-slider .ui-slider-handle {
  cursor: pointer;
}

.ui-slider a,
.ui-slider a:focus {
  cursor: pointer;
  outline: none;
}

.c-pad {
  padding: 5px;
}

.c-pad .slick-projects .prj-item {
  margin: 0px;
  min-height: 472px;
}

.search_option_button button {
  height: 52px;
}

ul#ui-id-1 {
  background: #fff;
  border-radius: 0;
}

ul#ui-id-1 li {
  padding: 10px 15px;
  border-bottom: 1px solid #dddddd;
}

ul#ui-id-1 li a {
  background: #fff;
  border: none;
}

ul#ui-id-1 li a:hover {
  background: #fff;
  border: none;
}

.prj-img img {
  height: 275px;
}

a.back-link {
  color: #c8e8fe;
  letter-spacing: 1px;
  display: block;
  font-size: 18px;
  padding: 10px 20px;
}

.toggle {
  color: #999;
}

.address ul li i,
.address ul li span {
  display: inline-block;
}

.top-item {
  margin-top: 20px;
}

.mark-top {
  top: -5px !important;
}

@media (max-width: 468px) {
  .address ul li i.glyphicon {
    width: 5%;
  }
  .address ul li span {
    width: 85%;
  }
  .mark-top {
    top: -15px !important;
  }
}

/*-----End Property listing--------*/

section.services-list {
  padding: 10rem 0;
}

.scope-services h3 {
  margin-bottom: 15px;
}

.scope-services p {
  line-height: 30px;
  color: #999;
  font-size: 14px;
  letter-spacing: 0.9px;
}

.services-btmlist {
  padding: 30px 0px;
}

.services-btmlist h3 {
  padding: 20px 0px;
}

span.img-icon img {
  width: 40px;
  height: 40px;
}

.col-md-12.services-btmlist h3 span {
  vertical-align: middle;
  position: relative;
  top: -7px;
  margin-right: 10px;
}

.col-md-12.services-btmlist h3 {
  background: #f5f5f5;
  padding: 20px 20px;
  margin: 10px 0px;
  border-radius: 4px;
}

.services-btmlist p {
  line-height: 30px;
  color: #999;
  font-size: 14px;
  letter-spacing: 0.9px;
}

.toggle-services {
  display: block;
}

.col-md-12.services-btmlist h3 {
  font-size: 18px;
}

.read-more-link {
  display: none;
}

.prj-img img {
  width: 100%;
}

.col-md-12.services-btmlist h3 span.block-center {
  position: relative;
  display: block;
  text-align: center;
  color: #ef717a;
}

.col-md-12.services-btmlist h3 span.img-icon {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 10px;
}

@media (max-width: 468px) {
  .read-more-link {
    display: block;
    margin-bottom: 15px;
  }
  .toggle-services {
    display: none;
  }
  div#hero {
    padding: 5rem 0;
    height: 100%;
  }
  div#banner-cont {
    text-align: center;
  }
  div#hero h1 {
    text-align: center;
  }
  div#hero .details-left ul li:first-child,
  div#hero .details-left ul li,
  div#hero .details-left,
  .prj-gallery .gallery li {
    width: 100%;
  }
  div#hero .top-form {
    float: none;
    /* margin-left: 5%; */
    margin: 0 auto;
  }
  .prj-gallery .gallery li a img {
    height: auto;
  }
  button.navbar-toggle {
    margin-top: 32px;
  }
  div#hero .details-left ul li {
    padding: 5px 0px;
    margin: 0;
  }
}

/* home */

.insignia-sec {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

@media (max-width: 575px) {
  .insignia-sec img {
    width: 95%;
  }
}
