@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;
}
.inner {
	max-width: 1420px;
	margin: 0 auto;
}
.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: 20px 20px 5px;
	overflow: hidden;
}
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;
	text-transform: uppercase;
	font-size: 24px;
	margin-bottom: 25px;
}
#title h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 10px;
}
#title p {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.75);
}
/* /title */

/* content */
#content {
	padding: 20px;
	overflow: hidden;
}
#content .items {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
}
#content .item {
	-webkit-box-shadow: inset 0 0 0 2px #E5EBF1;
			box-shadow: inset 0 0 0 2px #E5EBF1;
	border-radius: 10px;
	/* padding: 20px; */
	padding: 10px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	font-size: 14px;
	position: relative;
	margin-bottom: 8px;
	width: calc(50% - 4px);
}
#content .item:hover {
	-webkit-box-shadow: inset 0 0 0 2px #000;
			box-shadow: inset 0 0 0 2px #000;
}
#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: 70px; */
	height: 50px;
	/* margin: 0 0 50px; */
	margin: 0 0 20px;
}
#content .item .logo svg,
#content .item .logo img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	object-position: 50% 50%;
}
#content .item .line {
	background: #EB534B;
	position: absolute;
	left: 2px;
	right: 2px;
	/* top: 100px; */
	top: 65px;
	white-space: nowrap;
}
#content .item .line p {
	/* font-size: 16px; */
	font-size: 2.7vw;
	line-height: 20px;
	font-weight: 700;
	color: #FFFFFF;
	text-align: center;
	/* padding: 10px; */
	overflow: hidden;
	text-overflow: ellipsis;
}
#content .item .text {
	flex-direction: column;
}
#content .item .text .td {
	flex-direction: row;
	justify-content: flex-start;
	padding-top: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	margin-top: 10px;
}
#content .item .text .td:first-child {
	border-top: 0;
}
#content .item .text .td .icon {
	margin-right: 5px;
}
#content .item .text .td p {
	font-size: 14px;
	line-height: 18px;
}
#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: 12px;
	line-height: 40px;
	/* font-size: 16px;
	line-height: 50px; */
	color: #000;
	background: #FFF;
	-webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.5);
	        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
}
#content .item:hover .item-btn .btn {
	background: rgba(0, 0, 0, 0.75);
	color: #FFF;
}
#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 (max-height: 500px) {
	/* title */
	#title p {
		display: none;
	}
	/* /title */
}

@media (max-height: 550px) {
	/* title */
	#title {
		padding-bottom: 0;
	}
	#title h1 {
		margin-bottom: 0;
	}
	#title h2 {
		display: none;
	}
	/* /title */
}

@media (min-width: 360px) {
	/* title */
	#title h1 {
		font-size: 30px;
		line-height: 37px;
	}
	/* /title */
}

@media (min-width: 720px) {
	/* title */
	#title h1 {
		font-size: 36px;
		line-height: 44px;
	}
	#title h2 {
		font-size: 24px;
		line-height: 29px;
	}
	#title p {
		font-size: 16px;
		line-height: 20px;
	}
	/* /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 */

	/* footer */
	footer {
		padding: 40px 20px;
	}
	/* /footer */
	#content .items {
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-between;
	}
	#content .item {
		margin-bottom: 20px;
		padding: 20px;
		width: calc(50% - 10px);
	}
	#content .item .logo {
		height: 70px;
		margin: 0 0 50px;
	}
	#content .item .line {
		top: 100px;
	}
	#content .item .line p {
		font-size: 16px;
		padding: 10px;
	}
	#content .item .item-btn .btn {
		font-size: 16px;
		line-height: 50px;
	}
	#content .item .text .td .icon {
		margin-right: 20px;
	}
}

@media (min-width: 900px) {
	/* title */
	#title {
		padding-bottom: 35px;
	}
	/* /title */

	/* content */
	#content .item {
		width: calc(33% - 10px);
	}
	/* /content */
}

@media (min-width: 1200px) {
	.inner {
		padding: 0 15px;
	}
}

@media (min-width: 1600px) {

	/* title */
	#title {
		padding: 30px 0 50px;
	}
	#title h1 {
		font-size: 48px;
		line-height: 59px;
		margin-bottom: 35px;
	}
	#title h2 {
		font-size: 30px;
		line-height: 37px;
	}
	#title p {
		font-size: 18px;
		line-height: 24px;
	}
	/* /title */

	/* content */
	#content {
		padding: 40px;
	}
	#content .items {
		justify-content: flex-start;
		margin: 0 -10px;
	}
	#content .item {
		width: calc(20% - 20px);
		margin: 0 10px 20px;
	}
	/* /content */

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

@media (min-width: 2000px) {
	/* title */
	#title {
		padding: 45px 0 50px;
	}
	#title h1 {
		font-size: 64px;
		line-height: 78px;
		margin-bottom: 50px;
	}
	/* /title */

	/* content */
	#content {
		padding: 50px;
	}
	/* /content */
}
