/* CSS Document */


/* @import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,600,700,300,800);
 */


/*************************
*******Typography******
**************************/

body {
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    color: #4e4e4e;
    line-height: 22px;
}

.btn-dash {
    color: #FFFFFF;
    background-color: #000000;
    border: 1px solid #C91616;
    border-radius: 6px;
    margin: 5px 5px
}

.btn-dash:hover {
    color: #fff;
    background-color: #C91616;
    border-color: #000000
}

.btn-dash-active {
    color: #fff;
    background-color: #420405;
    border-color: #000000
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #4e4e4e;
}

h1 {
    font-size: 36px;
    color: #fff;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
    color: #787878;
    font-weight: 400;
    line-height: 24px;
}

h4 {
    font-size: 16px;
}

a {
    color: #c52d2f;
    -webkit-transition: color 300ms, background-color 300ms;
    -moz-transition: color 300ms, background-color 300ms;
    -o-transition: color 300ms, background-color 300ms;
    transition: color 300ms, background-color 300ms;
}

a:hover,
a:focus {
    color: #d43133;
}

hr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #fff;
}

.btn-primary {
    padding: 8px 20px;
    background: #c52d2f;
    color: #fff;
    border-radius: 4px;
    border: none;
    margin-top: 10px;
}

.btn-primary:hover,
.btn-primary:focus {
    background: rgba(75, 2, 3, 1.00);
    outline: none;
    box-shadow: none;
}

.btn-transparent {
    border: 3px solid #fff;
    background: transparent;
    color: #fff;
}

.btn-transparent:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

a:hover,
a:focus {
    color: #111;
    text-decoration: none;
    outline: none;
}

.dropdown-menu {
    margin-top: -1px;
    min-width: 180px;
}

.ffs h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
}

.center h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
}

.media>.pull-left {
    margin-right: 20px;
}

.media>.pull-right {
    margin-left: 20px;
}

body>section {
    padding: 70px 0;
}

.center {
    text-align: center;
    padding-bottom: 55px;
}

.scaleIn {
    -webkit-animation-name: scaleIn;
    animation-name: scaleIn;
}

.lead {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.transparent-bg {
    background-color: transparent !important;
    margin-bottom: 0;
}


/*************************
*******bg******
**************************/

.bg-bluelight {
    background-color: #01A5D7;
}

.bg-blueCocky {
    background-color: rgba(6, 109, 122, 1.00);
}

.bg-black {
    background-color: #000;
}

.bg-gold {
    background-color: gold;
}

.bg-blue {
    background-color: #243E8B;
}

.bg-green {
    background-color: rgba(12, 122, 38, 1.00);
}

.bg-white {
    background-color: #fff
}

.bg-white-dark {
    background-color: rgba(247, 247, 247, 1.00)
}


/*************************
*******cl******
**************************/

.cl-white {
    color: white;
}

.cl-white-cream {
    color: rgba(220, 220, 220, 1.00);
}

.cl-black {
    color: #000
}

@-webkit-keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0
}