/*
Theme Name: Portal
Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, strike, strong, tt, var, b, u, i, center, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
*,
*:before,
*:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}
*:focus {
	outline: none;
}
body {
	line-height: 1.4;
	color: #000;
	font-size: 14px;
	background:#fff;
}
a {
	color: #b71319;
	text-decoration: none
}
a:hover {
	transition: all 0.2s ease
}
li {
	list-style: none
}
select,
input,
textarea {
	appearance: none;
	border-radius: 0;
}
.absolute {
  position:absolute	
}
.relative {
 position:relative	
}
.text-center {
	text-align: center;
}
.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}
.clickable {
	display: inline-block;
	cursor: pointer;
}
.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}
.align-center {
	align-items: center;
}
.justify-center {
	justify-content: center;
}
.flex.space-between {
	justify-content: space-between;
}
.flex.wrap,
.inline-flex.wrap {
	flex-wrap: wrap;
}
.flex-column {
	flex-direction: column;
}
.flex>.half {
	flex-basis: 50%;
	flex-grow: 0;
}
.flex>.full {
	flex-basis: 100%;
}
.bgcentercover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center
}
.bgrightcover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right center
}
.bgleftcover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left center
}
.bgtopcover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top
}
.bgtoprightcover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right top
}