/*---------------------------------------------------------------
Project:	Comingsoon iDeas static
Version:	1.0
Last change:	07/03/2015
Assigned to:	moonhunters (moonhuntersteam@gmail.com)
Primary use:	Themeforest
---------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Preloader
        - #preloader
        - #status
3. Typography
        - h1
        - h2
        - h3
        - p
4. Navbar
        - .navbar
        - .navbar-default
        - .navbar-toggle
        - .navbar-right
        - .navbar-text
        - .navbar-brand>img
        - .top-nav-collapse

5. Jumbotron
        - .jumbotron
        - .jumbo
6. Counter
        - ul#example
        - ul#example li span
        - ul#example li.seperator
7. Testimonial
        - .testimonial
        - .testimonial-border
        - .testimonial-text
        - blockquote
        - #quote-carousel
        - .carousel-inner
        - .item blockquote
8. About Us
        - .about-text
        - .about-images
        - .text-aboutus

9. animate-numbers
        - .animate-numbers
        - .number
        - .counter
10. gallery
        - .images-gallery
        - .gallery
        - #gallery
        - figure
        - figcaption
        - .modalDialog
        - .modalDialog:target
        - .modalDialog img
        - .close
11. contact
        - .contact-us
        - .input-group .form-control
        - .form-control
        - .input-group-addon
        - form-control:focus
12. Google-maps
        - #map-canvas
13. Footer
        - .footer
        - .footer-text
        - .social-icon
        - .social-icon li
        - .icon
        - .icon a
        - .icon a:hover
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Color codes]

    Body-color: #313131 (dark)
    Navbar border bottom: #c1a26e (gold)
    jumbotron color: #3f3f3f (dark)
    counter color: #c1a26e (gold)
    testimonial color: #9b9b9b (grey)
    text-aboutus color: #848484 (grey)
    contact-us color: #313131; (dark)
    footer color: #555559 (dark)
    btn-primary color: #c1a26e
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Typography]

Body copy:		Open Sans 700, 400, 100;
Input, textarea:	Arial, Helvetica, sans-serif;
-------------------------------------------------------------------*/

/*---------------------------------------------------------------*/
/* 1. Body */
/*---------------------------------------------------------------*/
body{
    color: #313131;
    overflow: scroll;
    font-family: 'Open Sans', sans-serif;
    height: 100%;
}

.btn-primary {
    color: #c1a26e;
    background-color: transparent;
    border-color: #c1a26e;
    border: solid 2px;
    font-weight: 700;
    font-size: 14px;
}

.btn-primary:hover {
    color: #fff;
    background-color: #c1a26e;
    border: solid 2px #c1a26e;
}

.btn-lg, .btn-group-lg>.btn {
    padding: 12px 25px;
}

/*---------------------------------------------------------------*/
/* 2. preloader */
/*---------------------------------------------------------------*/

#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff;
    z-index:99;
}

#status {
    width:200px;
    height:200px;
    position:absolute;
    left:50%;
    top:50%;
    background-image: url(../images/status.gif); /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    margin:-100px 0 0 -100px;
}
/*---------------------------------------------------------------*/
/* preloader-end */
/*---------------------------------------------------------------*/

/*---------------------------------------------------------------*/
/* 3. typography */
/*---------------------------------------------------------------*/
h1 {
    font-weight: 300;
    font-size: 36px;
    margin-bottom: 30px;
}

h2 {
    margin-bottom: 35px;
}

h3 {
    font-weight: 400;
    font-size: 24px;
    color: #3f3f3f;
    margin-bottom: 30px;
}

p {
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    color: #a8a8a8;
    margin-bottom: 15px;
}

/*---------------------------------------------------------------*/
/* typography-end */
/*---------------------------------------------------------------*/

/*---------------------------------------------------------------*/
/* 4. navbar */
/*---------------------------------------------------------------*/
.navbar {
    min-height: 75px;
    margin-bottom: 25px;
}

