body {
    /*background-image: url('../images/background.png');
    background-attachment: fixed;*/
    background-color: #ebe9ec;
    font-family: "Avenir LT Std 55 Roman", sans-serif;
    font-size: 16px;
}

.fixed-container {
	transform: scale(0.9);
    max-width: 990px;
    min-width: 320px;
    width: 100%;
    margin: 0 auto;
}

.clouds {
    background-image: url('../images/cityIMG.jpg');
    background-position: center 100px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: auto 100%;
}
@media (min-aspect-ratio: 3/2) {
    .clouds {
        background-size: 100%;
    }
}
.green-building {
    background-image: url('../images/desktopIMG.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
}


/* header **/

#header {
	background-color: #f6f6f6;
    transition: all 0.3s ease-out;
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
    padding: 0;
    z-index: 10000;
	margin-top: -10px;
}
#header.floating {
    background-color: rgba(255,255,255,0.9);
    transition: all 0.3s ease-out;
}

#logo {
    display: block;
    background-image: url('../images/logo.png');
    width: 245px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
    transition: all 0.3s ease-out;
    background-size: contain;
    margin-top: 60px;
}
#logo:hover {
    text-decoration: none;
}
#main-navbar {
    float: right;
    padding-left: 0 !important;
    margin-bottom: -10px;
}
#main-navbar li {
    float: left;
}
#main-navbar li,
#main-navbar li a {
    display: block;
    height: 168px;
    overflow: hidden;
    transition: all 0.3s ease-out;
}
#main-navbar li.management {
    width: 140px;
}
#main-navbar li.design {
    width: 120px;
}
#main-navbar li.real-estate {
    width: 125px;
}
#main-navbar li.contact {
    width: 125px;
}
#main-navbar li a {
    opacity: 0.6;
    transition: all 0.3s ease-out;
    padding-top: 25px;
}
#main-navbar li a:hover {
    opacity: 1;
    transition: all 0.3s ease-out;
    background-color: rgba(255,255,255,0.6);
    text-decoration: none;
}

#main-navbar li .icon {
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-position: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transition: all 0.3s ease-out;
    display: block;
    margin: 0 auto;
}
#main-navbar li.management .icon {
    background-image: url('../images/conozcanos.png');
}
#main-navbar li.design .icon {
    background-image: url('../images/servicios.png');
}
#main-navbar li.real-estate .icon {
    background-image: url('../images/telefono.png');
}
#main-navbar li.contact .icon {
    background-image: url('../images/contact-icon.png');
}

#main-navbar li .title {
    font-size: 14px;
    text-transform: uppercase;
	text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
    margin-bottom: 5px;
}
#main-navbar li .description {
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
	text-align: center;
}

#main-navbar li .title,
#main-navbar li .description {
    display: block;
    opacity: 1;
    transition: all 0.3s ease-out;
    color: black;
}

@media (max-width: 920px) {
    #header {
        padding: 20px 0;
    }

    #logo {
        width: 318px;
        height: 73px;
        transition: all 0.3s ease-out;
        margin-top: 0;
    }
    
    #main-navbar {
        margin-top: 15px;
    }
    
    #main-navbar li .icon {
        transition: all 0.3s ease-out;
        width: 60px;
        height: 60px;
    }

    #main-navbar li,
    #main-navbar li a {
        height: 79px !important;
        width: 79px !important;
    }
    #main-navbar li a {
        padding-top: 0;
    }
    
    #main-navbar li a:hover {
        background-color: transparent !important;
    }

    #main-navbar li .title,
    #main-navbar li .description {
        display: none;
    }
}

@media (max-width: 685px) {
    #logo {
        float: none !important;
        margin: 0 auto 15px auto!important;
    }
    #header {
        padding: 20px 0 0 0 !important;
    }
    #main-navbar {
        float: none;
        width: 320px !important;
        margin: 0 auto;
    }
}

@media (max-width: 366px) {
    #logo {
        width: 100%;
        background-size: contain;
    }
}

/** Content **/

.content {
    padding-top: 170px;
    padding-bottom: 80px;
	min-height: 850px;
}

