@charset "utf-8";

/* =========================================
    Modern CSS Reset
========================================= */

/* Box sizing */
*,
*::before,
*::after{
	box-sizing:border-box;
}

/* Remove default margin */
*{
	margin:0;
	padding:0;
}

/* Base */
html{
	-webkit-text-size-adjust:100%;
	scroll-behavior:smooth;
}

body{
	min-height:100vh;
	text-rendering:optimizeSpeed;
	word-break:break-word;
	overflow-wrap:break-word;
}

/* Media */
img,
picture,
video,
canvas,
svg{
	display:block;
	max-width:100%;
	height:auto;
	border:0;
}

/* Form */
input,
button,
textarea,
select{
	font:inherit;
	color:inherit;
	background:none;
	border:none;
	outline:none;
}

button{
	cursor:pointer;
}

textarea{
	resize:vertical;
}

/* Links */
a{
	color:inherit;
	text-decoration:none;
}

/* Lists */
ul,
ol{
	list-style:none;
}

/* Tables */
table{
	border-collapse:collapse;
	border-spacing:0;
}

/* Heading */
h1,
h2,
h3,
h4,
h5,
h6{
	font-size:inherit;
	font-weight:inherit;
}

/* HTML5 */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section{
	display:block;
}

/* Quote */
blockquote,
q{
	quotes:none;
}

blockquote::before,
blockquote::after,
q::before,
q::after{
	content:"";
}

/* Strong */
strong{
	font-weight:bold;
}

/* Hidden attribute */
[hidden]{
	display:none !important;
}

/* =========================================
    Clearfix
========================================= */

.cl::after{
	content:"";
	display:block;
	clear:both;
}