/* CSS Document */
.solutionsList .Img::before, .solutionsList .gotoArrow {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.solutionsList {
	margin: 0 -12.5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
@media (max-width: 480px) {
	.solutionsList {
		margin: 0;
	}
}
.solutionsList .solutionsItem {
	width: 33.3333333333%;
	padding: 0 12.5px 35px;
}
@media (min-width: 1181px) and (max-width: 1280px) {
	.solutionsList .solutionsItem {
		width: 50%;
	}
}
@media (max-width: 768px) {
	.solutionsList .solutionsItem {
		width: 50%;
	}
}
@media (max-width: 480px) {
	.solutionsList .solutionsItem {
		width: 100%;
		padding: 0 0 35px;
	}
}
@media (min-width: 1201px) {
	.solutionsList .solutionsItem:hover {
		cursor: pointer;
	}
	.solutionsList .solutionsItem:hover .gotoArrow {
		opacity: 1;
		-webkit-transition-delay: 0.2s;
		        transition-delay: 0.2s;
	}
	.solutionsList .solutionsItem:hover .gotoArrow svg {
		-webkit-animation: gotoLinkAni 1s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
		        animation: gotoLinkAni 1s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
	}
	.solutionsList .solutionsItem:hover .Img::before {
		opacity: 1;
	}
	.solutionsList .solutionsItem:hover .Txt .title {
		background-position: 0 0;
	}
}
.solutionsList .item {
	position: relative;
}
.solutionsList .linkWrap {
	position: absolute;
	inset: 0;
	margin: auto;
	z-index: 4;
}
.solutionsList .gotoArrow {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #ffffff;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	opacity: 0;
}
.solutionsList .gotoArrow svg {
	color: #9dc3e6;
	-webkit-transform: rotate(-45deg) translateX(2.5px);
	        transform: rotate(-45deg) translateX(2.5px);
}
.solutionsList .Img {
	padding: 3px;
	border-radius: 15px;
	background: #ffffff;
	position: relative;
	-webkit-transform: translateZ(0);
	        transform: translateZ(0);
}
.solutionsList .Img::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 15px;
	background: #09c298;
	background: -webkit-gradient(linear, left top, left bottom, from(var(--rotate)), color-stop(#09c298), to(#d5e89d));
	background: linear-gradient(var(--rotate), #09c298, #d5e89d);
	-webkit-animation: gradientRotate 2.5s linear infinite;
	        animation: gradientRotate 2.5s linear infinite;
	opacity: 0;
	z-index: 1;
}
.solutionsList .Img::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 15px;
	background: transparent;
	z-index: 2;
}
.solutionsList .Img img {
	border-radius: 15px;
	position: relative;
	z-index: 3;
}
.solutionsList .Txt {
	position: relative;
	text-align: center;
	padding-top: 20px;
}
.solutionsList .Txt .title {
	width: 100%;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
	display: block;
	background: #000000;
	background: -webkit-gradient(linear, left top, right top, from(#09c298), color-stop(30%, #096f71), color-stop(70%, #000000), to(#000000));
	background: linear-gradient(90deg, #09c298 0%, #096f71 30%, #000000 70%, #000000 100%);
	background-size: 350% 100%;
	background-position: right 0;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-transition: background 0.7s linear;
	transition: background 0.7s linear;
}
@media (max-width: 640px) {
	.solutionsList .Txt .title {
		font-size: 18px;
	}
}
.solutionsList .Txt .text {
	font-size: 15px;
	line-height: 1.6;
}
.solutionsList .Txt .text.ellipsis {
	height: 75px;
	overflow: hidden;
}
@media (max-width: 768px) {
	.solutionsList .Txt .text {
		font-size: 14px;
	}
	.solutionsList .Txt .text.ellipsis {
		height: 70px;
	}
}

.contentBox.insPage {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.contentBox.insPage .leftBox {
	width: 25%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	padding-right: 50px;
}
.contentBox.insPage .rightBox {
	width: 75%;
}
@media (max-width: 1024px) {
	.contentBox.insPage .leftBox {
		width: 100%;
		padding: 0;
	}
	.contentBox.insPage .rightBox {
		width: 100%;
	}
}

.insIntroBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 767px) {
	.insIntroBox {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.insIntroBox .introBox {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
@media (max-width: 767px) {
	.insIntroBox .introBox {
		-webkit-box-flex: 1;
		    -ms-flex: auto;
		        flex: auto;
	}
}
.insIntroBox .introBox .articleTitle {
	margin-bottom: 15px;
	padding: 0 0 15px 0;
}
.insIntroBox .introBox .Txt {
	margin-top: 20px;
	line-height: 1.6;
	font-size: 15px;
	color: #6c6c6c;
}

.newsInfoBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding-bottom: 10px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
	padding: 5px 0;
}
.newsInfoBox .dateBox .date {
	line-height: 1;
}
.newsInfoBox .classTitle {
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.5px;
	padding: 5px 10px;
}

.newsList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 -15px;
}
.newsList .newsItem {
	width: 33.3333333333%;
	padding: 0 15px 30px;
}
@media (max-width: 1024px) {
	.newsList .newsItem {
		width: 50%;
	}
}
@media (max-width: 640px) {
	.newsList .newsItem {
		width: 100%;
	}
}
.newsList .item {
	padding: 20px 0px;
}
.newsList .Img {
	width: 100%;
	margin-right: 10px;
}
.newsList .Img img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.newsList .Txt {
	overflow: hidden;
}
.newsList .Txt .title {
	margin-bottom: 3px;
	font-size: 19px;
	font-weight: 400;
	color: #2f2f2f;
}
.newsList .Txt .title a {
	display: inline-block;
	vertical-align: middle;
}
.newsList .Txt .text {
	margin-top: 7px;
	font-size: 13px;
	color: #909090;
	line-height: 1.8;
}
/*# sourceMappingURL=solutions.css.map */