.home-accordion {
    border-bottom: 1px solid #f5f5f5;
}
.home-accordion.no-border {
    border-bottom: 0 none !important;
}
.home-accordion .accordion-item {
    border-bottom: 1px solid #cacaca;
    border-top: 1px solid #f5f5f5;
}
.home-accordion.no-border .accordion-item {
    border-bottom: 0 none !important;
}
.home-accordion .accordion-item:first-child {
    border-top: 0 none;
}
.home-accordion .accordion-item .accordion-body {
    display: none;
}
.home-accordion .accordion-item.open .accordion-body {
    display: block;
}
.home-accordion .accordion-padding {
    padding: 5px 20px;
}
.home-accordion .accordion-padding.no-horizontal-padding {
    padding: 35px 0 !important;
}
.home-accordion .accordion-item .accordion-header {
    cursor: pointer;
}
.home-accordion .accordion-item .accordion-header h1 {
    font-weight: normal;
    font-size: 26px;
    color: #1d90d6;
    margin-top: 10px;
}
.home-accordion .accordion-item .accordion-header h2 {
    font-weight: normal;
    font-size: 24px;
    color: #2076d6;
    margin-top: 10px;
}
.home-accordion .accordion-item .accordion-header h2 a {
    color: #2091d6;
}
.home-accordion .main-text {
    font-size: 18px;
    line-height: 28px;
}
.home-accordion .main-text h3 {
    font-weight: bold;
    margin-top: 0 !important;
}
.home-accordion .main-text p {
    margin-bottom: 30px;
}
.home-accordion .main-text h2 {
    font-weight: normal;
    font-size: 26px;
    color: #2076d6;
    margin-top: 20px;
	margin-left: -20px;
}

.home-accordion .sub-sections  {
    padding-top: 25px;
	padding-bottom: 20px;
}
.home-accordion .sub-section {
    border-top: 2px solid #808080;
    color: #808080;
    font-size: 14px;
    padding-top: 15px;
}
.home-accordion .sub-section h3 {
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
}
.home-accordion .main-image-holder {
    text-align: center;
}
.home-accordion .main-image-padding {
    margin-top: -100px;
}
.home-accordion .main-image-holder img {
    width: 100%;
    max-width: 500px;
}
@media (max-width: 850px) {
    .home-accordion .main-image-holder {
        margin-top: 20px !important;;
		margin-bottom: 10px;
    }
	.content {
    padding-top: 170px;
    padding-bottom: 50px;
}
}

/** Footer **/

#footer {
	background-color: #d7d0ca;
	opacity: 0.8;
    width: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

#copyright {
    float: left;
    color: #498c07;
    padding-top: 35px;
}

.consultas, .blog {
    float: right;
	margin-top: 7px;
    padding-bottom: 10px;
    padding-left: 10px;
}
.consultas a, .blog a {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    height: 35px;
    width: 145px;
    box-shadow: 7px 7px 7px 0px rgba(0, 0, 0, 0.5);
}
.consultas a {
    background-image: url('../images/consulta-registro-sanitario.png');
}
.blog a {
    background-image: url('../images/blog.png');
}
.consultas a:hover, .blog a:hover {
    text-decoration: none;
}
@media (max-width: 674px) {
    .consultas, .blog {
        float: left;
    }
    .blog {
        float: right;
    }
}

#contact-us {
    background-color: rgba(209, 210, 210, 0.76);
    padding: 40px 20px;
    margin-bottom: 50px;
}
#contact-us h2 {
    color: #2091d6;
    font-family: Impact;
    font-size: 50px;
    font-weight: bold;
    line-height: 50px;
    margin: 0;
    padding: 0;
}
#contact-us .note {
    color: #202020;
}
#contact-us .contact-row {
    padding: 50px 0;
    overflow: hidden;
    height: 100%;
}
#contact-us #contact-form {
    float: left;
    width: 35%;
    padding-right: 20px;
}
#contact-us #contact-form .form-error-row {
    font-size: 14px;
    color: #d03737;
}
#contact-us #contact-form .form-row {
    padding-bottom: 15px;
}
#contact-us #contact-form .form-row input,
#contact-us #contact-form .form-row textarea {
    width: 100%;
    border: 0 none;
    font-size: 12px;
    padding: 5px;
    background-repeat: no-repeat;
    background-position: right;
}
#cf-name {
    background-image: url('../images/contact-name.png');
}
#cf-email {
    background-image: url('../images/contact-email.png');
}
#cf-phone {
    background-image: url('../images/contact-phone.png');
}
#contact-us #contact-form .form-submit-row input {
    width: 100%;
    background-color: #2091d6;
    color: White;
    text-align: center;
    border: 0 none;
    font-size: 24px;
    padding: 5px;
    transition: all 0.4s ease-out;
}
#contact-us #contact-form .form-submit-row input:hover {
    background-color: #40b1f6;
    transition: all 0.4s ease-out;
}
#contact-us #direct-contact {
    float: left;
    width: 22%;
    padding: 0 10px;
    border-left: 10px solid #2091d6;
}
#contact-us #direct-contact .contact-qr {
    margin: -10px 0 10px 0;
}
#contact-us #direct-contact .contact-qr img {
    width: 100%;
}
#contact-us #direct-contact .phone {
    color: #2091d6;
    margin-bottom: 20px;
    line-height: 20px;
}
#contact-us #direct-contact .phone strong {
    display: block;
    font-size: 24px;
    font-weight: normal;
}
#contact-us #direct-contact .email {
    color: #2091d6;
    margin-bottom: 20px;
    line-height: 20px;
}
#contact-us #direct-contact .email a {
    color: #2091d6;
    font-size: 14px;
}
#contact-us #direct-contact .social {
    color: #2091d6;
    
}
#contact-us #direct-contact .social-media {
    padding-top: 5px;
}
#contact-us #direct-contact .social-media a {
    padding-right: 10px;
}

