/* custom css */

html,
body {
    height: 100%;
}

body {
    padding-top: 50px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 300;
    background-attachment: scroll;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center 50px;
    background-size: cover;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    footer {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 18px;
    }
    footer {
        font-size: 16px;
    }
}


/* Background images for big screens */

body.home-page {
    background-image: url(../images/large-testimonials-background.jpg);
    background-attachment: fixed;
}

body.services-page {
    background-image: url(../images/large-services-background.jpg);
    background-attachment: fixed;
}

body.testimonials-page {
    background-image: url(../images/large-testimonials-background.jpg);
    background-attachment: fixed;
}

body.tips-page {
    background-image: url(../images/large-tips-background.jpg);
    background-attachment: fixed;
    background-position: left 50px;
}


/* Background images for medium screens */

@media (max-width: 1024px) {
    body.home-page {
        background-image: url(../images/medium-testimonials-background.jpg);
        background-attachment: scroll;
    }
    body.services-page {
        background-image: url(../images/medium-services-background.jpg);
        background-attachment: scroll;
    }
    body.testimonials-page {
        background-image: url(../images/medium-testimonials-background.jpg);
        background-attachment: scroll;
    }
    body.tips-page {
        background-position: left 50px;
        background-attachment: scroll;
    }
}


/* Background images for small screens */

@media (max-width: 480px) {
    body.home-page {
        background-image: url(../images/small-testimonials-background.jpg);
        background-attachment: scroll;
    }
    body.services-page {
        background-image: url(../images/small-services-background.jpg);
        background-attachment: scroll;
    }
    body.testimonials-page {
        background-image: url(../images/small-testimonials-background.jpg);
        background-attachment: scroll;
    }
    body.tips-page {
        background-image: url(../images/small-tips-background.jpg);
        background-attachment: scroll;
        background-position: left center;
    }
}



/* Nav-Bar */

.navbar-default {
    text-align: center;
    line-height: 1rem;
    background-color: #455b73;
    color: #cbcbcb;
}

.navbar-default,
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border: 0;
}

@media (max-width: 768px) {
    .navbar-nav {
        display: block;
    }
}

@media (min-width: 768px) {
    .navbar-nav {
        display: inline-block;
        margin: 0;
        float: none;
        font-size: 1em;
    }
}


/* Nav List */

.navbar-default .navbar-nav>li>a {
    color: #cbcbcb;
    text-transform: uppercase;
    -webkit-transition: background-color 2s ease-in-out 0s;
    /* For Safari 3.1 to 6.0 */
    transition: background-color 2s ease-in-out 0s;
    line-height: 2em;
}

.navbar-default .navbar-nav>li.active>a {
    font-weight: 600;
    color: #cbcbcb;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    text-decoration: none;
    color: #cbcbcb;
    background-color: #57718d;
}


/* Hamburger */

.navbar-default .navbar-toggle .icon-bar {
    background-color: #cbcbcb;
}

.navbar-default .navbar-toggle {
    border-color: #cbcbcb;
    background-color: transparent;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: rgba(221, 221, 221, 0.4);
}


/* Main Content */

.main-content,
.cover-wrapper {
    min-height: 400px;
    width: 100%;
    height: 100%;
}

#bluescreenlogo {
    width: 80%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}


/* Cover */

.cover-wrapper {
    display: table;
    /* For at least Firefox */
    -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, .5);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, .5);
}

.cover-wrapper-inner {
    display: table-cell;
    vertical-align: middle;
    width: 90%;
    position: absolute;
    left: 5%;
    top: 15%;
}

.cover-container {
    padding: 25px;
    min-height: 375px;
    margin-right: auto;
    margin-left: auto;
}

.lead-content {
    text-align: center;
    text-transform: uppercase;
    background: none;
}

@media (min-width: 768px) {
    .lead-content h1 {
        font-size: 2.5em;
    }
    .lead-content h2 {
        font-size: 1.5em;
    }
    .lead-content h3,
    .lead-content h3 a {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .lead-content h1 {
        font-size: 1.8em;
    }
    .lead-content h2 {
        font-size: 1.2em;
    }
    .lead-content h3,
    .lead-content h3 a {
        font-size: 1.1em;
    }
    a.btn-lg {
        font-size: 0.8em
    }
}

.lead-content h3 a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: #333333;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}

.lead-content h3 a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #333333;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.lead-content h3 a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.lead-content a.btn {
    padding: 15px 30px;
    margin: 15px 0;
    background-color: #1d3f73;
    border: 0 none;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
    white-space: normal;
}

.lead-content a.btn:hover,
.lead-content a.btn:focus {
    border: 0 none;
    background-color: #214986;
    -webkit-box-shadow: 0px 0px 50px 0px white;
    -moz-box-shadow: 0px 0px 50px 0px white;
    box-shadow: 0px 0px 50px 0px white;
}


