@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap');
body {
	width: 100%;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-o-text-size-adjust: none;
	position: relative;
	background-color: #FFF;
	min-height: 100vh;
	overflow-anchor: none;
}
body, body a {
	color: #000;
}
body.scroll-off {
	overflow: hidden;
}
strong, b {
	font-weight: 700;
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: normal;
		-ms-flex-align: normal;
			align-items: normal;
}
.duration {
	-webkit-transition-duration:.3s;
		 -o-transition-duration:.3s;
			transition-duration:.3s;
}

/* header */
header {
	padding: 10px 20px;
	overflow: hidden;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header .inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
}
/* logo */
#logo {
	margin-right: auto;
	padding-right: 20px;
	max-width: 200px;
}
#logo svg,
#logo img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-height: 50px;
}
/* /logo */
/* /header */

/* title */
#title {
	padding: 20px;
	text-align: center;
}
#title h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 10px;
}
#title h1 span {
	display: block;
	white-space: nowrap;
}
#title h1 span.blue {
	color: #00B0FF;
}
#title p .color {
	color: #01af52;
	font-weight: 600;
}
/* /title */

/* content */
#content {
	padding: 20px;
	overflow: hidden;
}
#content .items {
	-ms-flex-direction: column;
		flex-direction: column;
}
#content .item {
	-webkit-box-shadow: inset 0 0 0 2px #E5EBF1;
			box-shadow: inset 0 0 0 2px #E5EBF1;
	border-radius: 10px;
	padding: 10px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	font-size: 14px;
	position: relative;
	margin-bottom: 15px;
}
#content .item .info {
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
}
#content .item .hr {
	width: 100%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.1);
}
#content .item .logo {
	overflow: hidden;
	height: 60px;
	width: 90%;
	margin: 0 auto 20px;
}
#content .item .logo img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	object-position: 50% 50%;
}
#content .item .text {
	flex-direction: column;
}
#content .item .text .td {
	flex-direction: row;
	align-items: center;
	padding-top: 5px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin-top: 5px;
}
#content .item .text .td:first-child {
	padding-top: 0;
	border-top: 0;
	margin-top: 0;
}
#content .item .text .td .hr {
	width: 100%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.1);
	margin: 8px 0;
	display: none;
}
#content .item .text .td p {
	font-size: 12px;
	line-height: 18px;
	color: rgba(0, 0, 0, 0.75);
}
#content .item .text .td p strong {
	font-size: 14px;
	line-height: 18px;
	color: #000000;
	font-weight: 700;
}
#content .item .item-btn {
	position: relative;
	z-index: 20;
	margin-top: 20px;
}
#content .item .item-btn .btn {
	display: block;
	width: 100%;
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-align: center;
	font-size: 14px;
	line-height: 37px;
	color: #FFFFFF;
	background: #81D364;
	-webkit-box-shadow: inset 0 0 0 2px #84D767;
	        box-shadow: inset 0 0 0 2px #84D767;
	border-radius: 4px;
}
#content .item .item-btn .btn:hover {
	background: #62D738;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
#content .item .link {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
}
/* /content */

/* footer */
footer {
	padding: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	overflow: hidden;
	color: rgba(0, 0, 0, 0.5);
	text-align: center;
	font-size: 12px;
}
/* /footer */

@media (min-width: 360px) {

	/* title */
	#title h1 {
		font-size: 24px;
	}
	#title p {
		font-size: 16px;
	}
	/* /title */

	/* content */
	#content .items {
		-ms-flex-direction: row;
			-webkit-box-orient: horizontal;
			-webkit-box-direction: normal;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
			-webkit-box-pack: justify;
			    -ms-flex-pack: justify;
		justify-content: space-between;
	}
	#content .item {
		width: calc(50% - 8px);
	}
	#content .item .logo {
		margin-bottom: 10px;
	}
	#content .item .text .td {
		-ms-flex-direction: column;
			flex-direction: column;
	}
	#content .item .text .td p:first-child {
		margin-bottom: 3px;
	}
	#content .item .item-btn .btn {
		font-size: 12px;
	}
	/* /content */
}

@media (min-width: 400px) {
	/* content */
	#content .item .item-btn .btn {
		font-size: 14px;
	}
	/* /content */
}

@media (min-width: 720px) {
	/* title */
	#title {
		padding: 50px 0;
	}
	#title h1 {
		font-size: 24px;
	}
	#title p {
		font-size: 18px;
	}
	/* /title */

	/* content */
	#content .items {
		-ms-flex-direction: row;
			-webkit-box-orient: horizontal;
			-webkit-box-direction: normal;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
			-webkit-box-pack: justify;
			    -ms-flex-pack: justify;
		justify-content: space-between;
	}
	#content .item {
		width: calc(50% - 8px);
	}
	/* /content */

	/* footer */
	footer {
		padding: 40px 20px;
	}
	/* /footer */
}

@media (min-width: 900px) {
	/* content */
	#content .items {
		flex-direction: row;
	}
	#content .item {
		width: calc(100% - 40px);
		padding: 20px;
		flex-direction: row;
		align-items: center;
		margin-bottom: 10px;
	}
	#content .item .info {
		flex-grow: 1;
	}
	#content .item .logo {
		margin: 0;
		max-width: 200px;
	}
	#content .item .text {
		margin: 0 20px;
		flex-direction: row;
		justify-content: space-between;
	}
	#content .item .text .td {
		margin: 0;
		padding: 0;
		border: 0;
		margin: 0 20px 0 0;
		flex-grow: 1;
	}
	#content .item .text .td p:first-child {
		margin: 0;
	}
	#content .item .text .td .hr {
		display: block;
	}
	#content .item .item-btn {
		margin: 0;
	}
	#content .item .item-btn .btn {
		width: 215px;
		line-height: 50px;
	}
	/* /content */

	/* footer */
	footer {
		margin-top: 20px;
	}
	/* /footer */
}
@media (min-width: 1200px) {
	.inner {
		max-width: 1060px;
		margin: 0 auto;
	}
	/* title */
	#title h1 {
		font-size: 36px;
	}
	#title p {
		font-size: 24px;
	}
	/* /title */

	/* content */
	#content .item .text .td p {
		font-size: 16px;
		font-weight: 700;
		line-height: 20px;
		color: rgba(0, 0, 0, 0.5);
	}
	#content .item .text .td p strong {
		font-size: 18px;
		font-weight: 700;
		line-height: 24px;
		color: #000000;
	}
	/* /content */
}

@media (min-width: 1600px) {
	.inner {
		max-width: 1420px;
		margin: 0 auto;
	}

	/* header */
	header {
		padding: 15px 20px;
	}
	/* /header */

	/* title */
	#title {
		padding: 70px 0;
	}
	#title h1 {
		font-size: 48px;
		margin-bottom: 15px;
	}
	#title p {
		font-size: 30px;
	}
	/* /title */

	/* content */
	#content {
		padding: 50px 0 20px;
	}
	#content .item {
		padding: 30px;
		width: calc(100% - 60px);
	}
	#content .item .text {
		margin: 0 60px 0 100px;
	}
	#content .item .text .td {
		margin-right: 30px;
	}
	#content .item .text .td p {
		font-size: 18px;
		line-height: 24px;
	}
	#content .item .text .td p strong {
		font-size: 24px;
		line-height: 30px;
	}
	/* /content */

	/* footer */
	footer {
		padding: 50px 20px;
	}
	/* /footer */
}

@media (min-width: 2000px) {
	/* title */
	#title {
		padding: 100px 0;
	}
	/* /title */

	/* footer */
	footer {
		margin-top: 40px;
	}
	/* /footer */
}