#contact-us #contact-map {
    float: left;
    width: 43%;
    padding-left: 20px;
    border-left: 10px solid #2091d6;
}
#contact-us #contact-map img {
    width: 100%;
}

@media (max-width: 900px) {
	#contact-us {
    margin-bottom: 30px;
	}
    #contact-us #direct-contact .email a {
        font-size: 12px;
    }
}
@media (max-width: 800px) {
	#contact-us {
    margin-bottom: 30px;
	}
    #contact-us #contact-form {
        width: 70%;
    }
    #contact-us #direct-contact {
        width: 30%;
    }
    #contact-us #contact-map {
        width: 100%;
        border-left: 0 none;
        padding-left: 0;
        padding-top: 20px;
    }
    #contact-us #direct-contact .email a {
        font-size: 14px;
    }
}
@media (max-width: 650px) {
	#contact-us {
    margin-bottom: 30px;
	}
    #contact-us #contact-form {
        width: 60%;
    }
    #contact-us #direct-contact {
        width: 40%;
    }
}

@media (max-width: 450px) {
	#contact-us {
    margin-bottom: 30px;
	}
    #contact-us #contact-form,
    #contact-us #direct-contact {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        border-left: 0 none;
    }
    #contact-us #direct-contact {
        padding-top: 40px;
    }
    #contact-us #contact-map {
        padding-top: 40px;
    }
}

#dialog-pool {
    display: none;
}
.modal-trigger {
    background-image: url('../images/modal-trigger.png');
    height: 18px;
    width: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    float: right;
    margin-top: -18px;
    text-decoration: none;
    transition: all 0.4s ease-out;
    opacity: 0.7;
}
.modal-trigger:hover {
    opacity: 1;
    text-decoration: none;
    transition: all 0.4s ease-out;
}

/** Overrides **/
.ui-dialog { z-index: 10000000000 !important; border-radius: 7px;}
.ui-widget-header {
    border: 0 none !important;
    background-color: transparent !important;
}
.ui-button {
    border: 0 none !important;
    background-color: none !important;
}

.bottom-door-stop {
    height: 325px;
}

.home-gallery .thumbs img {
    width: 100%;
    cursor: pointer;
}


#gallery-container {
    position: fixed; 
    height: 100%; 
    width: 100%;
    z-index: 10000000;
}
#gallery-blind {
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.9); 
    background-image: url('../images/x_button.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: right top;
    padding-top: 15px; 
    z-index: 10000; 
    position: fixed; 
    text-align: center;
    cursor: pointer;
}
#gallery-container img {
    position: fixed;
    z-index: 100000;
    background-color: #111111;
    border: 1px solid #444444;
}

#bottom-quote {
    position: absolute;
    font-size: 10px;
    padding-top: 10px;
}

@media (max-width: 840px) {
    #bottom-quote {
        width: calc(100% - 400px);
    }
}

@media (max-width: 670px) {
    #bottom-quote {
        width: 100%;
        position: static;
        padding-top: 30px;
        text-align: center;
    }
}

.blog-header {
    font-size: 40px;
    font-weight: 100;
    padding-top: 30px;
    padding-bottom: 20px;
    text-transform: uppercase;
    color: #2091d6;
}

.post-metas {
    font-size: 14px;
    color: #8c8c8c;
    position: absolute;
}

 /* Style the list */
ul.breadcrumb {
	margin-bottom: 8px;
    padding: 10px 16px;
    list-style: none;
    background-color: #eee;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    font-size: 14px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
} 