/* BLUE CONTENT */

.follow-content {
    background-color: #87a6c3;
    padding-top: 5%;
}


/* ^^^ This is just to make sure the second section gets pushed down */

.blue-content {
    padding-bottom: 50px;
}

.blue-content p {
    font-size: 1em;
}

.blue-content ul,
.blue-content ol {
    margin-left: 25px;
    padding-left: 0;
}

.blue-content ul li,
.blue-content ol li {
    font-size: 1em;
    padding-left: 15px;
    padding-bottom: 15px;
}

.blue-content span.glyphicon {
    padding-right: 1em;
}

.blue-content h3 {
    font-size: 1.1em;
}


/* Services-Page */

.ui-accordion-content {
    padding: 15px 0 0;
}

.accordion > h3 a,
.accordion > h3 {
    font-size: 1.2em;
    color: #333333;
    cursor: pointer;
    -webkit-transition: text-shadow 0.25s linear;
    -moz-transition: text-shadow 0.25s linear;
    -o-transition: text-shadow 0.25s linear;
    transition: text-shadow 0.25s linear;
    cursor: pointer;
}

.accordion > h3:hover,
.accordion > h3:focus {
    cursor: pointer;
    outline: 0;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
}

.accordion .glyphicon-circle-arrow-right {
    font-size: 0.9em;
    padding: 0 0 0 0;
    -webkit-transition: transform 0.5s ease-out;
    -moz-transition: transform 0.5s ease-out;
    -o-transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    transform-origin: 25% center 0;
}

.ui-state-active .glyphicon-circle-arrow-right,
.ui-state-active .glyphicon-circle-arrow-right,
.ui-state-active .glyphicon-circle-arrow-right {
    transform: rotate(90deg);
}

.btn .glyphicon {
    color: #fff;
    padding-right: 10px;
}


/* Testimonials-Page */

.testimonial {
    padding: 15px 0;
}

.quote-bubble {
    position: relative;
    width: 100%;
    height: auto;
    padding: 35px;
    margin: 25px 0 35px 0;
    background: #FFFFFF;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.quote-bubble:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 15px 15px 0;
    border-color: #FFFFFF transparent;
    display: block;
    width: 0;
    z-index: 1;
    margin-left: -15px;
    bottom: -15px;
    left: 45px;
}

.quote-bubble .fa-quote-left {
    margin-right: 15px;
}

.quote-bubble .fa-quote-right {
    margin-left: 15px;
}

.testimonial .fa-user {
    margin-left: 25px;
    margin-right: 15px;
    font-size: 2em;
}

ul.testimonial-service {
    list-style: none;
    margin: auto;
    padding: 0;
}

.testimonial-service li {
    display: inline-block;
    margin-right: 25px;
}

.testimonial-service li .glyphicon-check {
    margin-right: 10px;
    margin-left: 0px;
}


/* CONTACT FORM */

.contact-page .cover-wrapper {
    display: block;
}

.contact-page .blue-content h3 {
    font-weight: bold;
}


/* Message boxes */

.ucf .message {
    margin-bottom: 20px;
}

.ucf .message p {
    /* Message boxes */
}

.ucf .message {
    margin-bottom: 20px;
}

.ucf .message p {
    margin-top: 0;
}

.ucf .message p:last-child {
    margin-bottom: 0;
}

.ucf .message ul {
    margin-bottom: 0;
}


/* Error message box */

.ucf .message .errors {
    background: #fff;
    border: solid 1px #ccc;
    border-left: solid 10px #d9534f;
    border-radius: 5px;
    padding: 20px;
}

.ucf .message .errors p {
    color: #d9534f;
}


/* Success message box */

.ucf .message .success {
    background: #fff;
    border: solid 1px #ccc;
    border-left: solid 10px #5cb85c;
    border-radius: 5px;
    padding: 20px;
}

.ucf .message .success p {
    color: #5cb85c;
}


/* Form */

.ucf * {
    outline: none;
}

.ucf fieldset {
    border: solid 1px #000;
    border-radius: 5px;
    font-weight: 300;
    max-width: 600px;
}

.ucf legend {
    padding: 20px;
    display: block;
    width: auto;
    line-height: inherit;
    border: 0;
    border-bottom: 0;
}

.ucf .field-wrapper {
    clear: both;
    margin-top: 0;
    line-height: 2em;
}

.ucf .field-wrapper label {
    font-weight: 300;
    display: block
}

.ucf .field-wrapper input[type=text],
.ucf .field-wrapper input[type=tel],
.ucf .field-wrapper input[type=email],
.ucf .field-wrapper input[type=password],
.ucf .field-wrapper textarea,
.ucf .field-wrapper select {
    border: solid 1px #ccc;
    border-radius: 5px;
    padding: 10px;
    transition: all .3s ease-in-out;
}

