/*
    faroinmobiliario.cl
    main.css
*/
@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700&display=swap');

/* structure */
body {
    font-size: 18px;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Roboto Condensed', sans-serif;
}

img {
    max-width: 100%;
}

/* global */
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-weight: 300;
}

h1, .h1 {
    font-size: 1.6em;
    line-height: 1em;
}

h2 {
    font-size: 1.4em;
    line-height: 1em;
}

h3 {
    font-size: 1.4em;
    line-height: 1em;
}

h4 {
    font-size: 1.2em;
    line-height: 1em;
}

h5, .h5 {
    font-size: 1.2em;
    line-height: 1em;
}

h6, .h6 {
    font-size: 1.1em;
    line-height: 1em;
}

@media (min-width: 992px) {
    h1, .h1 {
        font-size: 2.4em;
        line-height: 1em;
    }

    h2 {
        font-size: 2.1em;
        line-height: 1em;
    }

    h3 {
        font-size: 1.7em;
        line-height: 1em;
    }

    h4 {
        font-size: 1.4em;
        line-height: 1em;
    }

    h5, .h5 {
        font-size: 1.2em;
        line-height: 1em;
    }

    h6, .h6 {
        font-size: 1.1em;
        line-height: 1em;
    }    
}

/* input */
.form-control {
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    -webkit-border-radius: 0px;
       -moz-border-radius: 0px;
            border-radius: 0px;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.35);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
                 -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
                    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition-duration: .5s;
}

.form-control:focus {
    border-color: #424a52;
    box-shadow: none;
}

textarea.form-control {
    resize: none;
}

/* a */
a {
    color: black;
    text-decoration: none;
}

a:focus,
a:hover {
    text-decoration: none;
    color: #a26120;
}

/* equal height columns */
@media (min-width: 992px) {
    .row-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
    }
}

/* header */
header {
}

/* header-navbar */
#header-navbar {
    width: 100%;
    height: auto;
    background-color: rgba(255,255,255,1);
    border: none;
    margin: 0;
    position: fixed;
}

#header-navbar.pinned {
    background-color: rgba(255,255,255,1);
}

@media (min-width: 992px) {
    #header-navbar {
        background-color: rgba(255,255,255,0);
        height: 130px;
    }
    
    #header-navbar.pinned {
        height: 90px;
        background-color: rgba(255,255,255,1);
    }
}

#header-navbar .navbar-header {
    height: auto;
}

@media (min-width: 992px) {
    #header-navbar .navbar-header {
        height: 130px;
    }
    
    #header-navbar.pinned .navbar-header {
        height: 90px;
    }
}

#header-navbar .navbar-header .navbar-brand {
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
}

@media (min-width: 992px) {
    #header-navbar .navbar-header .navbar-brand {
        padding-top: 30px;
        padding-bottom: 30px;    
    }
    
    #header-navbar.pinned .navbar-header .navbar-brand {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

#header-navbar .navbar-header .navbar-brand img {
    width: auto;
    height: 50px;
}

header.in #header-navbar .navbar-header .navbar-brand img {
    opacity: 1;
}

@media (min-width: 992px) {
    #header-navbar .navbar-header .navbar-brand img {
        width: auto;
        height: 70px;
        opacity: 0;
    }
    
    #header-navbar.pinned .navbar-header .navbar-brand img {
        width: auto;
        height: 60px;
        opacity: 1;
    }
}

#header-navbar .navbar-toggle {
    background-color: #004d72;
    border: 1px solid white;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    margin: 13px 10px 13px 0;
}

#header-navbar .navbar-toggle .icon-bar {
    background-color: white;
}

/* main-navbar */
#main-navbar {
    float: none;
}

@media (min-width: 992px) {
    #main-navbar {
        
    }
}

#main-navbar li > a {
    font-size: 1em;
    text-transform: uppercase;
    -webkit-transition: all 0.1s ease 0s;
    -o-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
}

