* {
	transition: .3s;
}
*,
body {
	font-family: var(--mainFontFamily);
	font-size: var(--bodyFontSize);
	margin: 0;
	padding: 0;
}
*:active,
*:focus,
*:hover,
*:visited {
	text-decoration: none !important;
	outline: none;
}
*,
:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	text-decoration: none;
}
dl,
ol,
ul {
	list-style-type: none;
}
.block {
	display: block;
}
.bold {
	font-weight: bold;
}
.container {
	max-width: var(--container);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.row {
	margin-left: -15px !important;
	margin-right: -15px !important;
}
.bg {
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.dib {
	display: inline-block;
}
.fixed {
	position: fixed;
}
.full-vh {
	height: 100vh;
}
.fx {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.fx-center-v {
	-ms-align-items: center;
	align-items: center;
}
.fx-center-h {
	justify-content: center;
}
.fx-center {
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}
.fx-column {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}
.desktop-visible {
	display: block;
}
.mobile-visible {
	display: none;
}
.res-img {
	max-width: 100%;
	height: auto;
}
.res-width {
	width: 25%;
}
.scroll-lock {
	overflow: hidden;
	position: relative;
}
.text-center {
	text-align: center;
}
.title {
	color: var(--mainColor);
	font-family: var(--titleFontFamily);
	font-size: var(--mainTitleSize);
	font-weight: bold;
}
.subTitle {
	font-size: var(--subTitle);
}
.z-1 {
	z-index: 1;
}
.z-2 {
	z-index: 2;
}
.z-3 {
	z-index: 3;
}
.z-4 {
	z-index: 4;
}
.z-5 {
	z-index: 5;
}