.navbar-default {
    background-color: #fff;
    border-bottom: 1px solid #9b9b9b;
}

.navbar-default .navbar-toggle {
    background-image: url(../images/menu-icon.png);
    margin-top: 28px;
    border-color: #fff;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 12px;
    margin-top: 8px;
    margin-right: 15px;
    background-color: #fff;
    background-image: none;
}

.navbar-default .navbar-nav>li>a {
    color: #000;
    border: 1px solid transparent;
    font-weight: normal;
    color: #bebebe;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

.navbar-default .navbar-nav>li>a:hover {
    border-bottom: 3px solid #c1a26e;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7;
    height: auto;
}

.navbar-right {
    margin-top: 10px;
}

.navbar-brand>img {
     margin-top: 6px;
}

.navbar-text {
    margin-top: 15px;
}

.navbar-default .navbar-text {
    color: #41414f;
    font-weight: 700;
    font-size: 25px;
}

.navbar-nav>li>a {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    border-bottom: 3px solid #c1a26e;
    background-color: transparent;
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0px;
    margin-bottom: 0px;
}

.navbar-brand>img {
    display: block;
    width: 100%;
    margin-top: 0px;
}

.nav>li>a {
    display: inline;
}

.navbar-nav>li>a {
    line-height: 50px;
}
/*---------------------------------------------------------------*/
/* navbar-end */
/*---------------------------------------------------------------*/

/*---------------------------------------------------------------*/
/* 5. jumbotron */
/*---------------------------------------------------------------*/
.jumbotron {
    margin-bottom: 0px;
    background-color: white;
    background-image: url(../images/sfondo-consman.jpg);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    height: 750px;
}

.jumbo  {
    padding-top: 200px;
}

.header {
    display: inline-block;
    padding-top: 50px;
}

.jumbotron h2 {
    font-size: 30px;
    /*letter-spacing: 10px;*/
    font-weight: bold;
    color: black;
    display: inline;
    padding-bottom: 25px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

.jumbotron h2.to-right {
    padding-left: 100px;
}

.jumbotron p {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 100;
    color: #313131;
    margin-top: 40px;
}

.button-down {
    margin-top: 80px;
    margin-left: 10px;
}

/*---------------------------------------------------------------*/
/* 6. counter */
/*---------------------------------------------------------------*/
ul#example {
    list-style: none;
    margin: 10px 0;
    padding: 0;
    display: block;
    text-align: left;
    color: #c1a26e;
    margin-left:-25px;
}

ul#example li { display: inline-block; }

ul#example li span {
    font-size: 55px;
    font-weight: 300;
    line-height: 80px;
    padding: 20px;
}

ul#example li.seperator {
    font-size: 55px;
    line-height: 70px;
    vertical-align: top;
}

ul#example li p {
    color: #3f3f3f;
    font-size: 15px;
    text-align: center;
}

/*---------------------------------------------------------------*/
/* 7. testimonial */
/*---------------------------------------------------------------*/
.testimonial {
    background-image: url(../images/testimonial-background.jpg);
}

.testimonial-border {
    border-top: 2px solid #c1a26e;
    width: 50px;
    margin-bottom: 20px;
}

.testimonial-text  {
    font-size: 14px;
}

blockquote {
    padding: 20px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    font-style: italic;
}

#quote-carousel {
    padding: 0 10px 10px 10px;
    margin-top: 0px;
}

#quote-carousel .carousel-control {
    background: none;
    color: #CACACA;
    font-size: 2.3em;
    text-shadow: none;
    margin-top: 0px;
}

.carousel-inner {
    margin-top: 0px;
    color: #9b9b9b;
    line-height: 180%;
    text-align: left;
}

.item blockquote {
    border-left: none;
    margin-top: 15px;
    margin-bottom: 15px;
}