@media (min-width: 992px) {
    #main-navbar li > a {
        font-size: 1em;  
        padding-top: 55px;
        padding-bottom: 55px;
        color: white;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
    }
    
    #header-navbar.pinned #main-navbar li > a {
        padding-top: 35px;
        padding-bottom: 35px;
        color: black;
        text-shadow: none;
    }
}

#main-navbar li > a:hover {
    background-color: #004d72;
    color: white;
}

#header-navbar.pinned #main-navbar li > a:hover {
    background-color: #004d72;
    color: white;
}

@media (min-width: 992px) {
    #main-navbar li > a::before {
    }
}

/* top-wrapper */
#top-wrapper {
    
}

#top-wrapper .top-lead {
    display: block;
    position: relative;
    width: 100%;
    height: 360px;
    background-color: #004d72;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#top-wrapper.in .top-lead {
    height: 360px;
}

#top-wrapper .top-lead .top-overlay {
    position: absolute;
    top: 50%;
    width: 100%;
    min-height: 90px;
    left: 0;
    right: 0;
    background-image: url(../images/home/carousel-brand.png);
    background-position: left center;
    background-size: 100% auto;
    padding: 20px 0 20px 0;
}

#top-wrapper .top-lead .top-title {
    
}

#top-wrapper.in .top-lead .top-title  {
    top: 220px;
}

#top-wrapper .top-lead .top-title .title-h {
    color: white;
    font-weight: 400;
}

#top-wrapper .top-lead .top-title .title-h small {
    display: block;
    color: white;
    font-weight: 300;
    font-size: 0.4em;
    margin-top: 5px;
}

/* main-wrapper */
#main-wrapper {
    
}

#main-wrapper .block-separator {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#main-wrapper .block-separator > i {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #004d72;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    margin-left: 5px;
}

/* section-wrapper */
.section-wrapper {
    padding-top: 65px;
    padding-bottom: 60px;
}

/* block-wrapper */
.block-wrapper {
    padding: 35px 20px;
}

/* block-title */
.block-title {
    margin: 35px 0px;
    padding: 10px 35px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
}

.block-title .title-h {
    color: #0a253e;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.6em;
    line-height: 1.05em;
}

.block-title.title-white .title-h {
    color: white;
}

.block-title .title-h > span {
    text-transform: uppercase;
    font-weight: 500;
    color: #004d72;
    font-size: 1em;
    line-height: 1.05em;
}

.block-title.title-white .title-h > span {
    color: white;
}

@media (min-width: 992px) {
    .block-title .title-h {
        font-size: 2.8em;
    }

    .block-title .title-h > small {
    }    
}

/* section-title */
.section-title {
    padding: 55px 5px;
    text-align: center;
}

.section-title .title-h {
    color: #4c4c4c;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 2.4em;
    line-height: 1.05em;
}

.section-title .title-h > small {
    display: block;
    text-transform: none;
    font-weight: 300;
    color: white;
    color: #29b6ad;
}

/* bottom-wrapper */
#bottom-wrapper {
    
}

/* footer */
footer {
    
}

footer .footer-top {
    background-color: white;
    padding-top: 35px;
}

footer .footer-middle {
    background-color: white;
    padding-top: 35px;
    padding-bottom: 35px;
}

footer .footer-middle .title-footer {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #383838;
}

footer .footer-middle .title-footer > span {
    display: inline-block;
    color: #383838;
}

footer .footer-middle ul {
    line-height: 1.7;
    padding: 0;
    list-style: none;
}

footer .footer-middle ul li a {
    color: black;
    font-size: 0.9em;
}

footer .footer-middle ul li a:hover {
    color: black;
}

footer .footer-middle .footer-block {
    font-size: 0.9em;
    font-weight: 300;
    line-height: 1em;
}

footer .footer-middle .footer-block p {
    margin: 0;
}

