/* TABLE OF CONTENT 
- Reset CSS
- MAIN STYLES
- COLORS
    - Background
    - Text
    - Border
- CONTENT STYLES
    - Header
    - Sections
    - Miscellaneous
    - Info Boxes
    - Countdown
    - Contact Form
    - Button
- RESPONSIVE STYLES
*/

/* Reset CSS
 * --------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	padding: 0;
	margin: 0;
}
a {
	text-decoration: none;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
a:hover {
	text-decoration: none;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
table {
	border-spacing: 0;
}
fieldset, img {
	border: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-weight: normal;
	font-style: normal;
}
strong {
	font-weight: bold;
}
ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
    color: #7c7e88;
}
section ol, section ul {
	list-style: none;
	margin: 10px 0;
	padding: 0 0 0 20px;
    color: #7c7e88;
}
section ul li{
	list-style:circle;
	margin: 10px 0;
    color: #7c7e88;
    font-size: 14px;
}
caption, th {
	text-align: left;
}
q:before, q:after {
	content: '';
}

h1, h2, h3, h4, h5, h6{
	margin-bottom: 20px;
    width: 100%;
}

.alert{
	margin: 20px 0;
}
.spacer {
    margin-top: 3rem!important;
    margin-bottom: 3rem!important;
}
/*------ MAIN STYLES -----*/
body {
	font-weight: 300;
    text-rendering: optimizeLegibility;
}

section {
    display: inline-block;
    margin: 30px 0;
    width: 100%;
}
.btn-block {
    display: block;
    width: 250px;
    float: left;
    margin-right: 20px;
}
.t-red{
    color: #d44950;
}
.color-box {
    border-radius: 6px;
    display: inline-block;
    padding: 5px;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    background: #f9f9f9;
    min-width: 100px;
    margin-right: 20px;
}
.color-box.border{
    border: 1px solid #f9f9f9;
}
.color-box.t-white{
    color: white;
}
/*------ MODAL -----*/

/*------ Highlight -----*/
.highlight {
    padding: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: #f7f7f9;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}	
.highlight code {
    font-size: 12px;
    color: #343a40;
}

.nt {
    color: #2f6f9f;
}
.na {
    color: #4f9fcf;
}
.s {
    color: darkorange;
}
.b {
    color: #282828;
}
.p {
    color: #e83e8c;
}
.c {
    color: #999;
}