blockquote footer, blockquote small, blockquote .small{
    margin-top: 0px;
    font-size: 14px;
    color: #9b9b9b;
    font-style: normal;
}
/*---------------------------------------------------------------*/
/* testimonial-end */
/*---------------------------------------------------------------*/

/*---------------------------------------------------------------*/
/* 8 about us */
/*---------------------------------------------------------------*/
.about-text {
    margin-left: 50%;
    margin-right: 55px;
    margin-bottom: 50px;
}

.about-text h2 {
    font-weight: 100;
    font-size: 50px;
    margin-bottom: 15px;
}

.about-text h3 {
    font-size: 18px;
}

.text-aboutus {
    /*padding-right: 100px;*/
    color: #848484;
	text-align: justify;
}
/*---------------------------------------------------------------*/
/* about us end */
/*---------------------------------------------------------------*/

/*---------------------------------------------------------------*/
/* 9. animate-numbers*/
/*---------------------------------------------------------------*/
.animate-numbers {
    height: auto;
    background-image: url(../images/testimonial-background.jpg);
}

.number {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
}

.counter {
    color: #c1a26e;
    font-size: 60px;
    font-weight: 300;
}

.number p{
    color: #848484;
    font-size: 14px;
    text-transform: uppercase;
}

/*---------------------------------------------------------------*/
/* 10. gallery*/
/*---------------------------------------------------------------*/
.images-gallery{
    position:relative;
    padding: 0;
    height: 100%;
}

.gallery {
    width: 100%;
    height: auto;
}

#gallery {
    overflow: hidden;
}

#gallery h1 {
    position: relative;
    font-size: 20px;
    text-align: center;
    color: #c1a26e;
    text-transform: uppercase;
}

#gallery h2 {
    position: relative;
    text-align: center;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

#gallery h3 {
    position: relative;
    text-align: center;
    font-size: 18px;
    margin-top: 0px;
    font-weight: normal;
    color: #fff;
    text-transform: uppercase;
}

figure {
    height: 170px;
    width: 170px;
    display: block;
    overflow: hidden;
    z-index: 100;
}

figcaption {
    height: 100%;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: -800px;
    opacity: 0;
    padding: 5px;
}

/* Consman center hack */
div.caption-wrapper {
    width: 100%;
    height: 100%;
    display: table;
}

div.caption-container {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
/* End Consman center hack */

.sort-gallery a {
    color: #c1a26e;
    font-weight: 400;
    font-size: 24px;
    text-align: center;
}

a:hover figcaption {
    opacity: 0.8;
    background-color: #000;
    left: 0;
    color: #fff;
    transition: all 0.8s;
}
/*---------------------------------------------------------------*/
/* modal*/
/*---------------------------------------------------------------*/
.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}

.modalDialog > div {
    width: 1100px;
    height: 800px;
    color: #000;
    position: relative;
    margin: 7% auto;
    padding: 5px 20px 13px 20px;
}

.modalDialog p {
    color: #000;
    margin-top: 7px;
}

.modalDialog img {
    height: 85%;
}

.close {
    color: #c1a26e;
    line-height: 25px;
    position: absolute;
    right: -26px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: normal;
    font-size: 30px;
    -webkit-transition: all 1.3s ease-in-out;
    -moz-transition: all 1.3s ease-in-out;
    -o-transition: all 1.3s ease-in-out;
    -ms-transition: all 1.3s ease-in-out;
}


.close:hover {
    color: #c1a26e;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
}
/*---------------------------------------------------------------*/
/* gallery-end*/
/*---------------------------------------------------------------*/

/*---------------------------------------------------------------*/
/* 11. contact*/
/*---------------------------------------------------------------*/
.contact-us {
    text-align: center;
    color: #313131;
}

.contact-us h2 {
    margin-bottom: 50px;
    padding: 30px;
    font-weight: 300;
    font-size: 55px;

}

.input-group .form-control {
    margin-bottom: 10px;
}

.form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0px 0px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #fff;
    background-color: #fff;
    background-image: none;
    border: transparent;
    border-bottom: 1px solid #000;

}