footer .footer-middle .footer-social {
    border-top: 1px solid rgba(255,255,255,.2);
    padding: 30px 0 0 0;
    margin-top: 30px;
    text-align: center;
}

footer .footer-middle .footer-social li {
    display: inline-block;
}

footer .footer-middle .footer-social li a {
    font-size: 20px;
    line-height: 2;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 10px 10px 0 0;
    text-align: center;
    border: 1px solid #383838;
    border-radius: 100%;
    color: #383838;
    -webkit-transition: all 0.1s ease 0s;
    -o-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
}

footer .footer-middle .footer-social li a:hover {
    color: white;
    border: 1px solid #383838;
    background-color: #383838;
}

footer .footer-bottom {
    font-size: 14px;
    padding: 5px;
    color: white;
    background-color: #004d72;
}

footer .footer-bottom a {
    color: black;
}

/* message-box */
.message-box {
    padding: 20px 0;
    background: transparent;
}

.message-box label {
    color: #222222;
}

.message-box input,
.message-box select,
.message-box textarea {
    margin-bottom: 30px;
    background: #dddddd;
    border: 0;
    font-size: 14px;
    text-align: left;
    vertical-align: middle;
    padding: 0 10px;
    height: 40px;
    width: 100%;
    outline: none;
    -webkit-transition: all 0.30s ease-in-out;
       -moz-transition: all 0.30s ease-in-out;
        -ms-transition: all 0.30s ease-in-out;
         -o-transition: all 0.30s ease-in-out;
}

.message-box input:focus,
.message-box select:focus,
.message-box textarea:focus {
    background: #333333;
    color: #dddddd;
            box-shadow: none;
       -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.message-box textarea {
    padding: 10px 10px 10px 20px;
    resize: vertical;
    height: 90px;
}
 
.message-box input:focus,
.message-box select:focus,
.message-box textarea:focus {
    box-shadow: none;
    outline: none;
}

.message-box .btn {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}

.message-box .submit-btn {
    display: inline-block;
    background-color: #004d72;
    border: none;
    color: white;
    font-size: 1.2em;
    margin-top: 2em;
    padding: 0.4em 1.6em;
}


/* services-carousel */
#services-carousel {
    
}

#services-carousel .service-item {
    display: block;
    text-align: center;
}

#services-carousel .service-item .service-img {
    display: inline-block;
    width: 240px;
    height: 240px;
    background-color: white;
    text-align: center;
    padding: 60px;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
}

#services-carousel .service-item .service-img img {
    display: inline-block;
    width: 120px;
    height: 120px;
}

#services-carousel .service-item .service-info {
    display: block;
    padding: 10px 15px;
    margin-top: 15px;
}

#services-carousel .service-item .service-info .service-name {
    font-size: 1.2em;
    color: white;
    text-transform: uppercase;
}

#services-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 120px;
    top: 50%;
    margin-top: -60px;
    padding: 10px 0;
    z-index: -1;
}

#services-carousel .owl-nav .owl-prev span, 
#services-carousel .owl-nav .owl-next span {
    font-size: 120px;
    line-height: 90px;
    color: #a2a2a2;
    font-weight: 300;
}

#services-carousel .owl-nav .owl-prev {
    float: left;
    margin-left: -10px;
}

#services-carousel .owl-nav .owl-next {
    float: right;
    margin-right: -10px;
}

@media (min-width: 992px) {
    #services-carousel .owl-nav .owl-prev {
        margin-left: -35px;
    }

    #services-carousel .owl-nav .owl-next {
        margin-right: -35px;
    }    
}

/* testimony-item */
.testimony-item {
    position: relative;
    margin-top: 45px;
    margin-bottom: 45px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    padding: 0 15px;
    max-width: 765px;
    border: none;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    font-style: italic;
    color: #323232;
}

@media (min-width: 992px) {
    .testimony-item {
        padding: 0;
    }
}

.testimony-item .avatar {
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
    text-align: left;
    margin-bottom: 34px;
    z-index: 1;
}

