/* your styles go here */
/* Example site test */

.box-image-text .image {
    min-height: 190px;
    max-height: 190px;
}

.box-image-text .image img {
    max-height: 190px;
    margin: auto;
}

.box-simple {
    min-height: 230px;
}

/* Remove underline from navbar links */
.navbar-nav a {
    text-decoration: none !important;
}

/* Show line break only on wide screens */
.wide-only {
    display: none;
}

@media (max-width: 750px) {
    .wide-only {
        display: inline;
    }

    .carousel-image {
        display: none;
    }
}

/* Round corners on navbar hamburger */
.navbar-buttons .navbar-toggle {
    border-radius: 5px;
}

.navbar-buttons {
    padding-right: 15px;
}

/* TODO: Reduce space between sections */
/*section.bar {*/
/*    padding-top: 20px;*/
/*    padding-bottom: 20px;*/
/*}*/

/* Round corners on testimonial cards */
.testimonials .item {
    border-radius: 10px;
}

/* Round corners on Contact button */
.btn-template-main {
    border-radius: 5px;
}

/* Round corners on Bootstrap panels */
.panel {
    border-radius: 10px;
}

.panel-heading {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.panel-heading h4 {
    margin: 0;
}

/* Friendlier headings with Trebuchet MS */
h1, h2, h3, h4, h5, h6 {
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

/* Semi-transparent navbar */
.navbar-default {
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    box-shadow: none;
}


