/* All */
* {
	margin: 0px;
	padding: 0px;
	font-size: inherit;
	font-family: inherit;
	text-decoration: inherit;
	color: inherit;
	box-sizing: border-box;
	outline: none !important;
}
html,
body,
main {
	min-height: 100%;
	overflow-x: hidden;
}
html {
	font-size: 16px;
	font-family: 'roboto';
	font-weight: 400;
	text-decoration: none;
	color: #606a76;
}
p {
	margin: 0;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.f-clear:after,
.f-clear::after {
	content: "";
	display: block;
	clear: both !important;
}
.clear {
	clear: both !important;
}
.f-left {
	float: left;
}
.f-right {	
	float: right;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-justify {
	text-align: justify;
}
img {
	border: none;
}
a, button {
	cursor: pointer;
}
body + object,
body + object + object {
	display: none;
}
main, footer {
	width: 100%;
	overflow: hidden;
}
.default-width {
	max-width: 1390px;
	margin: 0px auto;
}
/* All - End */

/* Buttons */
.btn, .btn-white {
	display: block;
	width: 160px;
	min-width: 160px;
    font-weight: 500;
    padding: 15px 20px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 0 0 rgba(0,0,0,0.15);
    transition: box-shadow 0.3s ease-in-out;
}
.btn {
	color: #fff;
	background-color: #549bc8;
}
.btn-white {
	color: #549bc8;
	background-color: #fff;
}
.btn:hover, .btn-white:hover {
	box-shadow: 0 0 20px 1px rgba(0,0,0,0.3);
}
.content{
    max-width: 1149px;
    margin: 0 auto;
}
/* Buttons - End */