.testimony-item .avatar img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50%;
    margin: 0;
    object-fit: cover;
    object-position: center center;
}

.testimony-item .author {
    margin-top: 15px;
    text-align: right;
}

/* team-well */
.team-well .team-item {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 330px;
    padding: 25px 30px 30px;
    margin-bottom: 20px;
    text-align: center;
    background-color: white;
}

.team-well .team-item * {
    -webkit-transition: all .1s ease-in;
       -moz-transition: all .1s ease-in;
         -o-transition: all .1s ease-in;
            transition: all .1s ease-in;
}

.team-well .team-item .team-img {
    position: relative;
    display: inline-block;
}

.team-well .team-item .team-img img {
    display: inline-block;
    width: 190px;
    height: 190px;
    object-fit: cover;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    -webkit-box-shadow: inset 0px 0px 20px 0px rgba(85,86,80,0.5);
       -moz-box-shadow: inset 0px 0px 20px 0px rgba(85,86,80,0.5);
            box-shadow: inset 0px 0px 20px 0px rgba(85,86,80,0.5);
}

.team-well .team-item .team-img::after {
    content: '+';
    font-size: 2em;
    font-weight: 300;
    display: block;
    position: absolute;
    width: 190px;
    height: 190px;
    padding: 64px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    background-color: rgba(255,173,0,0.6);
    color: white;
    opacity: 0;
    -webkit-transition: all .1s ease-in;
       -moz-transition: all .1s ease-in;
         -o-transition: all .1s ease-in;
            transition: all .1s ease-in;
}

.team-well .team-item:hover .team-img::after {
    opacity: 1;
}

.team-well .team-item .team-info {
    margin-top: 15px;
}

.team-well .team-item .team-info .team-name {
    font-size: 1.1em;
    font-weight: 500;
}

.team-well .team-item .team-info .team-occupation {
    margin-top: 10px;
    font-size: 1em;
    font-weight: 300;
    font-style: italic;
    color: #004d72;
}

.team-well .team-quickview * {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}

.team-well .team-quickview .modal-header {
    background-color: #004d72;
    color: white;
}

.team-well .team-quickview .modal-header .close {
    color: white;
}
    
.team-well .team-quickview .team-img {
    position: relative;
    display: inline-block;
}

.team-well .team-quickview .team-img img {
    display: inline-block;
    width: 260px;
    height: 260px;
    object-fit: cover;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    -webkit-box-shadow: inset 0px 0px 20px 0px rgba(85,86,80,0.5);
       -moz-box-shadow: inset 0px 0px 20px 0px rgba(85,86,80,0.5);
            box-shadow: inset 0px 0px 20px 0px rgba(85,86,80,0.5);
}

.team-well .team-quickview .team-info {
    padding: 25px 0;
}

.team-well .team-quickview .team-name {
    font-size: 1.4em;
    font-weight: 500;
}

.team-well .team-quickview .team-occupation {
    margin-top: 10px;
    font-size: 1em;
    font-weight: 300;
    font-style: italic;
    color: #004d72;
}

.team-well .team-quickview .team-desc {
    margin-top: 20px;
    font-size: 0.9em;
    font-weight: 300;
}

.team-well .team-quickview .team-desc p {
    margin-bottom: 0.2em;
}

/* service-box */
.service-box {
    margin-bottom: 15px;
    cursor: pointer;
}

.service-box .pull-left {
    margin-right: 20px;
}
.media-left, .media > .pull-left {
    padding-right: 10px;
}

.service-box .pull-left > i {
    font-size: 24px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    width: 64px;
    border-radius: 100%;
    color: #004d72;
    box-shadow: inset 0 0 0 1px #0a253e;
    -webkit-box-shadow: inset 0 0 0 1px #0a253e;
    transition: background-color 400ms, background-color 400ms;
    position: relative;
}

.service-box:hover .pull-left > i {
    background-color: #004d72;
    color: white;
}

