/* ATOMIC CSS to decouple HTML from CSS*/
@font-face {
	font-family: 'QanelasSoft-Medium';
	src: url('../fonts/QanelasSoft-Medium.ttf') format('truetype');
}
@font-face {
	font-family: 'QanelasSoft-Light';
	src: url('../fonts/QanelasSoft-Light.ttf') format('truetype');
}
/* Pointer Events */
.pe-none {
	pointer-events: none;
}
.pe-auto {
	pointer-events: auto;
}
/* Backface Visibility */
.bv-h {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
/* z index */
.z-minus1 {
	z-index: -1;
}
.z-0 {
	z-index: 0;
}
.z-1 {
	z-index: 1;
}
.z-2 {
	z-index: 2;
}
.z-99 {
	z-index: 99;
}
/* Float */
.fl-n {
	float: none;
}
.fl-l {
	float: left;
}
.fl-r {
	float: right;
}
/* Clear */
.cl {
	clear: both;
}
.cl-n {
	clear: none;
}
.cl-l {
	clear: left;
}
.cl-r {
	clear: right;
}
.cl-b {
	clear: both;
}
.cf::before,
.cf::after {
	content: '';
	display: table;
}
.cf::after {
	clear: both;
}
.cf {
	zoom: 1;
}
/* Overflow */
.ov {
	overflow: hidden;
}
.ov-v {
	overflow: visible;
}
.ov-h {
	overflow: hidden;
}
.ov-s {
	overflow: scroll;
}
.ovx-s {
	overflow-x: scroll;
}
.ovy-h {
	overflow-y: hidden;
}
.ovy-x {
	overflow-y: scroll;
}
.ovx-h {
	overflow-x: hidden;
}
.ov-a {
	overflow: auto;
}
/* Position */
.pos {
	position: relative;
}
.pos-r {
	position: relative;
}
.pos-a {
	position: absolute;
}
.pos-s {
	position: static;
}
.pos-f {
	position: fixed;
}
/* Top */
.t-0 {
	top: 0;
}
.t-50p {
	top: 50%;
}
.t-a {
	top: auto;
}
/* Bottom */
.b-0 {
	bottom: 0;
}
.b-50p {
	bottom: 50%;
}
.b-a {
	bottom: auto;
}
/* Left */
.l-0 {
	left: 0;
}
.l-50p {
	left: 50%;
}
.l-a {
	left: auto;
}
/* Right */
.r-0 {
	right: 0;
}
.r-50p {
	right: 50%;
}
.r-a {
	right: auto;
}
/* Transform */
.trf-o-br {
	transform-origin: bottom right;
}
.trf-o-bl {
	transform-origin: bottom left;
}
.trf-o-tr {
	transform-origin: top right;
}
.trf-o-tl {
	transform-origin: top left;
}
.trf-t-3d0 {
	transform: translate3d(0, 0, 0);
}
.trf-t-minus50p {
	-webkit-transform: translate3d(-50%, -50%, 0);
	-moz-transform: translate3d(-50%, -50%, 0);
	-ms-transform: translate3d(-50%, -50%, 0);
	-o-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}
.trf-tx-minus50p {
	-webkit-transform: translate3d(-50%, 0, 0);
	-moz-transform: translate3d(-50%, 0, 0);
	-ms-transform: translate3d(-50%, 0, 0);
	-o-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
}
.trf-ty-minus50p {
	-webkit-transform: translate3d(0, -50%, 0);
	-moz-transform: translate3d(0, -50%, 0);
	-ms-transform: translate3d(0, -50%, 0);
	-o-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}
/* Width */
.w-100p {
	width: 100%;
}
.w-100vw {
	width: 100vw;
}
.w-a {
	width: auto;
}
/* Height */
.h-100p {
	height: 100%;
}
.h-100vh {
	height: 100vh;
}
.h-a {
	height: auto;
}
/* Max Width */
/* Max Height */
.mih-100p {
	min-height: 100%;
}
/* Min Width */
/* Margin*/
.m-a {
	margin: auto;
}
/* Margin Top */
/* Margin Bottom */
.mb-10 {
	margin-bottom: 10px;
}
/* Margin Left */
/* Margin Right */
/* Padding */
/* Padding Top */
.pt-25 {
	padding-top: 25px;
}
/* Padding Bottom */
/* Padding Left */
/* Padding Right */
/* List-Style */
.ls-n {
	list-style: none;
}
/* Display */
.d {
	display: block;
}
.d-n {
	display: none;
}
.d-n-override {
	display: none !important;
}
.d-b {
	display: block;
}
.d-i {
	display: inline;
}
.d-ib {
	display: inline-block;
}
.d-f {
	display: flex;
}
.d-if {
	display: inline-flex;
}
/* Flex */
.flex-col {
	flex-direction: column;
}
.flex-row {
	flex-direction: row;
}
.flex-1 {
	flex: 1;
}
.justify-content-c {
	justify-content: center;
}
.justify-content-sb {
	justify-content: space-between;
}
.justify-content-end {
	justify-content: flex-end;
}
.align-items-c {
	align-items: center;
}
.align-items-fs {
	align-items: flex-start;
}
/* Visibility */
.v {
	visibility: hidden;
}
.v-v {
	visibility: visible;
}
.v-h {
	visibility: hidden;
}
.v-c {
	visibility: collapse;
}
/* Text Transform */
.tt {
	text-transform: uppercase;
}
.tt-n {
	text-transform: none;
}
.tt-u {
	text-transform: uppercase;
}
.tt-l {
	text-transform: lowercase;
}
.tt-c {
	text-transform: capitalize;
}
/* Text Align */
.ta {
	text-align: left;
}
.ta-l {
	text-align: left;
}
.ta-r {
	text-align: right;
}
.ta-c {
	text-align: center;
}
.ta-j {
	text-align: justify;
}
/* Text-Decoration */
.td {
	text-decoration: none;
}
.td-n {
	text-decoration: none;
}
.td-u {
	text-decoration: underline;
}
.td-o {
	text-decoration: overline;
}
.td-l {
	text-decoration: line-through;
}
/* Cursor */
.cur-a {
	cursor: auto;
}
.cur {
	cursor: pointer;
}
.cur-ha {
	cursor: hand;
}
.cur-p {
	cursor: pointer;
}
/* Vertical Align */
.va {
	vertical-align: top;
}
.va-t {
	vertical-align: top;
}
.va-m {
	vertical-align: middle;
}
.va-b {
	vertical-align: bottom;
}
/* Background color */
.bgc-white {
	background-color: white;
}
.bgc-black {
	background-color: black;
}
.bgc-lightgray {
	background: #eee;
}
/* Color */
.c-black {
	color: #000;
}
.c-white {
	color: white;
}
.c-b1b0b0 {
	color: #b1b0b0;
}
.c-6c6c6c {
	color: #6c6c6c;
}
/* Opacity */
.op-0 {
	opacity: 0;
}
.op-1 {
	opacity: 1;
}
/* Border */
.bd-n {
	border: none !important;
}
.bd-lightgray {
	border: 1px solid #b1b0b0;
}
/* Border -Right */
/* Border radius */
.bdrs-0 {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.bdrs-25 {
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
}
.bdrs-50p {
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
/* Font size */
.fz-0 {
	font-size: 0;
}
.fz-12 {
	font-size: 12px;
}
.fz-13 {
	font-size: 13px;
}
.fz-16 {
	font-size: 16px;
}
.fz-18 {
	font-size: 18px;
}
.fz-20 {
	font-size: 20px;
}
/* Font family */
.ff-qsh {
	font-family: 'QanelasSoft-Heavy';
}
.ff-qsm {
	font-family: 'QanelasSoft-Medium';
}
.ff-qsl {
	font-family: 'QanelasSoft-Light';
}
.ff-hl {
	font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue',
		Arial, Helvetica, sans-serif;
}
.ff-hb {
	font-family: 'HelveticaNeue-Bold', 'Helvetica Neue Bold', 'Helvetica Neue',
		Arial, Helvetica, sans-serif;
}
/* Letter-spacing */
.lts-0 {
	letter-spacing: 0;
}
/* Line-height */
.lh-1 {
	line-height: 1;
}
.lh-1pt4 {
	line-height: 1.4;
}
.lh-n {
	line-height: normal;
}
/* Others */
.ofit-cover {
	object-fit: cover;
}
.opos-center {
	object-position: center;
}
/* Background Size */
.bgsz-cv {
	background-size: cover;
}
.bgp-c {
	background-position: center;
}
/* Base Rules according to SMACSS */
html {
	-webkit-font-smoothing: antialiased !important;
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	box-shadow: none;
	border: none;
	outline: none;
}
a,
a:visited,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	color: none;
}