.input-group-addon {
    padding: 6px 12px;
    font-size: 0px;
    line-height: 1;
    color: transparent;
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0px;
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child>.btn-group:not(:last-child)>.btn {
    padding:0px;
    color: #2f2f33;
}

.form-control:focus {
    border-color: #c1a26e;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0),0 0 0px rgba(0, 0, 0, 0);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.0),0 0 8px rgba(0, 0, 0, 0);
}

.contact .btn-primary {
    margin-right: 25px;
    color: #c1a26e;
    background-color: transparent;
    border-color: #c1a26e;
    border: solid 2px;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 30px;
    margin-bottom: 80px;
    height: 40px;
}

.contact .btn-primary:hover {
    color: #fff;
    background-color: #c1a26e;
    border: solid 2px #c1a26e;
}

.address {
    margin-top: -20px;
}

.h2-contact {
    color: #313131;
}

.lead {
    font-size: 16px;
}
/*---------------------------------------------------------------*/
/* contact-end*/
/*---------------------------------------------------------------*/

/*---------------------------------------------------------------*/
/* 12. Google-maps*/
/*---------------------------------------------------------------*/
html, body, .row, .col-xs-6 { height: 65% }

#map-canvas {
    width:100%;
    height:40%;
}
/*---------------------------------------------------------------*/
/* Google-maps-end*/
/*---------------------------------------------------------------*/

/*---------------------------------------------------------------*/
/* 13. footer*/
/*---------------------------------------------------------------*/
.footer {
    height: 75px;
    background-image: url(../images/testimonial-background.jpg);
}

.footer h4 {
    color: #555559;
    text-align: right;
    margin-top: 30px;
    margin-right: 50px;
}

.footer-text {
    position: relative;
    text-align: right;
}

.social-icon {
    display: table;
    margin-top: 15px;
}

.social-icon li {
    display: table-cell;
    text-align: right;
    padding: 10px;
}

#footerPinterest {
    background-image: url('../images/social-icons/pinterest.png');
}

#footerFacebook {
    background-image: url('../images/social-icons/facebook.png');
}

#footerTwitter {
    background-image: url('../images/social-icons/twitter.png');
}

.icon {
    list-style: none;
    display: inline-block;
    height: 30px;
    width: 41px;
    vertical-align: middle;
    margin: 0;
    padding: 10px;
}

.icon a {
    display: block;
    background-size: 28px, 28px;
    width: 28px;
    height: 28px;
    opacity: 0.2;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;

}

.icon a:hover {
    opacity: 0.9;
    -webkit-transform: scale(1.2,1.2);
    -moz-transform: scale(1.2,1.2);
    -o-transform: scale(1.2,1.2);
    -ms-transform: scale(1.2,1.2);

}
/*---------------------------------------------------------------*/
/* footer-end*/
/*---------------------------------------------------------------*/

@media only screen and (max-width: 1550px) {
    .jumbotron {
        height: 600px;
    }

    .jumbo  {
        padding-top: 160px;
    }

    .modalDialog > div {
        width: 785px;
        height: 600px;
        margin-top: 100px;
    }

    .modalDialog img {
        height: 80%;
    }
}

@media only screen and (max-width: 1250px) {
    .jumbotron {
        height: 650px;
    }

    .jumbo  {
        padding-top: 150px;
    }
}

@media only screen and (max-width: 750px) {
    .jumbotron {
        height: 550px;
    }

    .jumbo  {
        padding-top: 75px;
    }

    .footer {
        height: 75px;
    }

    .footer h4 {
        text-align: center;
        margin-top: 20px;
        margin-right: 20px;
    }

    .social-icon {
        display: none
    }

    .modalDialog {
        display: none;
    }

    @media only screen and (max-width: 500px) {

        ul#example li span {
            font-size: 30px;
            line-height: 45px;
        }
    }
}
