@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: 0 20px;
	text-align: center;
}
#title h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 30px;
	margin: 20px 0 0;
}
/* /title */

/* content */
#content {
	padding: 20px;
	overflow: hidden;
}
#content .items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
	grid-gap: 15px;	
	justify-items: stretch;
	align-items: stretch;
	justify-content: center;
}
#content .item {
	border-radius: 15px;
	border: 2px solid #E5EBF1;
	padding: 40px 20px 20px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	font-size: 14px;
	position: relative;
	overflow: hidden;
}
#content .item.color {
	border: 2px solid #85E973;
}
#content .item .title {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 40px;
	background-color: #E5EBF1;
	justify-content: center;
}
#content .item.color .title {
	background-color: #63D84F;
}
#content .item .title span {
	line-height: 40px;
}
#content .item .title span.icon {
	margin-right: 10px;
}
#content .item .title span.text {
	font-weight: 700;
	font-size: 13px;
	color: #000000;
}
#content .item.color .title span.text {
	color: #FFFFFF;
}
#content .item .info {
	overflow: hidden;
	border-radius: 10px;
	padding: 15px;
	-webkit-box-shadow: inset 0 0 0 1px #E5EBF1;
			box-shadow: inset 0 0 0 1px #E5EBF1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
}
#content .item .logo {
	overflow: hidden;
	height: 100px;
	width: 190px;
	margin: 20px auto;
}
#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;
	justify-content: space-between;
	padding-top: 10px;
	border-top: 1px solid #E5EBF1;
	margin-top: 10px;
	align-items: flex-end;
}
#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: #7996B2;
}
#content .item .text .td p strong {
	font-size: 14px;
	line-height: 18px;
	color: #000000;
	font-weight: 700;
}
#content .item .text .td:first-child p strong {
	line-height: 24px;
	font-size: 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: 16px;
	line-height: 50px;
	color: #FFFFFF;
	background: #349EFF;
	-webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
	        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}
#content .item .item-btn .btn:hover {
	background: #2396FF;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
#content .item .item-btn .btn.color {
	background: #81D364;
}
#content .item .item-btn .btn.color:hover {
	background: #63D84F;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
#content .item .link {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
}
/* /content */

/* section.box */
section.box {
	padding: 20px;
}
section.box h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-align: center;
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 30px;
	text-transform: uppercase;
}
section.box p {
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	color: rgba(0, 0, 0, 0.75);
}
section.box p.more {
	margin-top: 20px;
	font-size: 14px;
	line-height: 18px;
	color: rgba(0, 0, 0, 0.5);
}
section.box .item p {
	color:#000;
}
/* /section.box */

/* whyUs */
#whyUs .items {
	overflow: hidden;
	flex-direction: column;
}
#whyUs .items .item:first-child {
	margin-top: 0;
}
#whyUs .items .item {
	margin-top: 10px;
	border-radius: 10px;
	padding: 20px;
	flex-direction: column;
	justify-content: center;
	-webkit-box-shadow: inset 0 0 0 1px #E5EBF1;
			box-shadow: inset 0 0 0 1px #E5EBF1;
}
#whyUs .items .item .icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
}
#whyUs .items .item .text p {
	font-size: 16px;
	line-height: 20px;
}
#whyUs .items .item .icon svg {
	object-fit: contain;
	width: 100%;
	height: 100%;
	offset-position: 50% 50%;
}
/* /whyUs */

/* howWorks */
#howWorks .col {
	flex-direction: column;
}
#howWorks .items {
	overflow: hidden;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px 0 -20px;
}
#howWorks .items .item {
	width: calc(50% - 10px);
	flex-direction: column;
	justify-content: center;
	align-self: flex-start;
	margin-bottom: 20px;
}
#howWorks .items .item .icon {
	width: 36px;
	height: 36px;
	margin: 0 auto 20px;
}
#howWorks .items .item .text p {
	font-size: 16px;
	line-height: 20px;
}
#howWorks .items .item .icon svg {
	object-fit: contain;
	width: 100%;
	height: 100%;
	offset-position: 50% 50%;
}
/* /howWorks */

