/**
 * Styles
 *
 * :: Normalize
 * :: Navbar
 * :: Dropdown
 * :: Well
 * :: Logo
 * :: Pagination
 * :: Buttons
 * :: Sections
 * :: Forms
 * :: Carousel
 * :: Footer
 * :: Media Queries
 */

/**
 * Normalize
 */

/* * { */
/*     outline: 0 !important; */
/* } */

/* html, body { */
/*     font-size: 100%; */
/*     height:100%; */
/*     font-family: 'helvetica'; */
/*     -webkit-font-smoothing: antialiased; */
/*     -moz-osx-font-smoothing: grayscale; */
/* } */

/* body { */
/*     color: #666; */
/*     font-size: 16px; */
/* } */

/* a { */
/*     color: #16A085; */
/* } */

/* a:hover, a:focus { */
/*     color: #1ABC9C; */
/*     text-decoration: none; */
/* } */

.placeholder { 
    color: #aaa; 
}

.container-int{
    margin-bottom: 50px;
}

#app {
    padding-top: 67px;
}

#topcontrol {
    background-color: #000;
    padding: 5px 10px;
    font-size: 28px;
    line-height: 20px;
    color: #9B9B9B;
}

h2.section-title {
    margin: 0px 0 30px 0;
    font-size: 25px;
}

h3.section-title {
    margin: 0px 0 20px 0;
    font-size: 20px;
}

h1.post-title, h2.post-title {
    font-size: 24px;
    margin-top: 0;
}

/* p { */
/*     margin: 0 0 25px 0; */
/*     line-height: 23px; */
/* } */

blockquote {
    padding: 15px 20px;
    border-left: 5px solid #16A085;
    background: #FAFAFA;
}

blockquote p {
    font-size: 15px;
    line-height: 24px;
}

/**
 * Navbar
 */

.navbar {
    margin: 0;
    border: none;
    border-bottom: 2px solid #16A085;
    border-radius: 0;
    color:white;
}

.navbar-inverse {
    background-color: #1ABC9C;
    border-color: #16A085;
}

.navbar-inverse .navbar-brand {
    font-size: 30px;
    line-height: 40px;
    color: #FFF;
    padding: 0 15px;
    margin: 8px 0 0px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar-brand { 
    margin-top:15px !important; 
}

.navbar-inverse .navbar-nav > li > a {
    color: #fff;
    padding: 18px 15px;
    transition: all 0.4s ease-in-out;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #ffffff;
    background-color: #16A085;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    color: #ffffff;
    background-color: #16A085;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #ffffff;
    background-color: #16A085;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #16A085;
}

.navbar-inverse .navbar-toggle {
    border-color: #16A085;
    outline: none;
}

.nav-pills > li > a {
    border-radius: 0;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background-color: #169D83;
}

/**
 * Dropdown
 */

.dropdown-menu {
    background-color: #16A085;
    border: none;
    border-radius: 2px;
    transition: all 0.4s ease-in-out;
}

.dropdown-menu > li > a {
    color: #fff;
}

/**
 * Well
 */

.well {
    padding: 20px;
    background: #FAFAFA;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #111;
    border-top: 1px solid #111;
    box-shadow: none;
    margin-top: 0.25em;
}

.well.well-lg {
    padding: 24px;
}

.well.well-sm {
    padding: 9px;
}

/**
 * Logo
 */

#logo-parent {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 15px;
    margin-top: 15px;
}

#logo-base {
    position: relative;
    top: 0;
    left: 0;
}

#logo-spin {
    position: absolute;
    top: 0px;
    left: 0px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    animation-name: rotate; 
    animation-duration: 10s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/**
 * Pagination
 */

