/* ==========================================
   MASB BASE
========================================== */

*,
*::before,
*::after{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html{
	scroll-behavior:smooth;
	-webkit-text-size-adjust:100%;
}

body{
	font-family:Arial,Helvetica,sans-serif;
	font-size:16px;
	line-height:1.6;
	color:#222;
	background:#fff;
	overflow-x:hidden;
}

img{
	display:block;
	max-width:100%;
	height:auto;
}

a{
	color:inherit;
	text-decoration:none;
}

ul,
ol{
	list-style:none;
}

button,
input,
textarea,
select{
	font:inherit;
	outline:none;
}

button{
	cursor:pointer;
}

.container{
	width:100%;
	max-width:1400px;
	margin:0 auto;
	padding-left:20px;
	padding-right:20px;
}

section{
	width:100%;
}

.hidden{
	display:none !important;
}

.clearfix::after{
	content:"";
	display:block;
	clear:both;
}