/* whatNecessary */
#whatNecessary .items {
	overflow: hidden;
	margin-top: 30px;
	flex-direction: column;
}
#whatNecessary .items .item {
	flex-direction: row;
	align-items: center;
	margin-top: 10px;
	border: 1px solid #E5EBF1;
	border-radius: 10px;
	padding: 15px;
}
#whatNecessary .items .item:first-child {
	margin-top: 0;
}
#whatNecessary .items .item .icon {
	width: 24px;
	height: 24px;
	margin-right: 15px;
}
#whatNecessary .items .item .text p {
	text-align: left;
	font-size: 14px;
	line-height: 18px;
}
#whatNecessary .items .item .icon svg {
	object-fit: contain;
	width: 100%;
	height: 100%;
	offset-position: 50% 50%;
}
/* /whatNecessary */

/* 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: 700px) {
	header {
		padding: 20px;
	}

	/* section.box */
	section.box h3 {
		font-size: 30px;
		line-height: 37px;
		margin-bottom: 35px;
	}
	section.box p.info {
		font-size: 16px;
		line-height: 20px;
	}
	section.box p.more {
		font-size: 16px;
		line-height: 20px;
	}
	/* /section.box */

	/* whyUs */
	#whyUs .items {
		flex-direction: row;
		justify-content: space-between;
	}
	#whyUs .items .item {
		width: calc(33% - 50px);
		margin: 0;
	}
	/* /whyUs */

	/* howWorks */
	#howWorks .items .item {
		width: calc(25% - 20px);
	}
	#howWorks .items .item:last-child .text p {
		max-width: 100px;
		margin: 0 auto;
	}
	/* /howWorks */

	/* /whatNecessary */
	#whatNecessary .items {
		margin-top: 40px;
		flex-direction: row;
		justify-content: space-between;
	}
	#whatNecessary .items .item {
		flex-direction: column;
		margin: 0;
		padding: 20px;
		width: calc(33% - 53px);
	}
	#whatNecessary .items .item .icon {
		margin: 0 auto 20px;
	}
	#whatNecessary .items .item .text p {
		font-size: 16px;
		line-height: 20px;
		text-align: center;
	}
	/* /whatNecessary */

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

@media (min-width: 1200px) {
	.inner {
		max-width: 1060px;
		margin: 0 auto;
	}
	header {
		padding: 15px 20px;
	}

	/* section.box */
	section.box {
		padding: 25px;
	}
	/* /section.box */

	/* whyUs */
	#whyUs .items .item {
		width: calc(33% - 90px);
		padding: 40px;
	}
	#whyUs .items .item .text p {
		font-size: 18px;
		line-height: 24px;
	}
	/* /whyUs */

	/* howWorks */
	#howWorks .col {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	#howWorks .col.big {
		justify-content: center;
	}
	#howWorks .col .top p {
		text-align: left;
	}
	#howWorks .items {
		flex-shrink: 0;
		flex-direction: column;
		margin: 0 0 0 30px;
		width: 530px;
	}
	#howWorks .big .items {
		width: auto;
	}
	#howWorks .items .item {
		width: 100%;
		flex-direction: row;
		justify-content: flex-start;
		padding-top: 15px;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
		margin: 15px 0 0;
		align-items: center;
	}
	#howWorks .items .item:first-child {
		padding-top: 0;
		border-top: 0;
		margin-top: 0;
	}
	#howWorks .items .item .icon {
		margin: 0 30px 0 0;
	}
	#howWorks .items .item:last-child .text p {
		max-width: 100%;
	}
	/* /howWorks */

	/* /whatNecessary */
	#whatNecessary .items .item {
		padding: 30px 60px;
		width: calc(33% - 130px);
	}
	/* /whatNecessary */

}

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

	/* content */
	#content {
		padding: 30px 0 30px;
	}
	/* /content */

	/* section.box */
	section.box {
		padding: 35px 0;
	}
	section.box h3 {
		font-size: 36px;
		line-height: 44px;
	}
	section.box p.info,
	section.box p.more {
		font-size: 18px;
		line-height: 24px;
	}
	/* /section.box */

	/* whyUs */
	#whyUs .items .item .icon {
		width: 100px;
		height: 100px;
	}
	#whyUs .items .item .text {
		padding: 0 52px;
	}
	/* /whyUs */

	/* whatNecessary */
	#whatNecessary .items .item .text {
		padding: 0 30px;
	}
	/* /whyUs */

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