@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: #F3F7FE;
	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 {
	padding: 20px 20px 0;
	overflow: hidden;
}

/* 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 */

/* title */
#title {
	padding: 20px;
}
#title p {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 15px;
}
#title h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 33px;
	max-width: 550px;
}
/* /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 1px #E5EBF1;
			box-shadow: inset 0 0 0 1px #E5EBF1;
	border-radius: 4px;
	padding: 20px;
	background-color: #FFF;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	font-size: 14px;
	position: relative;
	margin-bottom: 20px;
}
#content .item:last-child {
	margin-bottom: 0;
}
#content .item:hover {
	z-index: 50;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
			box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
#content .item .info {
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
}
#content .item .logo {
	overflow: hidden;
	height: 60px;
	margin: 0 20px 20px;
}
#content .item .logo img,
#content .item .logo svg {
	object-fit: contain;
	width: 100%;
	height: 100%;
	object-position: 50% 50%;
}
#content .item .text {
	flex-direction: column;
}
#content .item .text .td {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	justify-content: flex-start;
	padding-top: 10px;
	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 p {
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	color: rgba(0, 0, 0, 0.5);
	padding-bottom: 5px;
}
#content .item .text .td p strong {
	font-size: 16px;
	line-height: 20px;
	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: 50px;
	color: #FFFFFF;
	background: #4C9D33;
	-webkit-box-shadow: inset 0 0 0 2px  rgba(0, 0, 0, 0.25);
	        box-shadow: inset 0 0 0 2px  rgba(0, 0, 0, 0.25);
	border-radius: 4px;
}
#content .item .item-btn .btn:hover {
	background: #346A23;
	-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) {
	/* content */
	#content .item .item-btn .btn {
		font-size: 16px;
	}
	/* /content */
}

@media (min-width: 720px) {
	/* title */
	#title {
		display: block;
	}
	#title p {
		font-size: 24px;
		line-height: 28px;
	}
	#title h1 {
		font-size: 36px;
		line-height: 43px;
	}
	/* /title */

	/* content */
	#content .item {
		flex-direction: row;
		flex-wrap: wrap;
		padding: 30px;
	}
	#content .item .logo {
		margin: 0;
		width: 130px;
	}
	#content .item .info {
		flex-grow: 1;
		align-self: center;
	}
	#content .item .text {
		flex-direction: row;
	}
	#content .item .text .td {
		width: calc(33% - 30px);
		margin: 0 0 0 30px;
		padding: 0;
		border: 0;
	}
	#content .item .item-btn {
		width: 100%;
		margin-top: 40px;
	}
	/* /content */

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

@media (min-width: 900px) {
	/* content */
	#content .item {
		margin-bottom: -1px;
	}
	#content .item .text .td p {
		padding: 0;
	}
	#content .item .text .td p:first-child {
		margin-bottom: 8px;
	}
	#content .item .item-btn {
		width: 210px;
		margin: 0 0 0 30px;
		align-self: center;
	}
	/* /content */
}
@media (min-width: 1200px) {
	.inner {
		max-width: 1060px;
		margin: 0 auto;
	}

	/* title */
	#title {
		padding: 20px 0 0;
	}
	#title h1 {
		max-width: 100%;
	}
	/* /title */
}

@media (min-width: 1600px) {
	.inner {
		max-width: 1420px;
		margin: 0 auto;
	}
	/* content */
	#content .item .logo {
		width: 200px;
		height: 80px;
	}
	#content {
		padding: 50px 0 20px;
	}
	#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: 20px 0 20px;
	}
	#title p {
		font-size: 30px;
		line-height: 37px;
	}
	/* /title */
}
