@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	/* overflow: hidden; */
}

body {
	margin: 0;
	font-family: "Paperlogy", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #13215a;
	background: #f7f9fe;
	word-break: keep-all;
	-webkit-font-smoothing: antialiased;

}

main,
section,
article,
header,
footer,
nav,
aside {
	display: block;
}

ul,
ol,
li {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	border: 0;
	background: none;
	cursor: pointer;
}

.cbc-inner {
	width: min(1440px, calc(100% - 48px));
	margin: 0 auto;
}

.cbc-section-head {
	margin-bottom: 32px;
	text-align: center;
}

.cbc-section-head span {
	display: block;
	font-size: 11px;
	font-weight: 700;
	color: #2d68e7;
}

.cbc-section-head h2 {
	margin-top: 5px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	color: #14265c;
}

@media(max-width:768px) {
	.cbc-inner {
		width: calc(100% - 32px);
	}

	.cbc-section-head h2 {
		font-size: 27px;
	}
}

@media all and (max-width: 578px) {
	.cbc-section-head span {}
	.cbc-section-head h2 {
		font-size: 24px; 
	}
	.cbc-section-head { margin-bottom: 20px; }
	
}