/* ---------------------------------------------------
    PAGE CSS
    
    MASCOTTE
----------------------------------------------------- */


/* ---------------------------------------------------
    TYPO
----------------------------------------------------- */

body {
	background: #FFF;
	background-size: 100%;
	background-position: top center;
	background-attachment: fixed;
    color: #222;
	font-weight: normal;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	margin-bottom: 0;
}
h1 {
	font-weight: bold;
}
h2 {
	font-weight: 500;
}
h3 {
	font-weight: 500;
}
h4 {
	font-weight: 500;
}
p {
	font-weight: 400;
}

.textLight {
	font-weight: 300;
}
.textHeavy {
	font-weight: 900;
}

b, strong {
	font-weight: 600;
}


/* ---------------------------------------------------
    AREA'S - DIMENSIONS - BORDERS
----------------------------------------------------- */

.fw300 {
	font-weight: 300 !important
}
.fw400 {
	font-weight: 400 !important
}
.fw500 {
	font-weight: 500 !important
}
.fw600 {
	font-weight: 600 !important
}
.large {
	font-size: 2em !important;
}
.largeL {
	font-size: 3em !important;
}
.largeXL {
	font-size: 4em !important;
}
.text_shadow {
    text-shadow: 0 0.5px 0.5px #333;
}
.box_shadow1 {
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
.box_shadow2 {
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
.box_shadow3 {
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
}
.box_shadow4 {
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
}
.box_shadow5 {
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}
.img_shadow {
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
	padding: 15px;
}
.img_shadow2 {
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
.br-0 {
	border-radius: 0 !important;
}
.br-25 {
	border-radius: .25rem !important;
}
.br-50 {
	border-radius: .5rem !important;
}
.br-75 {
	border-radius: .75rem !important;
}

.br_left {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.br_right {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.mt50 {
	margin-top: 50px;
}
.mt60 {
	margin-top: 60px;
}
.mt70 {
	margin-top: 70px;
}
.mt80 {
	margin-top: 80px;
}
.mt90 {
	margin-top: 90px;
}
.mt100 {
	margin-top: 100px;
}
.mt110 {
	margin-top: 110px;
}
.mt120 {
	margin-top: 120px;
}
.mt130 {
	margin-top: 130px;
}
.mt140 {
	margin-top: 140px;
}
.mt150 {
	margin-top: 150px;
}

.negMB1 {
	margin-bottom: -1px;
}


/* ---------------------------------------------------
    UL, LI, A
----------------------------------------------------- */

ul, li, a {
	list-style: none;
	margin-bottom: 0;
	outline: none;
	text-decoration: none;
	transition: .2s ease-in-out all;
}

p a {
	color: #333;
}
p a:hover {
	color: #777;
}


/* ---------------------------------------------------
    BUTTONS BASE
----------------------------------------------------- */

button {
	align-items: center;
	border: 0;
	border-radius: .5rem;
	background: #DDD;
	color: #111;
	display: inline-flex;
	font-size: 1em;
	/* height: 44px; */
	justify-content: center;
	outline: none !important;
	padding: 8px 14px 6px 14px;
	white-space: nowrap;
	transition: all 0.3s;
}
button:hover {
	background-color: #BBB;
	color: #111;
}
.btn {
	align-items: center;
	border: 0;
	border-radius: .25rem;
	background: #BBB;
	color: #111;
	display: inline-flex;
	font-size: 17px;
	font-weight: 500;
	height: 44px;
	justify-content: center;
	outline: none !important;
	padding: 10px 20px;
	white-space: nowrap;
	transition: all 0.3s;
}
.btn:hover {
	background-color: #111;
	color: #fff;
}


