@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin-ext');

/*-------------------------------General-------------------------------*/
html{
    font-size: 16px;
    height: 100%;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #404040;
    width: 100%;
    font-size: 19px;
    line-height: 1.6;
    position: relative;
}
.container{
    max-width: 1500px;
    width: 100%;
}
section{
    padding-top: 60px;
    padding-bottom: 80px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    padding-bottom: 30px;
    margin-bottom: 0;
}
h1{
    font-size: 29px;
}
h2{
    font-size: 27px;
}
h3{
    font-size: 25px;
}
h4{
    font-size: 23px;
}
h5{
    font-size: 21px;
}
h6{
    font-size: 19px;
}
section h2{
    padding-bottom: 0;
}
img{
    vertical-align: top;
    border-style: none;
}
.img-responsive{
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}
p{
    font-size: 19px;
    line-height: 1.6;
    padding-bottom: 30px;
    margin-bottom: 0;
}
a{
    text-decoration: none !important;
    color: #8fb73f;
}
a:hover{
    color: #1e4074;
}
.inside-single a{
    font-weight: 400;
}
strong{
    font-weight: 700;    
}
.text-center{
    text-align: center;
}

/* general form elements begin */

.btn {
    font-weight: normal;
    border: 0px solid transparent;
    outline: 0px solid rgba(255,255,255,0);
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: #8fb73f;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    letter-spacing: 0;
}
.btn:hover,
.btn:focus{
    outline: 0px solid rgba(255,255,255,0);
    color: #ffffff;
    padding-left: 30px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

input[type=file] {
    font-weight: normal;
    border: 0px solid transparent;
    outline: 0px solid rgba(255,255,255,0);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #2c4b4a;
    background-color: #bed730;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
input[type=file]:hover,
input[type=file]:focus{
    outline: 0px solid rgba(255,255,255,0);
    color: #2c4b4a;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus{
    outline-offset: 0;
}
button:focus {
    outline: 0 none;
}



label{
    font-weight: 300;
    margin: 6px 0 8px;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: none;
    outline-offset: 0;
}

textarea{
    resize: vertical;
}

.form-control {
    background-color: transparent;
    background-image: none;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0) inset;
    color: #555555;
    display: block;
    font-size: 19px;
    padding: 8px 12px 8px 12px;
    transition: border-color 0.1s ease-in-out 0s, box-shadow 0.1s ease-in-out 0s;
    width: 100%;
    font-weight: 300;
}
.form-control.error{
    border: 1px solid #d01414;
}
input[type=file].error{
    background-color: #ee4747;
}

.form-control:hover {
    background: #fcffed;
    border: 1px solid #8fb73f;
}
.form-control:focus {
    border-color: #a5bd1a;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(165, 189, 26, 0.6);
    outline: 0 none;
    color: #555555;
}
textarea.form-control {
    height: 100px;
}
.captcha-img{
    border: 1px solid #dadada;
}
.help-block{
    font-size: 13px;
    color: #9e9e9e;
}
.star{
    color: #ed1c24;
}
.form-control:disabled,
.form-control.form-disabled,
.form-control.form-disabled:hover,
.form-control.form-disabled:focus,
.form-control.form-disabled:active{
    background-color: #eceeef;
    border: 1px solid #c7c7c7;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0) inset, 0 0 8px rgba(0, 0, 0, 0);
    outline: 0 none;
    font-weight: 400;
    color: #868686;
}

/* general form elements end */

/*-------------------------------Header-------------------------------*/


header{
    background-color: #ffffff;
    background-image: url("../img/header-bg.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left:0;
    z-index: 11;
    width:100%;
}
header.scrolled{
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 50%/30%;
    -moz-border-radius: 50%/30%;
    -webkit-border-radius: 50%/30%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
header.inside{
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.logo-wrap{
    float: left;
    margin: 0 40px 0 0;
}
.header-logo{
    display: inline-block;
    /*width: 280px;*/
}
.header-logo, .tt-menu1-element{
    float: left;
}
.header-logo.ro,
.header-logo.en{
    width: 300px;
    padding: 15px 0 0 0;
}

.tt-menu1{
    margin: 10px 0 25px 0;
    display: block;
}

.btn-more-white{
    margin-top: 30px;
    margin-bottom: 0;
    /*padding: 1  1px 18px;*/
    font-size: 23px;
}
.btn-more-white .fa {
    padding-left: 12px;
}

.btn-tt{
    outline: 0 solid rgba(109,109,109,0);
}
.btn-tt:hover{
    outline: 0 solid rgba(109,109,109,0);
}
.btn-tt.btn-more:focus{
    color: #6d6d6d;
}

.navbar{
    padding-left: 0;
    padding-right: 0;
    border-radius: 0.0rem;
    -moz-border-radius: 0.0rem;
    -webkit-border-radius: 0.0rem;
    padding-top: 7px;
    padding-bottom: 7px;
}
.navbar-nav .nav-item+.nav-item{
    margin-left: 0;
}
.navbar-nav li:first-child .tt-menu2-element{
    border-left: none;
}
.tt-menu2{
    margin: 32px 0 15px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    display: inline-block;
    float: left;
}
.navbar-nav .nav-item{
    border-left: 1px solid #e7e7e7;
}
.navbar-nav .nav-item:last-of-type{
    border-right: 1px solid #e7e7e7;
}

.tt-menu1-element, .tt-menu2-element, .btn-more{
    font-size: 17px;
}
.tt-menu2-element{
    padding: 9px 20px 9px 20px;
    color: #555555;
}
.tt-menu2-element:hover,
.tt-menu2-element:focus{
    color: #8fb73f;
}
.tt-menu2 li.nav-item{
    position: relative;
}


/*-------------------------------Submenu dropdown-------------------------------*/

.tt-menu2 .dropdown-toggle::after {
    border-left: 0 none;
    border-right: 0 none;
    border-top: 0 none;
    content: "";
    display: inline-block;
    height: 0;
    margin-left: 0;
    vertical-align: middle;
    width: 0;
}
.tt-menu2 .dropdown-menu{
    background-color: #ffffff;
    float: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    padding: 0 0 5px 0;
    margin: 10px 0 0 0;
    border: 0 solid rgba(0, 0, 0, 0);
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}
.tt-menu2 .dropdown-menu > li > a{
    display: block;
    color: #555555;
    font-size: 17px;
    padding: 6px 20px 7px 20px;
    border-bottom: 1px solid #ededed;
}
.tt-menu2 .dropdown-menu > li > a:hover,
.tt-menu2 .dropdown-menu > li > a:focus{
    background-color: #bed730;
    color: #1e4074;
}
.tt-menu2 .dropdown-menu > li > a:hover i,
.tt-menu2 .dropdown-menu > li > a:focus i{
    color: #1e4074;
}
.tt-menu2 .dropdown-menu > li > a i{
    color: #555555;
    font-size: 17px;
    padding: 0 8px 0 0;
}



/*-------------------------------Search-------------------------------*/


.social-search-wrap{
    float: right;
    margin: 30px 0 0 0;
}

.lang {
    font-family: 'Open Sans', sans-serif;
    float: left;
    color: #1e4074;
    font-size: 17px;
    padding: 0 0 0 10px;
    margin: 5px 20px 0 0;
    position: relative;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    /*display: none;*/
}
.lang .dropdown-menu{
    background-color: #ffffff;
    float: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 30px;
    min-width: 3rem;
    padding: 0 0 5px 0;
    margin: 10px 0 0 0;
    border: 0 solid rgba(0, 0, 0, 0);
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
}
.lang .dropdown-menu > li > a{
    display: block;
    color: #555555;
    font-size: 17px;
    padding: 6px 20px 7px 10px;
    border-bottom: 1px solid #ededed;
}
.lang .dropdown-menu > li > a:hover,
.lang .dropdown-menu > li > a:focus{
    background-color: #8fb73f;
    color: #1e4074;
}

.dropdown-toggle::after {
    border-left: 0 solid transparent;
    border-right: 0 solid transparent;
    border-top: 0 solid;
    content: "";
    display: inline-block;
    height: 0;
    margin-left: 0;
    vertical-align: middle;
    width: 0;
}

.tt-social{
    float: right;
    margin: 0 15px 10px 0;
    /*display: none;*/
}
.tt-social-links{
    margin: 0;
    display: block;
}
.tt-social-link, .tt-scrollbox{
    text-align: center;
}
.tt-social-link{
    float: left;
    margin-right: 10px;
    display: inline-block;
}
.tt-social-links .tt-social-link:last-of-type{
    margin-right: 0;
}
.tt-social-link a{
    display: inline-block;
    border: 1px solid #d7dbce;
    width: 35px;
    height: 35px;
    font-size: 19px;
    padding: 6px 0 6px 0;
    color: #1e4074;
    line-height: 1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.tt-social-link a:hover{
    border: 1px solid #d7dbce;
    color: #8fb73f;
}
.tt-scrollbox a{
    display: inline-block;
    border: 1px solid #ffffff;
    width: 35px;
    height: 35px;
    font-size: 19px;
    padding: 6px 0 6px 0;
    color: #ffffff;
    line-height: 1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.tt-scrollbox a:hover{
    border: 1px solid #bed730;
    color: #bed730;
}
.top-trustmark{
    float: right;
    display: inline-block;
    margin: 0 15px 10px 0;
    width: 36px;
}
.top-trustmark img{
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

.top-search{
    float: right;
}
.top-search .search-link{
    display: inline-block;
    background: #1e4074;
    border: 1px solid #1e4074;
    width: 35px;
    height: 35px;
    font-size: 17px;
    padding: 7px 0 7px 0;
    color: #ffffff;
    line-height: 1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    text-align: center;
}
.top-search .search-link:hover{
    background: #8fb73f;
    border: 1px solid #8fb73f;
    color: #ffffff;
}


/* ----- popup search begin ------------------------------------------- */


.popup-bg-search{
  background: rgba(0,0,0,0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  font-size: 23px;
  text-align: center;
}

.popup-top-search{
    width: 60%;
    /*display: inline-block;*/
    margin: 34px auto 0 auto;
    position: relative;
}

.popup-top-search .form-control{
    background: #ffffff;
    width: 85%;
    background-image: none;
    border: 0 none;    
    box-shadow: 0 0 0 rgba(0, 0, 0, 0) inset;
    color: #555555;
    display: block;
    font-size: 19px;
    padding: 12px 48px 12px 18px;
    transition: border-color 0.1s ease-in-out 0s, box-shadow 0.1s ease-in-out 0s;
    width: 100%;
    font-weight: normal;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
}

.popup-top-search .form-control:hover {
    background: #8fb73f;
}
.popup-top-search .form-control:focus {
    background: #8fb73f;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0) inset, 0 0 15px rgba(0, 0, 0, 0.5);
    outline: 0 none;
    color: #ffffff;
}
.popup-top-search .fa.fa-search{
    position: absolute;
    right: 13px;
    top: 12px;
    color: rgba(143,183,63,0.3);
}
.popup-top-search:hover .fa.fa-search{
    color: rgba(143,183,63,1);
}
.popup-top-search .close-btn{
    position: absolute;
    right: -25px;
    top: -25px;
    color: #ffffff;
}
.popup-top-search .close-btn:hover{
    color: #8fb73f;
}

.popup-top-search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #555555;
  font-size: 17px;
}
.popup-top-search input::-moz-placeholder { /* Firefox 19+ */
  color: #555555;
  font-size: 17px;
}
.popup-top-search input:-ms-input-placeholder { /* IE 10+ */
  color: #555555;
  font-size: 17px;
}
.popup-top-search input:-moz-placeholder { /* Firefox 18- */
  color: #555555;
  font-size: 17px;
}

/* ----- popup search end ------------------------------------------- */


/*-------------------------------Carousel-------------------------------*/


#tt-carousel{
    z-index: 2;
}
.carousel-control{
    width: 100px;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}
.carousel-control .icon-next, .carousel-control .icon-prev{
    font-size: 70px;
    top: 55%;
}
.carousel-control .icon-prev::before,
.carousel-control .icon-next::before{
    content: "";
}
.carousel-item {
    color: #fff;
    min-height: 720px;
    background-size: cover;
    background-position: top center;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.tt-caption-holder{
    position: relative;
}
.carousel-caption{
    text-align: left;
    top: 34%;
    left: 11% !important;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    right: auto;
}
.carousel-caption .carousel-title h1{
    display: inline-block;
}
.carousel-caption p{
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 400;
}
.carousel-caption h1,
.carousel-caption p{
    background: rgba(50, 50, 50, 0.7);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    padding: 8px 20px 8px 20px;
    margin-bottom: 20px;
}

.btn-more{
    margin-bottom: 0;
    padding: 11px 18px;
}
.btn-more:focus{
    color: #ffffff;
}
.btn-more .fa{
    padding-left: 12px;
}

.carousel-control.left, .carousel-control.right{
    background: none;
}
.carousel-indicators{
    bottom: 0;
    margin-bottom: 10px;
    left: 50%;
    margin-left: -50%;
    width: 100%;
}
.carousel-indicators li,
.carousel-indicators .active{
    display: inline-block;
    width: 100px;
    height: 3px;
    cursor: pointer;
    background-color: transparent;
    margin: 0 15px 0 15px;
    padding: 15px 0 15px 0;
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    text-indent: 0;
}
.carousel-indicators li span{
    display: block;
    width: 100px;
    height: 3px;
    padding: 0;
    background-color: rgba(255,255,255,0.5);
}
.carousel-indicators .active span{
    background-color: #bed730;
}
.carousel-indicators li:hover span{
    background-color: #bed730;
}

.carousel.slide:hover .carousel-control.left{
    background: rgba(0, 0, 0, 0.3);
}
.carousel.slide:hover .carousel-control.right{
    background: rgba(0, 0, 0, 0.3);
}

/*-------------------------------Presentation-------------------------------*/


#presentation{
    background: #2e2e2e url("../img/services_bg.jpg");
    background-size: cover;
}
.tt-presentation-title{
    color: #fff;
    
}
.tt-presentation-icon{
    width: 90px;
    height: 90px;
    /*background-color: #8fb73f;*/
    background-color: transparent;
    display: inline-block;
    border: 1px solid rgba(143,183,63,0.7);
    margin: 0 auto;
    color: #8fb73f;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.tt-presentation-icon i{
    line-height: 90px;
    font-size: 50px;
    color: #8fb73f;
}
.tt-pres h3{
    padding: 30px 0 30px 0;
    color: #ffffff;
}
.tt-pres p{
    color: #9e9e9e;
}


/*-------------------------------Section motto-------------------------------*/


.section-motto{
    display: block;
    text-align: center;
    margin-bottom: 50px;
}
.section-motto .motto-line{
    border-bottom: 1px solid rgba(255,255,255,0.35);
    display: inline-block;
    width: 40px;
}
.section-motto .motto-text{
    color: rgba(255,255,255,0.55);
    display: inline-block;
    padding-left: 7px;
    padding-right: 7px;
    position: relative;
    top: 4px;
}
.section-motto.dark .motto-line{
    border-bottom: 1px solid rgba(0,0,0,0.55);
}
.section-motto.dark .motto-text{
    color: rgba(0,0,0,0.55);
}
.section-motto .motto-text {
    font-size: 17px;
}


/*-------------------------------News-------------------------------*/


#news{
    background: #d3e4ff url("../img/section-sep-bg.png") repeat-x top left;
    background-size: 100%;
    background-position: top left;
    background-repeat: no-repeat;
}
.tt-news-img:hover{
    border-radius: 12%/20%;
    -moz-border-radius: 12%/20%;
    -webkit-border-radius: 12%/20%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}
.tt-news-title{
    color: #303030;
}
.tt-news h3{
    color: #303030;
    padding: 32px 0 27px;
}
.tt-news p{
    color: rgba(0, 0, 0, 0.6);
}
.tt-news .btn.btn-more:focus{
    outline: 1px solid rgba(255,255,255,0.2) !important;
}
.tt-news-img{
    border: 1px solid rgba(255,255,255,0.3);
}


/*-------------------------------About us-------------------------------*/


#aboutus{
    background: #f0f0f0 url("../img/eco-power-about-bg.png") repeat-x top left;
}
.tt-aboutus-title{
    color: #303030;
}
.tt-aboutus h4{
    color: #303030;
    padding-bottom: 20px;
}
.tt-aboutus p{
    font-size: 19px;
    color: #575757;
    margin-bottom: 0;
}


/*-------------------------------Contact-------------------------------*/


#contact{
    background: #ffffff;
}
.tt-contact-title{
    color: #303030;
}
.tt-contact-info p{
    color: #303030;
    line-height: 2.5;
}
.tt-contact-info p b{
    font-weight: 700;
}
.tt-contact-info p span{
    padding: 0 35px;
}
.tt-contact-info .btn-group .btn-more{
    margin-left: 60px;
}
.tt-contact-info .btn-group>button:first-child{
    margin-left: 0;
}

.inside-wrap .tt-contact-info{
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    padding-top: 20px;
    padding-bottom: 20px;
}


/*-------------------------------Mediu zones-------------------------------*/


#mediu{
    background: #ffffff url("../img/section-sep-bg.png") repeat-x top left;
}
.tt-mediu-title {
    color: #303030;
}


/*-------------------------------Testimonials-------------------------------*/


.container-fluid.wrap-testimo{
    background: #8eb53d;
    padding-left: 0;
    padding-right: 0;
    /*display: none;*/
    /*display: none;*/
}
.wrap-testimo{
    /*background: #82a8bd;*/
    color: #ffffff;
    font-size: 33px;
    font-weight: 400;
    font-style: italic;
    position: relative;
    text-align: center;
}
.wrap-testimo p{
    font-size: 21px;
    margin: 0 140px 0 140px;
}
.wrap-testimo p:last-of-type{
    font-size: 17px;
}

.wrap-testimo-ins{
    background: #8eb53d;
    padding: 60px 60px 40px 60px;
}

/* home left-right navigs begin */

.home-navig-left,
.home-navig-left:visited{
  left: 0;
  color: #c1bfb9;
  /*padding: 0 10px 0 30px;*/
  width: 60px;
  font-size: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 5;
}
.home-navig-right,
.home-navig-right:visited{
  right: 0;
  color: #c1bfb9;
  /*padding: 0 30px 0 10px;*/
  width: 60px;
  font-size: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 5;
}
.home-navig-left .hn-left,
.home-navig-right .hn-right{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home-navig-left .hn-left{
    left: 40px;
}
.home-navig-right .hn-right{
    right: 40px;
}

.home-navig-left:hover,
.home-navig-right:hover{
  color: #e95d8e;
}
.wrap-testimo:hover, .slick-track:hover {
    cursor: all-scroll;
}
.home-navig-right.slick-arrow.slick-disabled,
.home-navig-left.slick-arrow.slick-disabled{
    display: none !important;
}


/*-------------------------------inside+single-------------------------------*/


.inside-wrap{
    padding-top: 30px;
    padding-bottom: 30px;
}

.content-wrap{
    /*margin-top: 112px;
    width: 100%;*/
}

/*-------------------------------breadcrumb-------------------------------*/


.bc-wrapper{
    /*margin-top: 125px;*/
    max-width: 100%;
    background: #e5e5e5;
    color: #7e7e7e;
    padding: 3px 0 3px 0;
    font-size: 15px;
}
.bc-wrapper .bc-link{
    display: inline-block;
    color: #5c5c5c;
}
.bc-wrapper .bc-link:hover{
    color: #1e4074;
}
.bc-wrapper .bc-title{
    display: inline-block;
    color: #6a6a6a;
}
.bc-wrapper .bc-arrow{
    display: inline-block;
    color: #6a6a6a;
    padding-left: 8px;
    padding-right: 8px;
}
.bc-link,
.bc-title,
.bc-arrow{
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
}


/*-------------------------------leads-------------------------------*/


.leads-wrap{
    margin-top: 20px;
    margin-bottom: 20px;
}
.lead-title{
    background: none;
    display: block;
    font-size: 25px;
    border: 0 none;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
}
.lead-title a{
    color: #1e4074;
}
.lead-title a:hover{
    color: #a5bd1a;
}
.lead-descr{
    display: block;
}

.lead-title-block a{
    line-height: 1.2;
}

/* leads image hover begin */

.link-img {
    display: block;
    position: relative;
    margin: 0 0 15px 0;
    /*max-height: 200px;
    overflow: hidden;*/
}
.link-img.mb{
    margin-bottom: 40px;
}
.link-img-bordered img {
    border: 1px solid #dadada;
}

.link-img-opaque{
    display: block;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    margin-top: 200%;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
    text-align: center;
    overflow: hidden;
}
.link-img-opaque span{
    background: #1e4074;
    display: inline-block;
    padding: 2px 11px 11px 11px;
    text-align: center;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.link-img-opaque span:hover{
    background: #8fb73f;
}
.link-img-opaque i{
    display: inline-block;
    vertical-align: middle;
    font-size: 25px;
    line-height: 13px;
    color: #ffffff;
}
.link-img:hover .link-img-opaque,
.link-img:focus .link-img-opaque{
    margin-top: 0;
    top: 0;
}

/* leads image hover end */

.b-border{
    margin: 0 0 15px 0;
}
.b-border .lead-title{
    border-bottom: 1px solid #c7c7c7;
    padding: 0 0 20px 0;
    margin: 0;
}

.rbm{
    margin: 0 0 40px 0;
}

/* leads end */


/* custom leads begin */

.custom-leads-wrap{
    /*margin-top: 20px;*/
    /*margin-bottom: 20px;*/
}

.lead-full,
.lead-half,
.lead-quarter,
.lead-third{
    margin-top: 20px;
    margin-bottom: 20px;
}

/* custom leads end */

.custom-border-box{
    display: block;
    border: 1px solid #e2e2e2;
    padding: 20px 25px 0 25px;
}


/*-------------------------------photo gallery-------------------------------*/


.gallery-wrap{
    margin-top: 20px;
}

.gallery-wrap .link-img-opaque span{
    padding: 3px 7px 11px 7px;
    text-align: center;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 44%;
    transform: translateX(-44%);
    transform: translateY(-50%);
}
.gallery-wrap .link-img-opaque i{
    font-size: 25px;
    line-height: 13px;
}

.img-descr{
    display: block;
    font-size: 19px;
    font-weight: 400;
    margin: 0;
}


/*-------------------------------pagination-------------------------------*/


.pagination{
    margin: 0;
    border-radius: 0.0rem;
    display: block;
}
.pagination ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.pagination ul li{
    float: left;
    margin: 0 10px 10px 0;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    font-size: 16px;
    padding: 10px 16px;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #d71b23;
    border-color: #e2e2e2;
    color: #ffffff;
}
.pagination > li:first-child > a {
    margin-left: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.pagination > li:last-child > a {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.pagination li.active a {
    background-color: #d71b23;
    border: 1px solid #d71b23;
    color: #fff;
}
.pagination li.disabled a:hover {
    border: 1px solid #d9d9d9;
    background: none;
    background-color: transparent;
    line-height: 1;
    color: #7b7b7b;
}
.pagination li a {
    text-transform: lowercase;
    border: 1px solid #e2e2e2;
    background: none;
    background-color: transparent;
    line-height: 1;
    color: #7b7b7b;
}
.pagination li a:hover {
    background-color: #d71b23;
    border: 1px solid #d71b23;
    color: #fff;
}


/*-------------------------------Footer-------------------------------*/


.tt-links{
    background-color: #d1d3d4;
}
.tt-links ul{
    padding-top: 1rem;
}
.tt-link a{
    font-family: 'Open Sans', sans-serif;
    font-size: 19px;
    color: #555555;
    font-weight: 400;
}
.tt-link a:hover{
    color: #000000;
}
.tt-link span{
    color: rgba(48,48,48,0.2);
    font-size: 21px;
    padding: 0 15px 0 20px;
}

.tt-copy{
    background-color: #8fb73f;
}
.tt-copyright{
    color: rgba(255,255,255,1);
    font-size: 17px;
    padding-top: 35px;
    padding-bottom: 35px;
    text-align: left;
    font-weight: 400;
}
.tt-scrollbox{
    margin-top: 33px;
    display: inline-block;
    float: right;
}
.tt-pd{
    padding-top: 35px;
    padding-bottom: 35px;
}
.tt-pd a{
    color: rgba(255,255,255,1);
    font-size: 17px;
    text-align: left;
    font-weight: 400;
}
.tt-pd a:hover{
    color: rgba(0,0,0,1);
}


/*-------------------------------House page-------------------------------*/


.house-photos{
    display: block;
    position: relative;
}
.container-page .row .nopad-l{
    padding-left: 0;
}
.container-page .row .nopad-r{
    padding-right: 0;
}
.container-page .row .nopad-lr{
    padding-left: 0;
    padding-right: 0;
}
.container-page .row.prod-page{
    font-size: 21px;
}
.container-page .row.prod-page h2{
    background-color: transparent;
    border: 0 none;
    color: #fff;
    display: inline-block;
    font-size: 23px;
    font-weight: 600;
    padding: 0 20px 0 0;
    margin: 30px 0 30px 0;
}
.row.wrap-photo-title{
    background: #d1d3d4;
    position: relative;
    top: 0;
}
.photo-title{
    position: absolute;
    bottom: 0;
    width: 100%;
}
.photo-title h2.prod-title{
    background-color: #8fb73f;
    color: #ffffff;
    display: inline-block;
    font-size: 25px;
    font-weight: normal;
    padding: 8px 15px 8px 15px;
    margin: 0;
}

.prod-title-wrap{
	display: none;
}

.photo-title .col-lg-2,
.photo-title .col-sm-3{
    width: 100% !important;
}

.container-page .wrap-photo-title{
    margin-left: -60px;
    margin-right: -60px;
}

.house-photos .photo-title{
    margin-left: 0;
    margin-right: 0;
}
.house-photos .wrap-photo-title div[class^="col-"]{
    padding-left: 0;
    padding-right: 0;
}
.house-photos .photo-title div[class^="col-"]{
    padding-left: 0;
    padding-right: 0;
}
.prod-img{
    display: block;
    height: 720px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.prod-top-link{
    float: left;
    background: #808285;
    display: inline-block;
    color: #ffffff;
    padding: 10px 15px 10px 15px;
    font-size: 19px;
}
.prod-top-link.tr{
    float: right;
    position: absolute;
    /*top: 0;*/
    bottom: 0;
    right: 0;
}

.prod-top-link .fa{
    padding: 0 10px 0 0;
}
.prod-top-link.tr .fa{
    padding: 0 0 0 10px;
}
.prod-top-link:hover{
    background: #000000;
    color: #ffffff;
}

.prod-bm{
    border-bottom: 1px solid #d2e2b2;
    display: block;
    margin-bottom: 30px; 
}
.prod-section-title{
    background: #d2e2b2;
    display: inline-block;
    font-size: 19px;
    color: #000000;
    padding: 5px 10px 5px 10px; 
}
.prod-row{
    margin-bottom: 40px;
}
.wrap-emi-data p:last-of-type{
    padding-bottom: 0;
}
.wrap-emi-data table{
    width: 50%;
}
.zone-title h3{
    margin: 0;
    padding: 0;
}

.house-sold-label{
	display: none;
}
.house-sold .house-sold-label{
	display: inline-block;
	background: #8eb43c;
	color: #ffffff;
	position: absolute;
	left: 0;
	top: 50%;
	/*transform: rotateY(0deg) rotate(-45deg);*/
	/*width: 200px;*/
    text-align: center;
    padding: 10px 30px 10px 60px;
    font-size: 25px;
    font-weight: bold;
}


/*-- sidebar area --*/

.sidebar-box{
    display: block;
    padding: 0 20px 0 20px;
    border: 1px solid #dbdbdb;
    font-size: 17px;
    margin: 0 0 30px 0;
}
  
.sidebar-box .sidebar-box-head{
    background: #1e4074;
    display: block;
    font-size: 19px;
    color: #ffffff;
    padding: 7px 10px 7px 10px;
    line-height: 1.2;
    margin-bottom: 20px; 
}
.sidebar-box .sidebar-box-row{
    display: block;
    margin: 0 0 10px 0; 
}
.sidebar-box .sidebar-box-row:last-of-type{
    margin: 0; 
}
.sidebar-box p{
    font-size: 17px;
}
.sidebar-box .sbr-info{
    display: block;
    font-size: 14px;
    margin: 10px 0 10px 0;
    color: #b99264;
}
.sidebar-box .sbr-info i{
    margin: 0 8px 0 0;
}
.sidebar-box .sidebar-info{
    display: block;
    margin: 0 0 10px 0; 
}
.sidebar-box .sbr-text{
    display: block;
    margin: 0;
    word-wrap: break-word;
    font-size: 17px;
}
.sidebar-box .sbr-text span{
    color: #ffffff;
}

.sidebar-box-row.sbr-border{
    border-bottom: 1px solid #dbdbdb;
    margin: 0 0 15px 0;
}
.sidebar-box-row .sb-icon{
    float: left;
    border: 1px solid #d7dbce;
    padding: 6px 0 6px 0;
    margin: 0 10px 20px 0;
    font-size: 19px;
    color: #1e4074;
    width: 35px;
    height: 35px;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.sidebar-box-row .sb-icon:hover{
    color: #8fb73f;
}
.sidebar-box-row .sb-recommend,
.sidebar-box-row .sb-pdf{
    float: left;
    border: 1px solid #d7dbce;
    padding: 8px 12px 8px 12px;
    margin: 0 10px 20px 0;
    font-size: 17px;
    color: #1e4074;
    line-height: 1;
    text-align: center;
    border-radius: 35px;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
}
.sidebar-box-row .sb-recommend:hover,
.sidebar-box-row .sb-pdf:hover{
    color: #8fb73f;
}
.sidebar-box-row .sb-recommend i,
.sidebar-box-row .sb-pdf i{
    margin-left: 6px;
}



/*-------------------------------Default Table-------------------------------*/

table{
    color: #555555;
    border: 1px solid #dbdbdb;
    border-collapse: collapse;
    text-align: left;
    /*width: auto;*/
}
table td{
    border: 1px solid #dbdbdb;
    padding: 5px 10px 5px 10px;
    white-space: normal;
    border-collapse: collapse;
    font-size: 19px;
}

table tr:nth-child(2n+0){
    background: #f3f3f3;
}

table tr:hover{
    background: #edf3e0;
}
table thead td{
    background: none;
    color: #555555;
    border: 1px solid #dbdbdb;
    padding: 5px 10px 5px 10px;
    white-space: normal;
    border-collapse: collapse;
    font-size: 19px;
    font-weight: 600;
}


/*-------------------------------Form-------------------------------*/


.form-ps{
    /*margin: 0 15% 0 15%;*/
    margin: 0;
}
.upload-progress{
    display: inline-block;
    margin: 0 0 0 30px;
    font-weight: 600;
    color: #a5bd1a;
}
.project-form-done{
    display: block;
    border: 1px solid #dedede;
    padding: 20px 30px 20px 30px;
    color: #a5bd1a;
    font-weight: 400;
}


/*-------------------------------Sponsors-------------------------------*/


.sponsors .link-img-bordered img{
    border: 0 none;
    max-height: 100px;
    width: auto;
    margin: 0 auto;
}
.sponsors .link-img-bordered{
    border: 1px solid #dadada;
    /*padding: 20px 30px 20px 30px;*/
    padding: 20px 20px 20px 20px;
    /*max-height: 160px;
    height: 160px;*/
    max-height: auto;
    height: auto;
    text-align: center;
}
.sponsors .gallery-title-wrap{
     margin-bottom: 10px;
}
.sponsors .gallery-title-wrap h4{
     padding-top: 20px;    
     padding-bottom: 0;
}
.sponsors .gallery-wrap{
    margin-top: 0;
}
.sponsors .rbm{
    margin: 0;
}


/*-------------------------------social media likes-------------------------------*/

.sblikes{
    display: block;
    margin: 30px 0 0 0;
}
.sb1,
.sb2{
    float: left;
    display: inline-block;
    font-size: 1px;
    margin: 0 30px 0 0;
}


/*-------------------------------col clearfix display-------------------------------*/

/* 6col only sponsors */
.visible-block-2,
.visible-block-3,
.visible-block-4,
.visible-block-6{
  display: none;
}

@media (min-width: 1500px) {
    .visible-block-6{
        display: block;
    }   
}
@media (min-width: 992px) and (max-width: 1499px) {
    .visible-block-6{
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-block-4{
        display: block;
    }
}
@media (max-width: 767px) {
    .visible-block-2{
        display: block;
    }
}

/* 4col only gallery */
.visible-block-gal-2,
.visible-block-gal-3,
.visible-block-gal-4{
  display: none;
}

@media (min-width: 992px) {
    .visible-block-gal-4{
        display: block;
    }   
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-block-gal-3{
        display: block;
    }
}
@media (max-width: 767px) {
    .visible-block-gal-2{
        display: block;
    }
}


/*-------------------------------Popup boxes-------------------------------*/


.popup-bg{
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  font-size: 23px;
}
.popup-wrap{
    max-width: 700px;
    background: #ffffff;
    font-size: 19px;
    margin: 30px auto 0 auto;
}
.popup-header{
    background: #1c3f70;
    padding: 16px 50px 16px 50px;
    color: #ffffff;
    position: relative;
}
.popup-header h3{
    padding: 0;
    font-size: 25px;
}
.popup-header .close-btn{
    color: #ffffff;
    position: absolute;
    right: 50px;
    top: 49%;
    transform: translateY(-49%);
}
.popup-header .close-btn:hover{
    color: #ed1c24;
}
.popup-content{
    padding: 30px 50px 30px 50px;
}

.special-offer-inside{
    display: block;
    border: 1px dashed #ec1c23;
    padding: 30px;
    margin-bottom: 30px;
    color: #ec1c23;
}
.special-offer-inside p{
    padding-bottom: 15px;
}
.special-offer-inside::after{
    content: '';
    display: block;
    clear: both;
}

.popup-content .stitle {
    color: #8fb73f;
    font-weight: 400;
}


/*-------------------------------Transition applies-------------------------------*/


*,
.btn,
.top-search,
.popup-top-search,
.popup-top-search .form-control,
.tt-social-link a,
.tt-scrollbox a,
header.scrolled,
.tt-menu1,
.tt-menu2,
.btn .fa{
    -moz-transition: all .1s;
    -o-transition: all .1s;
    -webkit-transition: all .1s;
    transition: all .1s;
}



/* ------------------------------------------------------------------------------ */


/* -- tinymce styles begin -- */

.img-responsive-full {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}
.img-responsive-half {
    display: block;
    height: auto;
    max-width: 100%;
    width: 50%;
}

.btn-form-link{
    display: inline-block;
    font-weight: normal;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: #8fb73f;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
.btn-form-link:hover,
.btn-form-link:focus{
    color: #ffffff;
    background-color: #8fb73f;
    padding-left: 30px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.heading-1{
    font-size: 29px;
}
.heading-2{
    font-size: 27px;
}
.heading-3{
    font-size: 25px;
}
.heading-4{
    font-size: 23px;
}
.heading-5{
    font-size: 21px;
}
.heading-6{
    font-size: 19px;
}

/* font sizes begin */
.font-size-29{
    font-size: 29px;
}
.font-size-27{
    font-size: 27px;
}
.font-size-25{
    font-size: 25px;
}
.font-size-23{
    font-size: 23px;
}
.font-size-21{
    font-size: 21px;
}
.font-size-19{
    font-size: 19px;
}
@media (max-width: 1279px) {
    .font-size-33{ font-size: 27px; }
    .font-size-29{ font-size: 25px; }
    .font-size-25{ font-size: 23px; }
    .font-size-23{ font-size: 21px; }
    .font-size-21{ font-size: 19px; }
}
@media (max-width: 767px) {
    .font-size-33{ font-size: 25px; }
    .font-size-29{ font-size: 23px; }
    .font-size-25{ font-size: 21px; }
    .font-size-23{ font-size: 19px; }
}
/* font sizes end */

table.simple-table{
    color: #555555;
    border: 1px solid #dbdbdb;
    border-collapse: collapse;
    text-align: left;
    width: 100%;
}
table.simple-table td{
    border: 1px solid #dbdbdb;
    padding: 10px 14px 10px 14px;
    white-space: normal;
    border-collapse: collapse;
    font-size: 19px;
}
table.simple-table thead td{
    background: none;
    color: #555555;
    border: 1px solid #dbdbdb;
    padding: 10px 14px 10px 14px;
    white-space: normal;
    border-collapse: collapse;
    font-size: 19px;
    font-weight: 600;
}

@media (min-width: 480px) and (max-width: 990px) {
    table.simple-table td{
        padding: 5px 7px 5px 7px;
        white-space: normal;
        border-collapse: collapse;
        font-size: 17px;
    }
}
@media (max-width: 479px) {
    table.simple-table td{
        padding: 5px 7px 5px 7px;
        white-space: normal;
        border-collapse: collapse;
        font-size: 17px;
    }
}

.img-top-left{
  margin: 0 20px 20px 0;
  float: left;
}
.img-top-right{
  margin: 0 0 20px 20px;
  float: right;
}
.img-middle-left{
  margin: 20px 20px 20px 0;
  float: left;
}
.img-middle-right{
  margin: 20px 0 20px 20px;
  float: right;
}
.img-bottom-left{
  margin: 20px 20px 0 0;
  float: left;
}
.img-bottom-right{
  margin: 20px 0 0 20px;
  float: right;
}

/* -- tinymce styles end -- */



/* ------------------------------------------------------------------------- */
/*-------------------------------Media queries-------------------------------*/
/* ------------------------------------------------------------------------- */


/* [1600] ------------------------------------------------------------------------ */


@media (max-width: 1599px) {
    .prod-img{ height: 620px; }
    .sidebar-box{ font-size: 21px; }

}


/* [1500] ------------------------------------------------------------------------ */


@media (max-width: 1499px) { 
    .logo-wrap { margin: 0 30px 0 0; }
    .tt-social { margin: 0 15px 10px 0; }
    .lang { margin: 5px 15px 0 0; }
    .social-search-wrap { margin: 31px 0 0; }
    .tt-menu2 { margin: 34px 0 15px; }
    .container { padding-left: 30px; padding-right: 30px; }
    h1{ font-size: 30px; padding-bottom: 25px; }
    h2{ font-size: 29px; padding-bottom: 25px; }
    h3{ font-size: 25px; }
    h4{ padding-bottom: 30px; }
    header.inside{ min-height: 135px; }
    .header-logo.ro, .header-logo.en { width: 248px; padding: 20px 0 0; }
    .tt-menu2-element{ font-size: 17px; padding: 9px 12px 9px 12px; }
    .carousel-item { min-height: 680px; }
    .carousel-caption { left: 12% !important; top: 32%; }
    .carousel-item{ height:50vh; }
    .carousel-caption p{ font-size: 24px; }
    
    .btn-more, .btn-more-white{ margin-top: 30px; font-size: 19px; padding: 11px 18px; }
    section{ padding-top: 80px; padding-bottom: 80px; }
}


/* [1200] ------------------------------------------------------------------------ */


@media (max-width: 1199px) {
    .logo-wrap { margin: 0 15px 0 0; }
    .tt-menu1 { position: relative; }
    .social-search-wrap { display: inline-block; margin: 12px 0 0 0; position: absolute; top: 19px; right: 0;}
    .tt-menu2 { display: block; float: left; width: 100%; margin: 15px 0 0 0; }
    .tt-menu2-element{ font-size: 17px; padding-left: 15px; padding-right: 15px; }
    section{ padding-top: 50px; padding-bottom: 50px; }
    h1{ font-size: 25px; padding-bottom: 15px; }
    h2{ font-size: 23px; padding-bottom: 15px; }
    h3{ font-size: 20px; }
    h4{ padding-bottom: 25px; }
    header.inside{ min-height: 135px; }
    .carousel-item { min-height: 600px; }
    .carousel-caption { left: 14% !important; top: 38%; }
    .carousel-caption p{ font-size: 18px; }
    .carousel-item{ height: 40vh; }
    .carousel-control { width: 60px; }
    
    p{ font-size: 16px; }
    .btn-more, .btn-more-white{ font-size: 18px; margin-top: 5px; padding: 11px 18px; }
    .tt-test p { font-size: 16px;  padding-bottom: 25px; }
    .tt-test-button { font-size: 18px; margin-right: 15px; padding: 0.5rem 0.5rem; }
    .btn-group-vertical > .btn, .btn-group > .btn { margin-bottom: 15px; }
    .tt-link span { padding: 0 5px 0 10px; }
    .popup-header h3{ font-size: 27px; }
    .img-star { margin: 2px 0 0; }
    .img-rate { font-size: 13px; }
    .prod-img{ height: 520px; }
    .prod-top-link{ font-size: 16px; }
    .sidebar-box{ font-size: 19px; }
    .sidebar-box-row .sb-icon{ font-size: 25px; }
    .wrap-testimo p { font-size: 19px; margin: 0; }
    .home-navig-left .hn-left{ left: 15px; }
    .home-navig-right .hn-right{ right: 15px; }
}


/* [1152] ------------------------------------------------------------------------ */


@media (max-width: 1151px) {
	.content-wrap{ margin-top: 150px; }
}


/* [992] ------------------------------------------------------------------------ */


@media (max-width: 991px) {
    h4{ font-size: 21px; }
    p{  padding-bottom: 15px; }
    .section-motto{ margin-bottom: 55px; }
    .inside-wrap{ padding-top: 20px; padding-bottom: 20px; }
    header.scrolled { padding-bottom: 0; }
    .tt-menu2-element{ font-size: 16px; padding-left: 15px; padding-right: 15px; }
    .tt-feature h3 { padding: 25px 0; }
    .row .tt-feature:not(:last-child){ padding-bottom: 50px; margin-bottom: 20px; }
    .tt-test-img{ padding-bottom: 25px; }
    .btn-more, .btn-more-white{ margin-top: 5px; font-size: 17px; padding: 11px 18px; }
    .tt-link a { font-size: 15px; }
    .tt-link span { font-size: 14px; padding: 0 5px 0 10px; }
    .tt-social-link, .tt-scrollbox { width: 35px; height: 35px; }
    .tt-copyright, .tt-pd{ padding-top: 31px; font-size: 16px; }
    .carousel-caption { left: 14% !important; top: 37%; }
    .carousel-item { min-height: 540px; }
    .carousel-indicators li, .carousel-indicators .active { width: 60px; height: 3px; margin: 0 12px; }
    .carousel-indicators li span { width: 60px; }
    .lead-title{ font-size: 23px; }
    .lead-full, .lead-half, .lead-quarter, .lead-third{ margin-top: 10px; margin-bottom: 10px; }
    .custom-border-box { padding: 10px 15px 0 15px; }
    .wrap-emi-data table{ width: 100%; }
    .container-page .row .nopad-l, .container-page .row .nopad-r, .container-page .row .nopad-lr{ padding-left: 0; padding-right: 0; }
    .container-page .wrap-photo-title{ margin-left: -32px; margin-right: -32px; }
    .prod-img{ height: 480px; }
    .sidebar-box-row .sb-icon{ font-size: 29px; }
    .prod-top-link.tr{ display: block; }
}


/* [768] ------------------------------------------------------------------------ */


@media (max-width: 767px) {
    header{ background-color: #ffffff; -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); }
    header.scrolled { border-radius: 0 0 50% 50% / 0 0 5% 5%; }
    .form-control { font-size: 17px; }
    .header-logo.ro, .header-logo.en { width: 200px; padding: 16px 0 6px 0; }
    .lang{ padding: 0; }
    .social-search-wrap { padding-right: 70px;  margin: 12px 0 7px 0; top: 10px; }
    .tt-menu1 { margin: 10px 0 10px 0; }
    .container { padding-left: 15px; padding-right: 15px;}
    .section-motto{ margin-bottom: 40px; }
    
    .navbar-toggler{ cursor: pointer; float: right; border: 0 none; border-radius: 0; padding: 8px 12px 8px 12px; position: absolute; top: 15px; right: 3px; height: auto; width: auto; z-index: 10000;}
    .navbar-toggler .tt-toggler-bar { width: 30px; height: 3px; margin: 6px auto; background: #1e4074; display: block; }
    .navbar-toggler:hover .tt-toggler-bar { background: #bed730; }
    
    .logo-wrap { float: left; display: block; margin: 0;}
    .tt-menu2 { padding-top: 0; margin: 5px 0 5px 0; float: left; display: block; width: 100%; }
    
    .navbar-toggleable-sm { width: 100%; position: relative; }
    .navbar-toggleable-sm .nav.navbar-nav li { background: #ffffff; }
   
    .navbar-nav .nav-item { border-left: 0 none; }
    .nav-item .tt-menu2-element{ border-left: 0 none; border-top: 1px solid #e7e7e7; display: block; padding: 9px 0 9px 0; margin: 0 auto; font-size: 17px; }
    .nav-item:last-of-type .tt-menu2-element{ border-bottom: 1px solid #e7e7e7; }
    .nav.navbar-nav { border-bottom: 1px solid rgba(255, 255, 255, 0.2); margin-top: 15px; }
    .tt-menu2 ul li ul li:first-child{ margin-top: 0; }
    .tt-menu2 .dropdown-menu{ position: relative; width: auto; padding: 0; margin-left: 0; margin-top: 0; background-color: transparent; border-radius: 0; -webkit-border-radius: 0; -moz-border-radius: 0; -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0); -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0); box-shadow: 0 0 0 rgba(0, 0, 0, 0); left: 0; border: 0 none; }
    .tt-menu2 .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header{ font-size: 17px; padding: 7px 0 7px 15px; }
    .tt-menu2 .dropdown-menu > li:first-of-type > a { border-top: 1px solid #e7e7e7; }
    .tt-menu2 .dropdown-menu > li:last-of-type > a { border-bottom: 0 none; border-right: 0 none;}
    .navbar-nav .nav-item:last-of-type { border-right: 0 none; }
    
    .carousel { margin-top: 93px; }
    .carousel-caption { left: 15% !important; top: 20%; }
    .carousel-caption p { font-size: 15px; }
    .carousel-item { min-height: 400px; }
    .carousel-indicators li, .carousel-indicators .active { width: 40px; height: 3px; margin: 0 10px; }
    .carousel-indicators li span { width: 40px; }
    .carousel-control .icon-next, .carousel-control .icon-prev { font-size: 50px; top: 45%; }
    .carousel-caption .carousel-title h1 { font-size: 19px; }
    .carousel-control { width: 40px; }
    .row .tt-news:not(:last-child){ padding-bottom: 40px; }
    .tt-link{ display: block; }
    .tt-link a { display: block; font-size: 19px; padding: 7px 0 7px 0; }
    .tt-link span { display: none; }
    .list-inline-item:not(:last-child) { margin-right: 0; }
    .row .tt-feature:not(:last-child){ border-bottom: 1px solid rgba(109, 109, 109, 0.2); }
    .tt-social-links { text-align: center; }
    .tt-copyright{ padding-top: 10px; padding-bottom: 10px; }
    .tt-pd{ padding-top: 5px; padding-bottom: 20px; }
    .tt-social .text-sm-right { text-align: center !important; }
    .tt-scrollbox { margin-top: 0; margin-bottom: 20px; float: left; }
    .popup-wrap { font-size: 17px; }
    .popup-header { padding: 15px 25px; }
    .popup-header h3{ font-size: 25px; }
    .popup-header .close-btn { right: 25px; }
    .popup-content { padding: 15px 25px; }
    .form-ps{ margin: 0; }
    .tt-aboutus p { font-size: 16px; }
    .section-motto .motto-text { font-size: 15px; }
    table td, table thead td{ font-size: 16px; }
    .photo-title h2.prod-title{ font-size: 19px; }
    .prod-img{ height: 480px; /*background-position: center 100px;*/ }
    .prod-top-link{ display: block; font-size: 16px; }
    .wrap-testimo p { font-size: 17px; margin: 0; }
    .house-sold .house-sold-label{ padding: 5px 15px 5px 15px; font-size: 23px; }
}


/* [575] ------------------------------------------------------------------------ */


@media (max-width: 574px) {
    p{ font-size: 16px; }
    .carousel-caption { left: 15% !important; top: 12%; }
    .carousel-caption p { font-size: 14px; }
    .carousel-item { min-height: 320px; }
    .carousel-indicators{ display: none; }
    .carousel { margin-top: 140px; }
    .tt-copyright, .tt-pd{ font-size: 16px; }
    .tt-scrollbox{ margin-bottom: 25px; }
    .section-motto .motto-line{ width: 20px; }
    h1, h2, h3, h4, h5, h6 { line-height: 1.3; }
    .social-search-wrap { margin: 5px 0 2px 0; padding-right: 13px; top: auto; right: auto; position: relative; }
    .photo-title h2.prod-title{ display: block; }
    /*.prod-top-link.tr{ top: -86px; }*/
}


/* [480] ------------------------------------------------------------------------ */


@media (max-width: 479px) {
    .logo-wrap{ float: left; display: inline-block; }
    .carousel-caption { left: 15% !important; top: 5%; }
    .carousel { margin-top: 140px; }
    .lang { font-size: 15px; margin: 5px 10px 0 0; padding: 0; }
    .tt-social { margin: 0 10px 10px 0; }
    .tt-social-link { margin-right: 6px; }
    .popup-top-search{ width: 80%; }
    .container-page .row.prod-page{ font-size: 19px; }
    .prod-top-link{ display: block; }
    .wrap-testimo p { font-size: 15px; margin: 0; }
}


/* [400] ------------------------------------------------------------------------ */


@media (max-width: 399px) {
}