.pagination {
    border-radius: 0;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

.pagination > li > a, .pagination > li > span {
    border: none;
    margin: 0 1px;
    transition: all 0.4s ease-in-out;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #16A085;
}

.label-default {
    background-color: #1ABC9C;
}

/**
 * Buttons
 */

.btn {
    border: none;
    border-radius: 2px;
    transition: all 0.4s ease-in-out; 
    outline: none; 
}

.btn-lg {
    padding: 10px 35px;
}

.btn-primary {
    color: #FFF;
    background-color: #1ABC9C;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-color: #16A085;
}

.btn-info {
    background-color: #2C3E50;
}

.btn-warning {
    color: #fff;
    background-color: #cb8304;
    border-color: #cb8304;
}

.btn-info:hover{
    background-color: #95A5A6;
}

.input-group-btn:last-child > .btn {
    padding: 7px 12px;
}

/**
 * Sections
 */

.section,
.section-colored {
    padding: 50px 0;
}

.section-colored {
    background-color: #ECF0F1;
}

.section-colored.home {
    background: #423F5C url(../img/section-bg.png) 50% 0 no-repeat;
}

.bg-ltgray {
    background-color:#efefef;
}
.bg-white {
    background-color:#fff;
}

.section-colored.home h2 {
    margin: 0;
    color: #fff;
}

.section-header {
    background-color: #ECF0F1;
    padding: 0;
    margin-bottom: 20px;
}

.sidebar h4 {
    margin: 0 0 25px 0;
}

.sidebar .tab-content{
    margin-bottom: 20px;
}

/**
 * Forms
 */

.form-control {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    resize: none;
    background: #FCFCFC;
    border-color: #E4E4E2;
}

.form-control:focus {
    border-color: #1ABC9C;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

/**
 * Carousel
 */

.carousel {
    height: 530px;
    background: #34495e;
}

.carousel-control.left,
.carousel-control.right {
    background: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    filter: none;
}

.carousel-control.left i {
    left: 0;
}

.carousel-control.right i {
    right: 0;
}

.carousel-control.left i,
.carousel-control.right i {
    position: absolute;
    top: 245px;
    font-size: 25px;
    background: black;
    line-height: 40px;
    padding: 0 15px;
}

.carousel-indicators li, .carousel-indicators .active {
    width: 8px;
    height: 8px;
    margin: 1px;
}

.carousel-caption {
    top: 160px;
}

.carousel-caption h2 {
    font-size: 43px;
    line-height: 50px;
    margin: 10px 0;
}

.carousel-caption .button {
    border: 2px solid white;
    padding: 10px 40px;
    border-radius: 2px;
    color: white;
    margin: 30px 0 0 0;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.carousel-caption .button:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.13);
}

.item,
.active,
.carousel-inner {
    height: 100%;
}

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.block-icon{
    width: 70px;
    height: 70px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    text-align: center;
    font-size: 30px;
    background: #1ABC9C;
    color: #fff;
    line-height: 70px;
    margin: 0 auto;
}

.block-body h2 {
    font-size: 19px;
    text-align: center;
}

.block-body p {
    text-align: center;
    font-size: 13px;
    color: #7F8C8D;
}

.line-subtitle {
    height: 1px;
    width: 70px;
    margin: 17px auto;
    background: #DBDBDB;
}

/**
 * Footer
 */

#footer {
    background: #34495E;
    padding: 50px 0;
    color: #BDC3C7;
    font-size: 12px;
    line-height: 18px;
}

.footer-brand {
    display: inline-block;
    font-size: 30px;
    line-height: 40px;
    color: #FFF;
    margin-bottom: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-brand:hover {
    color: #fff;
    text-decoration: none;
}

footer p {
    color: #BDC3C7;
    font-size: 12px;
    line-height: 18px;
}

footer h3 {
    margin: 20px 0 15px 0;
    color: #FFF;
    font-size: 14px;
}

footer .form-control {
    background: #2C3E50;
    border: none;
    color: #ecf0f1;
    font-size: 12px;
    transition: all 0.4s ease-in-out;
}

footer .form-control:focus {
    background: #ECF0F1;
    color: #7F8C8D;
    border: none;
    box-shadow: none;
}

footer .input-group-btn .btn {
    height: 34px;
}

.footer-after {
    background: #2c3e50;
    padding: 20px 0;
    font-size: 12px;
}

.footer-after p {
    color: #fff;
    margin: 0;
}

.footer-after a {
    color: #FFF;
}

.footer-after a:hover{
    color: #7f8c8d;
    text-decoration: none;
}

/**
 * Media Queries
 */

/* Small devices Tablets  */
@media (max-width: 991px) {
    p.legal {
        text-align: left;
    }
}

/* Extra small devices Phones */
@media (max-width: 767px) {
    .carousel {
        height: 380px;
    }

    .carousel-caption {
        top: 4%;
    }

    .carousel-control.left i,
    .carousel-control.right i {
        top: 170px;
    }

    .section-colored.home h2 {
        margin-bottom: 30px;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #FFF;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #149178;
    }

    h3.error-404 {
        font-size: 150px;
    }

    .sidebar {
        margin-top: 30px;
    }

    .comment-content {
        width: 65%;
    }
}