.service-box .media-body {
    font-size: 16px;
}

.service-box .media-heading {
    color: #004d72;
    font-size: 20px;
}

 

/* message-modal */
#message-modal * {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}

@media (min-width: 992px) {
    #message-modal .modal-dialog {
        width: 334px;
    }
}

#message-modal .modal-header {
    background-color: #004d72;
    color: white;
}

#message-modal .modal-header .close {
    color: white;
}

/* contact-box */
.contact-box {
    display: block;
    width: 100%;
    text-align: left;
    margin: 25px 5px 35px 5px;
}

.contact-box .bullet {
    display: block;
    float: left;
    padding-right: 15px;
}

.contact-box .bullet i {
    font-size: 2.6em;
    color: #004d72;
}

.contact-box h3 {
    font-weight: 300;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #004d72;
}

/* home */
#home-a {
    padding-top: 55px;
    padding-bottom: 35px;
}

#home-a .block-wrapper {
    position: relative;
    padding-left: 65px;
    padding-right: 65px;
}

#home-a .block-wrapper::before,
#home-a .block-wrapper::after {
    font-size: 12em;
    color: #004d72;
    display: block;
    position: absolute;
    top: -5%;
}

#home-a .block-wrapper::before {
    content: '\201C';
    left: 0px;
}

#home-a .block-wrapper::after {
    content: '\201D';
    right: 0px;
}

#home-a h1 {
    font-size: 1.8em;
    line-height: 1.1;
}

#home-a h2 {
    font-size: 1.7em;
    line-height: 1.1;
    color: #0a253e;
    font-weight: 500;
}

#home-b {
    display: block;
    width: 100%;
    min-height: 50vh;
    background-image: url(../images/home/middle-background.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative; 
    margin-top: 75px;
    margin-bottom: 0;
}

#home-b .block-title {
    margin-top: 85px;
    margin-bottom: 85px;
}

#home-b .block-title .title-h {
    color: white;
}

#home-b .block-wrapper {
    background-color: white;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
       -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
            box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
    margin-bottom: -120px;
    text-align: justify;
}

@media (min-width: 992px) {
    #home-b .block-wrapper {
        padding: 65px 45px 60px 45px;
    }
}

#home-c {
    display: block;
    width: 100%;
    min-height: 50vh;
    background-color: #004d72;
    padding-top: 160px;
    padding-bottom: 60px;
}

#home-c .block-separator {
    display: inline-block;
    width: 100%;
}

#home-d {
    display: block;
    width: 100%;
    min-height: 20vh;
    background-color: #004d72;
    background-image: url(../images/home/bottom-background.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative; 
    padding-top: 160px;
    padding-bottom: 150px;
    text-align: center;
}

#home-d .block-title {
    margin-top: 35px;
    margin-bottom: 35px;
}

#home-d .block-title .title-btn {
    margin-top: 25px;
    display: inline-block;
    background-color: #004d72;
    color: white;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 26px;
    -webkit-border-radius: 0px;
       -moz-border-radius: 0px;
            border-radius: 0px;
}

#home-e {
    border-bottom: 20px solid #004d72;
    display: block;
    min-height: 50vh;
    background-color: white;
    background-image: url(../images/home/testimonies-background.jpg);
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 55px;
    padding-bottom: 55px;
    margin-bottom: 35px;
}

#home-e .block-title {
    padding-left: 0;
    padding-right: 0;
}

/* about */
#about-a {
    
}

#about-b {
    background-color: #f4f4f4;
}

#about-c {
}

#about-d {
    display: block;
    width: 100%;
    min-height: 20vh;
    background-color: #f4f4f4;
    background-image: url(../images/background/content/acerca-de-bajada.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative; 
    padding-top: 110px;
    padding-bottom: 110px;
    text-align: center;
    color: white;
    font-size: 2em;
}

/* contact */
#contact-a {
    
}

#contact-b {
    background-color: #f4f4f4;
}