.ucf .field-wrapper input[type=text]:focus,
.ucf .field-wrapper input[type=tel]:focus,
.ucf .field-wrapper input[type=email]:focus,
.ucf .field-wrapper input[type=password]:focus,
.ucf .field-wrapper textarea:focus,
.ucf .field-wrapper select:focus {
    border: solid 1px #333;
}

@media ( max-width: 480px) {
    .ucf fieldset {
        padding: 10px;
    }
    .ucf fieldset,
    .ucf .field-wrapper {
        margin-bottom: 10px;
        font-weight: 300;
        font-size: 16px;
        width: auto;
    }
    .ucf .field-wrapper label {
        width: 90%;
        display: block
    }
    .ucf .field-wrapper label span {
        display: block;
        float: none;
        width: 100%;
    }
    .ucf .field-wrapper input[type=text],
    .ucf .field-wrapper input[type=tel],
    .ucf .field-wrapper input[type=email],
    .ucf .field-wrapper input[type=password],
    .ucf .field-wrapper textarea,
    .ucf .field-wrapper select {
        display: block;
        width: 90%;
    }
    .ucf .field-wrapper input::-webkit-input-placeholder,
    .ucf .field-wrapper textarea::-webkit-input-placeholder {
        font-size: 14px;
        font-weight: 300;
    }
}

@media ( min-width: 481px) {
    .ucf fieldset,
    .ucf .field-wrapper {
        margin-bottom: 20px;
        font-weight: 300;
        font-size: 18px;
        padding: 20px
    }
    .ucf .field-wrapper label span {
        display: inline-block;
        float: left;
        width: 30%;
    }
    .ucf .field-wrapper input[type=text],
    .ucf .field-wrapper input[type=tel],
    .ucf .field-wrapper input[type=email],
    .ucf .field-wrapper input[type=password],
    .ucf .field-wrapper textarea {
        width: 60%;
    }
    .ucf .field-wrapper select {
        width: 60%;
    }
    .ucf .field-wrapper input::-webkit-input-placeholder,
    .ucf .field-wrapper textarea::-webkit-input-placeholder {
        font-size: 16px;
        font-weight: 300;
        padding: 10px
    }
}


/* Select 2 overrides */

.select2 {
    margin-bottom: 20px;
}

.select2-container .selection,
.select2-container .select2-selection {
    width: 100% !important;
}

.select2-search__field:focus {
    outline: none;
}


/* Google no CAPTCHA reCAPTCHA */

@media screen and (max-width: 640px) {
    .g-recaptcha {
        padding-left: 0;
        margin-bottom: 10px;
        max-width: 77%;
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media ( min-width: 481px) {
    .g-recaptcha {
        padding-left: 30%;
        margin-bottom: 20px;
    }
}


/* Honey trap field */

.ucf .hey-honey {
    left: -9999px;
    position: absolute;
}


/* Button */

.ucf button[type=submit] {
    background: #1d3f73;
    border: 0;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    margin-left: 30%;
    padding: 10px 15px;
    transition: background .3s;
}

.ucf button[type=submit]:hover {
    background: #214986;
}

.ucf button[type=submit].complete {
    background: #214986;
    cursor: default;
}

.ucf button.secondary {
    background: #ccc;
    border: 0;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    margin-left: 100px;
    padding: 10px 15px;
    transition: background .3s;
}

.ucf button.secondary:hover {
    background: #ddd;
}

.ucf .message p:last-child {
    margin-bottom: 0;
}

.ucf .message ul {
    margin-bottom: 0;
}


/* Error message box */

.ucf .message .errors {
    background: #fff;
    border: solid 1px #ccc;
    border-left: solid 10px #d9534f;
    border-radius: 5px;
    padding: 20px;
}

.ucf .message .errors p {
    color: #d9534f;
}


/* Success message box */

.ucf .message .success {
    background: #fff;
    border: solid 1px #ccc;
    border-left: solid 10px #5cb85c;
    border-radius: 5px;
    padding: 20px;
}

.ucf .message .success p {
    color: #5cb85c;
}


/* GOOGLE MAP */

#map {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -999;
    opacity: 0.5;
    top: 50px;
    min-height: 400px;
}


/* ---------FOOTER---------- */

footer {
    background-color: #292c2f;
    color: white;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    padding: 55px 0;
}

footer .btn {
    display: block;
    width: auto;
    margin-bottom: 25px;
    font-size: 1em;
}

footer .row {
    margin: auto;
    padding: 0 5%;
}

footer .row div {
    margin-bottom: 35px
}

.footer-nav {
    padding-bottom: 50px;
}

.footer-nav li {
    margin: 0 35px 0 10px;
    list-style-type: square;
    font-size: 1em;
}

footer a:hover,
footer a:focus {
    color: #3188d3;}