/*
Description: blog.tpl styles
*/
@media (min-width: 320px) {
	.news-box-container {
		padding: 0;
	}
	.news-box-container .news-wrapper {
	    display: flex;
	    flex-flow: row wrap;
	    margin: 0 -30px;
	}
	.news-box-container .news-head {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.news-box-container h2,
	.news-box-container h3 {
		color: #444444;
	}
	.news-box-container .news-head h2 {
		display: inline-block;
		margin-bottom: 0px;
		width: 75%;
	}
	.news-box-container .news-box h3 {
		margin-top: 10px;
		font-size: 22px;
		line-height: 28px;
	}
	.news-box-container .news-head > a {
		font-size: 15px;	
		color: #999999;
		position: relative;
	}
	.news-box-container .news-head > a:hover {
		text-decoration: none;
	}
	.news-box-container .news-head > a:after {	
		content: "";
		height: 2px;
		width: 100%;
		background-color: #999999;
		position: absolute;
		bottom:-3px;
		left: 0;
	}
	.news-wrapper.row {
		margin: 0;
	}
	.news-box-container .news-box {
		margin-bottom: 30px;
		padding: 0;
		flex: 0 0 100%;
	}
	.news-box-container .news-box:last-child {
		margin-bottom: 0px;
	}
	.news-box-container .news-box .news-content {
		margin-top: 20px;
		color: #676767;
		font-size: 15px;
		line-height: 25px;
		display: block;
	}
	.news-box-container .news-box > a {
		padding: 0 0 0 25px;
		position: relative;
		line-height: 20px;
		margin-top: 30px;
		display: block;	
	}
	.news-box-container .news-box > a:hover {
		text-decoration: none;
	}
	.news-box-container .news-box > a:before {
	    height: 1px;
	    width: 15px;
	    position: absolute;
	    content: '';
	    left: 0;
	    display: block;
	    top: 45%;
	    background-color: #035ca8;
	    transform-origin: left;
	    -webkit-transform: translateY(calc(-50% + 0.5px)) translateZ(0);
	    transform: translateY(calc(-50% + 0.5px)) translateZ(0);
	    animation: ctaArrowLineStart 0.45s cubic-bezier(0.23, 0.46, 0.4, 1) forwards;
	}
	.news-box-container .news-box > a:hover:before {
	    animation: ctaArrowLineEnd 0.45s cubic-bezier(0.23, 0.46, 0.4, 1) forwards;
	    left: -5px;
	}
	.news-box-container .news-box > a:after {
	    position: absolute;
	    left: 0%;
	    top: 50%;
	    width: 16px;
	    font-size: 15px;
	    opacity: 0;
	    transition: opacity 100ms ease-out;
	    color: #035ca8;
	    content: "\e90e";
	    right: -10px;
	    padding-left: 5px;
	    font-family: christiani;
	    transform: translateY(-50%);
	}
	.news-box-container .news-box > a:hover:after {
	    opacity: 1;
	    transition: opacity 50ms 0.40s ease-out;
	}
    .news-box-container .news-box > a:hover {
	    animation: ctaArrowTextEnd 0.45s cubic-bezier(0.23, 0.46, 0.4, 1) forwards;
	    text-decoration: none;
	}
	@keyframes ctaArrowTextStart {
	  0% {
		    transform: translateX(6px);
	  }
	  100% {
			transform: translateX(0);
	  }
	}
	@keyframes ctaArrowTextEnd {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(6px);
		}
	}
	@keyframes ctaArrowLineStart {
		0% {
			transform-origin: left;
			transform: scaleX(1.2) translateY(calc(-50% + 0.5px)) translateZ(0);
		}
		100% {
			transform: scaleX(1) translateY(calc(-50% + 0.5px)) translateZ(0);
		}
	}
	@keyframes ctaArrowLineEnd {
		0% {
			transform-origin: right;
			transform: scaleX(1) translateY(calc(-50% + 0.5px)) translateZ(0);
		}
		50% {
			transform-origin: right;
			transform: scaleX(0) translateY(calc(-50% + 0.5px)) translateZ(0);
		}
		51% {
		 	transform-origin: left;
		}
		
		100% {
			transform: scaleX(1.2) translateY(calc(-50% + 0.5px)) translateZ(0);
			transform-origin: left;
		}
	}
	.rev-banner-container {
	    overflow: hidden;
	    box-shadow: rgb(0 0 0 / 24%) 0px 30px 80px;
	    border-radius: 5px;
	}
}

@media (min-width: 768px) {
	.news-box-container .news-wrapper {
	    flex-flow: row nowrap;
	    margin: 0 -15px;
	}
	.news-box-container .news-box {
		margin-bottom: 0px;
		padding: 0 15px;
	}
	.news-box-container .news-box .news-content,
	.news-box-container .news-box > a {
		margin-top: 30px;
	}
	.news-box-container .news-box:last-child {
		margin-bottom: 50px;
	}
	.news-box-container .news-box {
		margin-bottom: 30px;
		padding: 0 15px;
		flex: 0 0 33.3333333%;
	}
}