/*
 * Bestco Stylesheet
 *
 * author: nicolew | misscode
 * collaborator: Rob Weber
 * 
 * 
 * 
*/

/* Sitewide styles */

body {
    font-family: 'Nunito', sans-serif;
    padding-top: 5rem;
}

body.background-styled-1 {
    background-image: url(assets/images/blue-background-pointed.png), url(assets/images/concrete-texture.png);
    background-repeat: no-repeat, repeat;
    background-size: 100%, auto;
}

body.background-styled-2 {
    background-image: url(assets/images/concrete-texture.png);
    background-repeat: repeat;
}

footer p {
    font-family: 'Nunito', sans-serif;
}

hr.styled-line {
    border-top: 1px dashed #8c8b8b;
    padding-bottom: 3rem;
}

/* Nav */
li.nav-item:hover {
    background: #479bc2;
    border-radius: 15px 50px 30px;
}
li.nav-item a:hover {
    color: white;
}

.navbar-nav .active>.nav-link {
    background: #479bc2;
    border-radius: 15px 50px 30px;
}

/* Container Background Image */

.bg-img-filled {
    background: #479bc2;
    background-size: cover;
    color: white;
    padding: 80px;
    margin-top: 60px;
}

.bg-clr-filled {
    padding: 50px;
    background-color: #479bc2;
}
/*
.arrow-right {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 150px 0 150px 100px;
	border-color: transparent transparent transparent #007bff;
}*/


/* CTA Strip */

.cta-style {
    font-size: 2rem;
    font-weight: bold;
}

/* Card Hover Shadow Effect */
.card-hover {
    transition: box-shadow .3s;
}
.card-hover:hover {
    box-shadow: 0 0 11px rgba(33,33,33,.2);
}

/* Raised buttons */

.btn-primary.raised {
    border-radius: 15px 50px 30px;
    box-shadow: 0 3px 0 0 #007299;
}

.btn-primary.raised:active, .btn-primary.raised.active {
    background: #33a6cc;
    box-shadow: none;
    margin-bottom: -3px;
    margin-top: 3px;
}

.btn-secondary.raised {
    border-radius: 15px 50px 30px;
    box-shadow: 0 3px 0 0 #007299;
}

/* Additional Card Style */

.contact {
    margin-top: 50px;
}

.add-card-border {
    border: 1px solid #bde3f5;
    padding: 50px 0 20px 0;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.icon-border-style .fa {
    font-size: 3em;
    background-image: url(assets/images/concrete-texture.png);
    z-index: 1000;
    position: absolute;
    padding-left: 15px;
    padding-right: 15px;
    top: -16px;
    right: 0;
    bottom: 0;
    width: 75px;
    left: 0;
    height: 50px;
    margin: 0 auto;
    color: #479bc2;
}

/* Contact form validation */
.help-block ul {
    list-style: none !important;
    padding-left: 0;
    padding-top: 5px;
}

.help-block ul li:before {
    font-family: 'FontAwesome';
    content: "\f06a";
    float: left;
    width: 1.4em;
    color: red;
}

#contactForm .has-error .control-label,
#contactForm .has-error .help-block,
#contactForm .has-error .form-control-feedback {
    color: red;
    font-weight: bold;
}
